[
  {
    "path": ".copier-answers.yml",
    "content": "# Do NOT update manually; changes here will be overwritten by Copier\n_commit: v1.40\n_src_path: git+https://github.com/OCA/oca-addons-repo-template\nadditional_ruff_rules: []\nconvert_readme_fragments_to_markdown: true\nenable_checklog_odoo: true\ngenerate_requirements_txt: true\ngithub_check_license: true\ngithub_ci_extra_env: {}\ngithub_enable_codecov: true\ngithub_enable_makepot: true\ngithub_enable_stale_action: true\ngithub_enforce_dev_status_compatibility: true\ninclude_wkhtmltopdf: false\nodoo_test_flavor: Both\nodoo_version: 18.0\norg_name: Odoo Community Association (OCA)\norg_slug: OCA\nrebel_module_groups: []\nrepo_description: connector-telephony\nrepo_name: connector-telephony\nrepo_slug: connector-telephony\nrepo_website: https://github.com/OCA/connector-telephony\nuse_pyproject_toml: true\nuse_ruff: true\n\n"
  },
  {
    "path": ".editorconfig",
    "content": "# Configuration for known file extensions\n[*.{css,js,json,less,md,py,rst,sass,scss,xml,yaml,yml}]\ncharset = utf-8\nend_of_line = lf\nindent_size = 4\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n\n[*.{json,yml,yaml,rst,md}]\nindent_size = 2\n\n# Do not configure editor for libs and autogenerated content\n[{*/static/{lib,src/lib}/**,*/static/description/index.html,*/readme/../README.rst}]\ncharset = unset\nend_of_line = unset\nindent_size = unset\nindent_style = unset\ninsert_final_newline = false\ntrim_trailing_whitespace = false\n"
  },
  {
    "path": ".gitattributes",
    "content": "test-requirements.txt merge=union\n"
  },
  {
    "path": ".github/workflows/pre-commit.yml",
    "content": "name: pre-commit\n\non:\n  pull_request:\n    branches:\n      - \"18.0*\"\n  push:\n    branches:\n      - \"18.0\"\n      - \"18.0-ocabot-*\"\n\njobs:\n  pre-commit:\n    runs-on: ubuntu-22.04\n    steps:\n      - uses: actions/checkout@v4\n      - uses: actions/setup-python@v5\n        with:\n          python-version: \"3.11\"\n          cache: 'pip'\n          cache-dependency-path: '.pre-commit-config.yaml'\n      - name: Get python version\n        run: echo \"PY=$(python -VV | sha256sum | cut -d' ' -f1)\" >> $GITHUB_ENV\n      - uses: actions/cache@v4\n        with:\n          path: ~/.cache/pre-commit\n          key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}\n      - name: Install pre-commit\n        run: pip install pre-commit\n      - name: Run pre-commit\n        run: pre-commit run --all-files --show-diff-on-failure --color=always\n        env:\n          # Consider valid a PR that changes README fragments but doesn't\n          # change the README.rst file itself. It's not really a problem\n          # because the bot will update it anyway after merge. This way, we\n          # lower the barrier for functional contributors that want to fix the\n          # readme fragments, while still letting developers get README\n          # auto-generated (which also helps functionals when using runboat).\n          # DOCS https://pre-commit.com/#temporarily-disabling-hooks\n          SKIP: oca-gen-addon-readme\n      - name: Check that all files generated by pre-commit are in git\n        run: |\n          newfiles=\"$(git ls-files --others --exclude-from=.gitignore)\"\n          if [ \"$newfiles\" != \"\" ] ; then\n              echo \"Please check-in the following files:\"\n              echo \"$newfiles\"\n              exit 1\n          fi\n"
  },
  {
    "path": ".github/workflows/stale.yml",
    "content": "name: Mark stale issues and pull requests\n\non:\n  schedule:\n    - cron: \"0 12 * * 0\"\n\njobs:\n  stale:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Stale PRs and issues policy\n        uses: actions/stale@v9\n        with:\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n          # General settings.\n          ascending: true\n          remove-stale-when-updated: true\n          # Pull Requests settings.\n          # 120+30 day stale policy for PRs\n          # * Except PRs marked as \"no stale\"\n          days-before-pr-stale: 120\n          days-before-pr-close: 30\n          exempt-pr-labels: \"no stale\"\n          stale-pr-label: \"stale\"\n          stale-pr-message: >\n            There hasn't been any activity on this pull request in the past 4 months, so\n            it has been marked as stale and it will be closed automatically if no\n            further activity occurs in the next 30 days.\n\n            If you want this PR to never become stale, please ask a PSC member to apply\n            the \"no stale\" label.\n          # Issues settings.\n          # 180+30 day stale policy for open issues\n          # * Except Issues marked as \"no stale\"\n          days-before-issue-stale: 180\n          days-before-issue-close: 30\n          exempt-issue-labels: \"no stale,needs more information\"\n          stale-issue-label: \"stale\"\n          stale-issue-message: >\n            There hasn't been any activity on this issue in the past 6 months, so it has\n            been marked as stale and it will be closed automatically if no further\n            activity occurs in the next 30 days.\n\n            If you want this issue to never become stale, please ask a PSC member to\n            apply the \"no stale\" label.\n\n      # 15+30 day stale policy for issues pending more information\n      # * Issues that are pending more information\n      # * Except Issues marked as \"no stale\"\n      - name: Needs more information stale issues policy\n        uses: actions/stale@v9\n        with:\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n          ascending: true\n          only-labels: \"needs more information\"\n          exempt-issue-labels: \"no stale\"\n          days-before-stale: 15\n          days-before-close: 30\n          days-before-pr-stale: -1\n          days-before-pr-close: -1\n          remove-stale-when-updated: true\n          stale-issue-label: \"stale\"\n          stale-issue-message: >\n            This issue needs more information and there hasn't been any activity\n            recently, so it has been marked as stale and it will be closed automatically\n            if no further activity occurs in the next 30 days.\n\n            If you think this is a mistake, please ask a PSC member to remove the \"needs\n            more information\" label.\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: tests\n\non:\n  pull_request:\n    branches:\n      - \"18.0*\"\n  push:\n    branches:\n      - \"18.0\"\n      - \"18.0-ocabot-*\"\n\njobs:\n  unreleased-deps:\n    runs-on: ubuntu-latest\n    name: Detect unreleased dependencies\n    steps:\n      - uses: actions/checkout@v4\n      - run: |\n          for reqfile in requirements.txt test-requirements.txt ; do\n              if [ -f ${reqfile} ] ; then\n                  result=0\n                  # reject non-comment lines that contain a / (i.e. URLs, relative paths)\n                  grep \"^[^#].*/\" ${reqfile} || result=$?\n                  if [ $result -eq 0 ] ; then\n                      echo \"Unreleased dependencies found in ${reqfile}.\"\n                      exit 1\n                  fi\n              fi\n          done\n  test:\n    runs-on: ubuntu-22.04\n    container: ${{ matrix.container }}\n    name: ${{ matrix.name }}\n    strategy:\n      fail-fast: false\n      matrix:\n        include:\n          - container: ghcr.io/oca/oca-ci/py3.10-odoo18.0:latest\n            name: test with Odoo\n          - container: ghcr.io/oca/oca-ci/py3.10-ocb18.0:latest\n            name: test with OCB\n            makepot: \"true\"\n    services:\n      postgres:\n        image: postgres:12\n        env:\n          POSTGRES_USER: odoo\n          POSTGRES_PASSWORD: odoo\n          POSTGRES_DB: odoo\n        ports:\n          - 5432:5432\n    env:\n      OCA_ENABLE_CHECKLOG_ODOO: \"1\"\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          persist-credentials: false\n      - name: Install addons and dependencies\n        run: oca_install_addons\n      - name: Check licenses\n        run: manifestoo -d . check-licenses\n      - name: Check development status\n        run: manifestoo -d . check-dev-status --default-dev-status=Beta\n      - name: Initialize test db\n        run: oca_init_test_database\n      - name: Run tests\n        run: oca_run_tests\n      - name: Upload screenshots from JS tests\n        uses: actions/upload-artifact@v4\n        if: ${{ failure() }}\n        with:\n          name: Screenshots of failed JS tests - ${{ matrix.name }}${{ join(matrix.include) }}\n          path: /tmp/odoo_tests/${{ env.PGDATABASE }}\n          if-no-files-found: ignore\n      - uses: codecov/codecov-action@v4\n        with:\n          token: ${{ secrets.CODECOV_TOKEN }}\n      - name: Update .pot files\n        run: oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN }}@github.com/${{ github.repository }}\n        if: ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'OCA' }}\n"
  },
  {
    "path": ".gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n/.venv\n/.pytest_cache\n/.ruff_cache\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nenv/\nbin/\nbuild/\ndevelop-eggs/\ndist/\neggs/\nlib64/\nparts/\nsdist/\nvar/\n*.egg-info/\n.installed.cfg\n*.egg\n*.eggs\n\n# Windows installers\n*.msi\n\n# Debian packages\n*.deb\n\n# Redhat packages\n*.rpm\n\n# MacOS packages\n*.dmg\n*.pkg\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.coverage\n.cache\nnosetests.xml\ncoverage.xml\n\n# Translations\n*.mo\n\n# Pycharm\n.idea\n\n# Eclipse\n.settings\n\n# Visual Studio cache/options directory\n.vs/\n.vscode\n\n# OSX Files\n.DS_Store\n\n# Django stuff:\n*.log\n\n# Mr Developer\n.mr.developer.cfg\n.project\n.pydevproject\n\n# Rope\n.ropeproject\n\n# Sphinx documentation\ndocs/_build/\n\n# Backup files\n*~\n*.swp\n\n# OCA rules\n!static/lib/\n"
  },
  {
    "path": ".pre-commit-config.yaml",
    "content": "exclude: |\n  (?x)\n  # NOT INSTALLABLE ADDONS\n  # END NOT INSTALLABLE ADDONS\n  # Files and folders generated by bots, to avoid loops\n  ^setup/|/static/description/index\\.html$|\n  # We don't want to mess with tool-generated files\n  .svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/|^eslint.config.cjs|^prettier.config.cjs|\n  # Maybe reactivate this when all README files include prettier ignore tags?\n  ^README\\.md$|\n  # Library files can have extraneous formatting (even minimized)\n  /static/(src/)?lib/|\n  # Repos using Sphinx to generate docs don't need prettying\n  ^docs/_templates/.*\\.html$|\n  # Don't bother non-technical authors with formatting issues in docs\n  readme/.*\\.(rst|md)$|\n  # Ignore build and dist directories in addons\n  /build/|/dist/|\n  # Ignore test files in addons\n  /tests/samples/.*|\n  # You don't usually want a bot to modify your legal texts\n  (LICENSE.*|COPYING.*)\ndefault_language_version:\n  python: python3\n  node: \"22.9.0\"\nrepos:\n  - repo: local\n    hooks:\n      # These files are most likely copier diff rejection junks; if found,\n      # review them manually, fix the problem (if needed) and remove them\n      - id: forbidden-files\n        name: forbidden files\n        entry: found forbidden files; remove them\n        language: fail\n        files: \"\\\\.rej$\"\n      - id: en-po-files\n        name: en.po files cannot exist\n        entry: found a en.po file\n        language: fail\n        files: '[a-zA-Z0-9_]*/i18n/en\\.po$'\n      - id: obsolete dotfiles\n        name: obsolete dotfiles\n        entry: found obsolete files; remove them\n        files: '^(\\.travis\\.yml|\\.t2d\\.yml|CONTRIBUTING\\.md|\\.prettierrc\\.yml|\\.eslintrc\\.yml)$'\n        language: fail\n  - repo: https://github.com/sbidoul/whool\n    rev: v1.3\n    hooks:\n      - id: whool-init\n  - repo: https://github.com/oca/maintainer-tools\n    rev: b89f767503be6ab2b11e4f50a7557cb20066e667\n    hooks:\n      # update the NOT INSTALLABLE ADDONS section above\n      - id: oca-update-pre-commit-excluded-addons\n      - id: oca-fix-manifest-website\n        args: [\"https://github.com/OCA/connector-telephony\"]\n      - id: oca-gen-addon-readme\n        args:\n          - --addons-dir=.\n          - --branch=18.0\n          - --org-name=OCA\n          - --repo-name=connector-telephony\n          - --if-source-changed\n          - --keep-source-digest\n          - --convert-fragments-to-markdown\n      - id: oca-gen-external-dependencies\n  - repo: https://github.com/OCA/odoo-pre-commit-hooks\n    rev: v0.0.33\n    hooks:\n      - id: oca-checks-odoo-module\n      - id: oca-checks-po\n        args:\n          - --disable=po-pretty-format\n  - repo: local\n    hooks:\n      - id: prettier\n        name: prettier (with plugin-xml)\n        entry: prettier\n        args:\n          - --write\n          - --list-different\n          - --ignore-unknown\n        types: [text]\n        files: \\.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$\n        language: node\n        additional_dependencies:\n          - \"prettier@3.3.3\"\n          - \"@prettier/plugin-xml@3.4.1\"\n  - repo: local\n    hooks:\n      - id: eslint\n        name: eslint\n        entry: eslint\n        args:\n          - --color\n          - --fix\n        verbose: true\n        types: [javascript]\n        language: node\n        additional_dependencies:\n          - \"eslint@9.12.0\"\n          - \"eslint-plugin-jsdoc@50.3.1\"\n          - \"globals@16.0.0\"\n  - repo: https://github.com/pre-commit/pre-commit-hooks\n    rev: v4.6.0\n    hooks:\n      - id: trailing-whitespace\n        # exclude autogenerated files\n        exclude: /README\\.rst$|\\.pot?$\n      - id: end-of-file-fixer\n        # exclude autogenerated files\n        exclude: /README\\.rst$|\\.pot?$\n      - id: debug-statements\n      - id: fix-encoding-pragma\n        args: [\"--remove\"]\n      - id: check-case-conflict\n      - id: check-docstring-first\n      - id: check-executables-have-shebangs\n      - id: check-merge-conflict\n        # exclude files where underlines are not distinguishable from merge conflicts\n        exclude: /README\\.rst$|^docs/.*\\.rst$\n      - id: check-symlinks\n      - id: check-xml\n      - id: mixed-line-ending\n        args: [\"--fix=lf\"]\n  - repo: https://github.com/astral-sh/ruff-pre-commit\n    rev: v0.6.8\n    hooks:\n      - id: ruff\n        args: [--fix, --exit-non-zero-on-fix]\n      - id: ruff-format\n  - repo: https://github.com/OCA/pylint-odoo\n    rev: v9.1.3\n    hooks:\n      - id: pylint_odoo\n        name: pylint with optional checks\n        args:\n          - --rcfile=.pylintrc\n          - --exit-zero\n        verbose: true\n      - id: pylint_odoo\n        args:\n          - --rcfile=.pylintrc-mandatory\n"
  },
  {
    "path": ".pylintrc",
    "content": "\n\n[MASTER]\nload-plugins=pylint_odoo\nscore=n\n\n[ODOOLINT]\nreadme-template-url=\"https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst\"\nmanifest-required-authors=Odoo Community Association (OCA)\nmanifest-required-keys=license\nmanifest-deprecated-keys=description,active\nlicense-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3\nvalid-odoo-versions=18.0\n\n[MESSAGES CONTROL]\ndisable=all\n\n# This .pylintrc contains optional AND mandatory checks and is meant to be\n# loaded in an IDE to have it check everything, in the hope this will make\n# optional checks more visible to contributors who otherwise never look at a\n# green travis to see optional checks that failed.\n# .pylintrc-mandatory containing only mandatory checks is used the pre-commit\n# config as a blocking check.\n\nenable=anomalous-backslash-in-string,\n    api-one-deprecated,\n    api-one-multi-together,\n    class-camelcase,\n    dangerous-view-replace-wo-priority,\n    duplicate-id-csv,\n    duplicate-xml-fields,\n    duplicate-xml-record-id,\n    eval-referenced,\n    incoherent-interpreter-exec-perm,\n    openerp-exception-warning,\n    redundant-modulename-xml,\n    relative-import,\n    rst-syntax-error,\n    wrong-tabs-instead-of-spaces,\n    xml-syntax-error,\n    assignment-from-none,\n    attribute-deprecated,\n    dangerous-default-value,\n    development-status-allowed,\n    duplicate-key,\n    eval-used,\n    license-allowed,\n    manifest-author-string,\n    manifest-deprecated-key,\n    manifest-required-author,\n    manifest-required-key,\n    manifest-version-format,\n    method-compute,\n    method-inverse,\n    method-required-super,\n    method-search,\n    pointless-statement,\n    pointless-string-statement,\n    print-used,\n    redundant-keyword-arg,\n    reimported,\n    return-in-init,\n    sql-injection,\n    too-few-format-args,\n    translation-field,\n    translation-required,\n    unreachable,\n    use-vim-comment,\n    character-not-valid-in-resource-link,\n    create-user-wo-reset-password,\n    dangerous-filter-wo-user,\n    dangerous-qweb-replace-wo-priority,\n    deprecated-data-xml-node,\n    deprecated-openerp-xml-node,\n    duplicate-po-message-definition,\n    file-not-used,\n    missing-newline-extrafiles,\n    old-api7-method-defined,\n    po-msgstr-variables,\n    po-syntax-error,\n    str-format-used,\n    unnecessary-utf8-coding-comment,\n    xml-attribute-translatable,\n    xml-deprecated-qweb-directive,\n    xml-deprecated-tree-attribute,\n    attribute-string-redundant,\n    consider-merging-classes-inherited,\n    context-overridden,\n    except-pass,\n    invalid-commit,\n    manifest-maintainers-list,\n    missing-readme,\n    missing-return,\n    odoo-addons-relative-import,\n    renamed-field-parameter,\n    resource-not-exist,\n    test-folder-imported,\n    translation-contains-variable,\n    translation-positional-used,\n    website-manifest-key-not-valid-uri,\n    external-request-timeout,\n    missing-manifest-dependency,\n    too-complex,,\n    create-user-wo-reset-password,\n    dangerous-filter-wo-user,\n    file-not-used,\n    missing-newline-extrafiles,\n    no-utf8-coding-comment,\n    old-api7-method-defined,\n    unnecessary-utf8-coding-comment,\n    # messages that do not cause the lint step to fail\n    consider-merging-classes-inherited,\n    deprecated-module,\n    invalid-commit,\n    missing-readme,\n    odoo-addons-relative-import,\n    redefined-builtin,\n    manifest-external-assets\n\n\n[REPORTS]\nmsg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}\noutput-format=colorized\nreports=no\n"
  },
  {
    "path": ".pylintrc-mandatory",
    "content": "\n[MASTER]\nload-plugins=pylint_odoo\nscore=n\n\n[ODOOLINT]\nreadme-template-url=\"https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst\"\nmanifest-required-authors=Odoo Community Association (OCA)\nmanifest-required-keys=license\nmanifest-deprecated-keys=description,active\nlicense-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3\nvalid-odoo-versions=18.0\n\n[MESSAGES CONTROL]\ndisable=all\n\nenable=anomalous-backslash-in-string,\n    api-one-deprecated,\n    api-one-multi-together,\n    class-camelcase,\n    dangerous-view-replace-wo-priority,\n    duplicate-id-csv,\n    duplicate-xml-fields,\n    duplicate-xml-record-id,\n    eval-referenced,\n    incoherent-interpreter-exec-perm,\n    openerp-exception-warning,\n    redundant-modulename-xml,\n    relative-import,\n    rst-syntax-error,\n    wrong-tabs-instead-of-spaces,\n    xml-syntax-error,\n    assignment-from-none,\n    attribute-deprecated,\n    dangerous-default-value,\n    development-status-allowed,\n    duplicate-key,\n    eval-used,\n    license-allowed,\n    manifest-author-string,\n    manifest-deprecated-key,\n    manifest-required-author,\n    manifest-required-key,\n    manifest-version-format,\n    method-compute,\n    method-inverse,\n    method-required-super,\n    method-search,\n    pointless-statement,\n    pointless-string-statement,\n    print-used,\n    redundant-keyword-arg,\n    reimported,\n    return-in-init,\n    sql-injection,\n    too-few-format-args,\n    translation-field,\n    translation-required,\n    unreachable,\n    use-vim-comment,\n    character-not-valid-in-resource-link,\n    create-user-wo-reset-password,\n    dangerous-filter-wo-user,\n    dangerous-qweb-replace-wo-priority,\n    deprecated-data-xml-node,\n    deprecated-openerp-xml-node,\n    duplicate-po-message-definition,\n    file-not-used,\n    missing-newline-extrafiles,\n    old-api7-method-defined,\n    po-msgstr-variables,\n    po-syntax-error,\n    str-format-used,\n    unnecessary-utf8-coding-comment,\n    xml-attribute-translatable,\n    xml-deprecated-qweb-directive,\n    xml-deprecated-tree-attribute,\n    attribute-string-redundant,\n    consider-merging-classes-inherited,\n    context-overridden,\n    except-pass,\n    invalid-commit,\n    manifest-maintainers-list,\n    missing-readme,\n    missing-return,\n    odoo-addons-relative-import,\n    renamed-field-parameter,\n    resource-not-exist,\n    test-folder-imported,\n    translation-contains-variable,\n    translation-positional-used,\n    website-manifest-key-not-valid-uri,\n    external-request-timeout\n\n[REPORTS]\nmsg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}\noutput-format=colorized\nreports=no\n"
  },
  {
    "path": ".ruff.toml",
    "content": "\ntarget-version = \"py310\"\nfix = true\n\n[lint]\nextend-select = [\n    \"B\",\n    \"C90\",\n    \"E501\",  # line too long (default 88)\n    \"I\",  # isort\n    \"UP\",  # pyupgrade\n]\nextend-safe-fixes = [\"UP008\"]\nexclude = [\"setup/*\"]\n\n[format]\nexclude = [\"setup/*\"]\n\n[lint.per-file-ignores]\n\"__init__.py\" = [\"F401\", \"I001\"]  # ignore unused and unsorted imports in __init__.py\n\"__manifest__.py\" = [\"B018\"]  # useless expression\n\n[lint.isort]\nsection-order = [\"future\", \"standard-library\", \"third-party\", \"odoo\", \"odoo-addons\", \"first-party\", \"local-folder\"]\n\n[lint.isort.sections]\n\"odoo\" = [\"odoo\"]\n\"odoo-addons\" = [\"odoo.addons\"]\n\n[lint.mccabe]\nmax-complexity = 16\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU AFFERO GENERAL PUBLIC LICENSE\n                       Version 3, 19 November 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU Affero General Public License is a free, copyleft license for\nsoftware and other kinds of works, specifically designed to ensure\ncooperation with the community in the case of network server software.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nour General Public Licenses are intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  Developers that use our General Public Licenses protect your rights\nwith two steps: (1) assert copyright on the software, and (2) offer\nyou this License which gives you legal permission to copy, distribute\nand/or modify the software.\n\n  A secondary benefit of defending all users' freedom is that\nimprovements made in alternate versions of the program, if they\nreceive widespread use, become available for other developers to\nincorporate.  Many developers of free software are heartened and\nencouraged by the resulting cooperation.  However, in the case of\nsoftware used on network servers, this result may fail to come about.\nThe GNU General Public License permits making a modified version and\nletting the public access it on a server without ever releasing its\nsource code to the public.\n\n  The GNU Affero General Public License is designed specifically to\nensure that, in such cases, the modified source code becomes available\nto the community.  It requires the operator of a network server to\nprovide the source code of the modified version running there to the\nusers of that server.  Therefore, public use of a modified version, on\na publicly accessible server, gives the public access to the source\ncode of the modified version.\n\n  An older license, called the Affero General Public License and\npublished by Affero, was designed to accomplish similar goals.  This is\na different license, not a version of the Affero GPL, but Affero has\nreleased a new version of the Affero GPL which permits relicensing under\nthis license.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU Affero General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Remote Network Interaction; Use with the GNU General Public License.\n\n  Notwithstanding any other provision of this License, if you modify the\nProgram, your modified version must prominently offer all users\ninteracting with it remotely through a computer network (if your version\nsupports such interaction) an opportunity to receive the Corresponding\nSource of your version by providing access to the Corresponding Source\nfrom a network server at no charge, through some standard or customary\nmeans of facilitating copying of software.  This Corresponding Source\nshall include the Corresponding Source for any work covered by version 3\nof the GNU General Public License that is incorporated pursuant to the\nfollowing paragraph.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the work with which it is combined will remain governed by version\n3 of the GNU General Public License.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU Affero General Public License from time to time.  Such new versions\nwill be similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU Affero General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU Affero General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU Affero General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU Affero General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU Affero General Public License for more details.\n\n    You should have received a copy of the GNU Affero General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If your software can interact with users remotely through a computer\nnetwork, you should also make sure that it provides a way for users to\nget its source.  For example, if your program is a web application, its\ninterface could display a \"Source\" link that leads users to an archive\nof the code.  There are many ways you could offer source, and different\nsolutions will be better for different programs; see section 13 for the\nspecific requirements.\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU AGPL, see\n<https://www.gnu.org/licenses/>.\n"
  },
  {
    "path": "README.md",
    "content": "\n[![Support the OCA](https://odoo-community.org/readme-banner-image)](https://odoo-community.org/get-involved?utm_source=repo-readme)\n\n# connector-telephony\n[![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)\n[![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)\n[![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)\n[![codecov](https://codecov.io/gh/OCA/connector-telephony/branch/18.0/graph/badge.svg)](https://codecov.io/gh/OCA/connector-telephony)\n[![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)\n\n<!-- /!\\ do not modify above this line -->\n\nconnector-telephony\n\n<!-- /!\\ do not modify below this line -->\n\n<!-- prettier-ignore-start -->\n\n[//]: # (addons)\n\nAvailable addons\n----------------\naddon | version | maintainers | summary\n--- | --- | --- | ---\n[base_phone](base_phone/) | 18.0.1.0.0 | <a href='https://github.com/alexis-via'><img src='https://github.com/alexis-via.png' width='32' height='32' style='border-radius:50%;' alt='alexis-via'/></a> | Validate phone numbers\n[voip_oca](voip_oca/) | 18.0.1.0.2 | <a href='https://github.com/etobella'><img src='https://github.com/etobella.png' width='32' height='32' style='border-radius:50%;' alt='etobella'/></a> | Provides the use of Voip\n\n[//]: # (end addons)\n\n<!-- prettier-ignore-end -->\n\n## Licenses\n\nThis repository is licensed under [AGPL-3.0](LICENSE).\n\nHowever, each module can have a totally different license, as long as they adhere to Odoo Community Association (OCA)\npolicy. Consult each module's `__manifest__.py` file, which contains a `license` key\nthat explains its license.\n\n----\nOCA, or the [Odoo Community Association](http://odoo-community.org/), is a nonprofit\norganization whose mission is to support the collaborative development of Odoo features\nand promote its widespread use.\n"
  },
  {
    "path": "base_phone/README.rst",
    "content": "==========\nBase Phone\n==========\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:1685f77c2ab6988da842ee87e52d46d4e55bcd2c6bdbe568a730f0f352e2f133\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n    :target: https://odoo-community.org/page/development-status\n    :alt: Beta\n.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n    :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n    :alt: License: AGPL-3\n.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fconnector--telephony-lightgray.png?logo=github\n    :target: https://github.com/OCA/connector-telephony/tree/18.0/base_phone\n    :alt: OCA/connector-telephony\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/connector-telephony-18-0/connector-telephony-18-0-base_phone\n    :alt: Translate me on Weblate\n.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png\n    :target: https://runboat.odoo-community.org/builds?repo=OCA/connector-telephony&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module provides common methods and wizards which can be useful to\ndevelop a connector between Odoo and a telephony system. It depends on\nthe official module *phone_validation* which handle the reformatting of\nphone numbers using the\n`phonenumbers <https://github.com/daviddrysdale/python-phonenumbers>`__\nPython library, which is a port of the library used in Android\nsmartphones. For example, if your user is linked to a French company and\nyou update the form view of a partner with a badly written French phone\nnumber such as '01-55-42-12-42', Odoo will automatically update the\nphone number to `E.164 <https://en.wikipedia.org/wiki/E.164>`__ format\n'+33155421242'. This module extends this reformatting to create() and\nwrite() methods.\n\nThis module is used by the Odoo-Asterisk connector of the OCA.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/connector-telephony/issues>`_.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us to smash it by providing a detailed and welcomed\n`feedback <https://github.com/OCA/connector-telephony/issues/new?body=module:%20base_phone%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.\n\nDo not contact contributors directly about support or help with technical issues.\n\nCredits\n=======\n\nAuthors\n-------\n\n* Akretion\n\nContributors\n------------\n\n- Alexis de Lattre <alexis.delattre@akretion.com>\n- Sébastien Beau <sebastien.beau@akretion.com>\n- `Dixmit <https://www.dixmit.com>`__:\n\n  - Luis David Rodríguez\n  - Enric Tobella\n\n- `Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>`__\n\n  - Bhavesh Heliconia\n\nMaintainers\n-----------\n\nThis module is maintained by the OCA.\n\n.. image:: https://odoo-community.org/logo.png\n   :alt: Odoo Community Association\n   :target: https://odoo-community.org\n\nOCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.\n\n.. |maintainer-alexis-via| image:: https://github.com/alexis-via.png?size=40px\n    :target: https://github.com/alexis-via\n    :alt: alexis-via\n\nCurrent `maintainer <https://odoo-community.org/page/maintainer-role>`__:\n\n|maintainer-alexis-via| \n\nThis module is part of the `OCA/connector-telephony <https://github.com/OCA/connector-telephony/tree/18.0/base_phone>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "base_phone/__init__.py",
    "content": "from . import models\nfrom . import wizard\n"
  },
  {
    "path": "base_phone/__manifest__.py",
    "content": "# Copyright 2014-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis@via.ecp.fr>\n# @migration from 12.0 to 13.0: Christophe Langenberg <Christophe@Langenberg.be>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Base Phone\",\n    \"version\": \"18.0.1.0.0\",\n    \"category\": \"Phone\",\n    \"license\": \"AGPL-3\",\n    \"summary\": \"Validate phone numbers\",\n    \"author\": \"Akretion,Odoo Community Association (OCA)\",\n    \"maintainers\": [\"alexis-via\"],\n    \"website\": \"https://github.com/OCA/connector-telephony\",\n    \"depends\": [\"phone_validation\", \"base_setup\"],\n    \"external_dependencies\": {\"python\": [\"phonenumbers\"]},\n    \"data\": [\n        \"security/phone_security.xml\",\n        \"security/ir.model.access.csv\",\n        \"wizard/res_config_settings.xml\",\n        \"views/res_users_view.xml\",\n        \"wizard/reformat_all_phonenumbers_view.xml\",\n        \"wizard/number_not_found_view.xml\",\n    ],\n    \"assets\": {\n        \"web.assets_backend\": [\n            \"base_phone/static/src/components/**/*\",\n        ],\n    },\n    \"installable\": True,\n}\n"
  },
  {
    "path": "base_phone/i18n/am_ET.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:12+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:12+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"ድርጅት\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/ar_001.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:13+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:13+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"إلغاء\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"الشركات \"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"تهيئة الإعدادات \"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"جهة الاتصال\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/base_phone.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 18.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. \"\n\"https://cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. \"\n\"https://developers.google.com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be \"\n\"positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/ca_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:14+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:14+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancel·la\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Empreses\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Ajustos de configuració\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacte\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat per\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creat el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Darrera Actualització per\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Darrera Actualització el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/cs_CZ.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:15+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:15+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Zrušit\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Společnosti\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Nastavení konfigurace\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontakt\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:17+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:17+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Anrufernummer\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Abbruch\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial erfolgreich\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Schließen\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Unternehmen\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Konfigurationseinstellungen\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontakt\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Erstelle neuen Partner\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Einen Partner anlegen oder aktualisieren\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Erstellt von\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Erstellt am\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Aktuelle Mobilnummer\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Aktuelle Telefonnummer\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Wählen\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Anzeigename\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Ferig\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Entwurf\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"E.164 Nummer\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"E.164 Entsprechung der Rufnummer.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Festnetz\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Festnetz/Mobil\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"In einigen Situationen muss Odoo einen Partner/Mitarbeiter/… aus der vom \"\n\"Anrufer übermittelten Telefonnummer finden. Da der Telefonanbieter nicht \"\n\"immer in einem Standardformat sendet ist die beste Methode um die \"\n\"entsprechenden Telefonnummer zu finden, das Ende der Telefonnummer mit den \"\n\"letzten N Ziffern zu vergleichen. N ist der Wert, den Sie in dieses Feld \"\n\"eingeben sollten.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zuletzt aktualisiert von\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zuletzt aktualisiert am\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"Bei Unternehmen %s fehlt das Land\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Mobil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Nummer nicht gefunden\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Nummer in internationales Format umgewandelt:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Nummer nicht gefunden\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Anzahl der übereinstimmenden Stellen vom Ende her\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Anzahl der übereinstimmenden Stellen vom Ende her\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Partner dem die Telefonnummer zugewiesen wird\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Zu aktualisierender Partner\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Telefon Anrufer-ID\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Telefonnummer des Anrufers der vom Telefonieserver erhalten wurde, im Format \"\n\"des Telefonieservers (nicht E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Telefonnummern, die nicht umformatiert werden konnten\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Telefonnummern, die nicht umformatiert werden konnten:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Formatiere die Telefonnummern um\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Formatiere alle Telefonnummern um\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Wählen Sie den Partner der aktualisiert werden soll.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Bundesland\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonie\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Telefonie Einstellungen\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"Der Wert des Feldes 'Anzahl der übereinstimmenden Stellen vom Ende her' muss \"\n\"positiv sein\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Dieser Assistent formatiert die Telefon-, Mobil- und Faxnummern aller \"\n\"Partner im standard internationen Format - zB +33141981242 - neu\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Nimm das klingelde Telefon ab\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Einen Partner anlegen oder aktualisieren\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zuletzt geändert am\"\n"
  },
  {
    "path": "base_phone/i18n/el_GR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:17+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:17+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Εταιρίες\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Ρυθμίσεις διαμόρφωσης\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Επαφή\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Δημιουργήθηκε από \"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Δημιουργήθηκε στις\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"Κωδικός\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Τελευταία ενημέρωση από\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Τελευταία ενημέρωση στις\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:20+0000\\n\"\n\"PO-Revision-Date: 2024-04-24 10:41+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: \\n\"\n\"Language: es\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 4.17\\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Número llamante\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial satisfactorio\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"Click2dial a %s\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Métodos comunes para funciones del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Compañías\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Opciones de configuración\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Crear nueva empresa\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Crear o actualizar empresa\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Móvil actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Teléfono actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Llamar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"Marcar teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Hecho\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Número E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"Equivalente E.164 del número que llama.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Teléfono fijo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fijo/móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"ID (identificación)\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/\"\n\"empleado... desde un número de teléfono presentado por la entidad llamante. \"\n\"Como los números de teléfono presentados por el operador telefónico pueden \"\n\"no siempre ser mostrados en un formato estándar, el mejor método para \"\n\"encontrar el elemento relacionado en Odoo es intentar casar el final del \"\n\"número de teléfono con los últimos N dígitos del número presentado. N es el \"\n\"valor que debe entrar en este campo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"No existe país en la compañía %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Teléfono móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Número convertido a formato internacional:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"Número marcado: %s\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Número de Dígitos\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Empresa en la que se escribirá el número de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Empresa a actualizar\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Empresa: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Identificación de llamada del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Teléfono validación\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Número de teléfono del interlocutor que ha sido obtenido desde el servidor \"\n\"de telefonía, en el formato usado por el servidor de telefonía (no E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Números de teléfono que no pudieron reformatearse\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Números de teléfono que no pudieron reformatearse:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Reformatear números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Reformatear todos los números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Escoja la empresa a actualizar.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\"Establezca cuántos dígitos deben ser idénticos desde el final del número de \"\n\"teléfono para declararlo como coincidente con un socio, un cliente \"\n\"potencial, un empleado, un candidato, etc.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonía\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Preferencias de telefonía\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"El valor del campo 'Número de dígitos que coinciden al final' debe ser \"\n\"positivo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Este asistente reformatea los números de teléfono fijo, móvil y fax de todas \"\n\"las empresas en formato estándar internacional, p.ej. +33141981242\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Descuelgue su teléfono que está sonando\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Actualizar empresa existente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"<span class=\\\"o_form_label\\\">Incoming calls</span>\"\n#~ msgstr \"<span class=\\\"o_form_label\\\">Llamadas entrantes</span>\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n"
  },
  {
    "path": "base_phone/i18n/es_AR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:19+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:19+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Numero entrante\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial satisfactorio\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Métodos comunes para funciones del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Compañías\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Opciones de configuración\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Crear nuevo contacto\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Crear o actualizar un contacto\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Teléfono móvil actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Teléfono actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Llamar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre para mostrar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Listo\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Numero E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"Equivalente E.164 del numero entrante.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Fijo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fijo/Movil\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"En varias situaciones, el sistema va a necesitar encontrar un Contacto/Lead/\"\n\"Empleado... desde un número telefónico representado por el número entrante. \"\n\"Como los números representados por el operador no siempre son mostrados en \"\n\"el formato estándar, el mejor metodo para encontrar el objeto relacionado en \"\n\"el sistema es tratar de coincidir (match) la parte final del número \"\n\"telefónico en el sistema con los últimos N dígitos del número telefónico \"\n\"presentado como número entrante. N es el valor que debes ingresar en este \"\n\"campo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"No se encuentra definido el país para la compañía %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Movil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"No se encuentra el número telefónico\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Número convertido a formato internacional:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"Numero discado: %s\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"No se encuentra el número\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Numero de digitos\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Número de dígitos para coincidir desde el final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Contacto/Cliente en el que el numero de telefono va a ser escrito\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Contacto/Cliente a actualizar\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Contacto/Cliente: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Identificación de llamada del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Teléfono validación\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Número de teléfono del interlocutor que ha sido obtenido desde el servidor \"\n\"de telefonía, en el formato usado por el servidor de telefonía (no E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Números de teléfono que no pudieron reformatearse\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Números de teléfono que no pudieron reformatearse:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Re-formatear números telefónicos\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Re-formatear todos los números telefónicos\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Selecciona el contacto a actualizar.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\"Seleccionar cuantos digitos deben ser idénticos desde el final del número \"\n\"telefónico para declarar que coincide con un contacto, un lead, un empleado \"\n\"o un candidato, etc.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonia\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Preferencias de Telefonia\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"El valor del campo 'Número de dígitos desde el final' debe ser positivo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Esta herramienta le ayudara a reformatear todos los números de teléfono y \"\n\"móviles de todos los contactos en el formato estándar internacional. E.j. \"\n\"+33 1 41 98 12 42\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Tu teléfono está sonando, atiende para continuar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Actualizar un contacto existente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"<span class=\\\"o_form_label\\\">Incoming calls</span>\"\n#~ msgstr \"<span class=\\\"o_form_label\\\">Llamadas Entrantes</span>\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación en\"\n"
  },
  {
    "path": "base_phone/i18n/es_CR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:20+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:20+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Número llamante\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial satisfactorio\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Métodos comunes para funciones del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Compañías\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Opciones de configuración\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Crear nueva empresa\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Crear o actualizar empresa\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Móvil actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Teléfono actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Llamar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Hecho\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Número E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"Equivalente E.164 del número que llama.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Teléfono fijo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fijo/móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/\"\n\"empleado... desde un número de teléfono presentado por la entidad llamante. \"\n\"Como los números de teléfono presentados por el operador telefónico pueden \"\n\"no siempre ser mostrados en un formato estándar, el mejor método para \"\n\"encontrar el elemento relacionado en Odoo es intentar casar el final del \"\n\"número de teléfono con los últimos N dígitos del número presentado. N es el \"\n\"valor que debe entrar en este campo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"No existe país en la compañía %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Teléfono móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Número convertido a formato internacional:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Empresa en la que se escribirá el número de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Empresa a actualizar\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Empresa: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Identificación de llamada del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Teléfono validación\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Número de teléfono del interlocutor que ha sido obtenido desde el servidor \"\n\"de telefonía, en el formato usado por el servidor de telefonía (no E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Números de teléfono que no pudieron reformatearse\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Números de teléfono que no pudieron reformatearse:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Reformatear números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Reformatear todos los números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Escoja la empresa a actualizar.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonía\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Preferencias de telefonía\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"El valor del campo 'Número de dígitos que coinciden al final' debe ser \"\n\"positivo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Este asistente reformatea los números de teléfono fijo, móvil y fax de todas \"\n\"las empresas en formato estándar internacional, p.ej. +33141981242\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Descuelgue su teléfono que está sonando\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Actualizar empresa existente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n"
  },
  {
    "path": "base_phone/i18n/es_EC.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:20+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:20+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Número llamante\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial satisfactorio\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Métodos comunes para funciones del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Compañías\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Opciones de configuración\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Crear nueva empresa\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Crear o actualizar empresa\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Móvil actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Teléfono actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Llamar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Hecho\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Número E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"Equivalente E.164 del número que llama.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Teléfono fijo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fijo/móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/\"\n\"empleado... desde un número de teléfono presentado por la entidad llamante. \"\n\"Como los números de teléfono presentados por el operador telefónico pueden \"\n\"no siempre ser mostrados en un formato estándar, el mejor método para \"\n\"encontrar el elemento relacionado en Odoo es intentar casar el final del \"\n\"número de teléfono con los últimos N dígitos del número presentado. N es el \"\n\"valor que debe entrar en este campo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"No existe país en la compañía %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Teléfono móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Número convertido a formato internacional:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Empresa en la que se escribirá el número de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Empresa a actualizar\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Empresa: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Identificación de llamada del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Teléfono validación\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Número de teléfono del interlocutor que ha sido obtenido desde el servidor \"\n\"de telefonía, en el formato usado por el servidor de telefonía (no E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Números de teléfono que no pudieron reformatearse\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Números de teléfono que no pudieron reformatearse:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Reformatear números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Reformatear todos los números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Escoja la empresa a actualizar.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonía\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Preferencias de telefonía\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"El valor del campo 'Número de dígitos que coinciden al final' debe ser \"\n\"positivo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Este asistente reformatea los números de teléfono fijo, móvil y fax de todas \"\n\"las empresas en formato estándar internacional, p.ej. +33141981242\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Descuelgue su teléfono que está sonando\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Actualizar empresa existente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n"
  },
  {
    "path": "base_phone/i18n/es_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * base_phone\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-11-09 09:55+0000\\n\"\n\"PO-Revision-Date: 2016-11-09 09:55+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/\"\n\"es_ES/)\\n\"\n\"Language: es_ES\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/es_MX.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:20+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:20+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Número llamante\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial satisfactorio\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Métodos comunes para funciones del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Empresas\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Opciones de configuración\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Crear nueva empresa\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Crear o actualizar empresa\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Móvil actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Teléfono actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Llamar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Hecho\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Número E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"Equivalente E.164 del número que llama.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Teléfono fijo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fijo/móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/\"\n\"empleado... desde un número de teléfono presentado por la entidad llamante. \"\n\"Como los números de teléfono presentados por el operador telefónico pueden \"\n\"no siempre ser mostrados en un formato estándar, el mejor método para \"\n\"encontrar el elemento relacionado en Odoo es intentar casar el final del \"\n\"número de teléfono con los últimos N dígitos del número presentado. N es el \"\n\"valor que debe entrar en este campo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"No existe país en la compañía %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Teléfono móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Número convertido a formato internacional:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Empresa en la que se escribirá el número de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Empresa a actualizar\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Empresa: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Identificación de llamada del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Teléfono validación\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Número de teléfono del interlocutor que ha sido obtenido desde el servidor \"\n\"de telefonía, en el formato usado por el servidor de telefonía (no E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Números de teléfono que no pudieron reformatearse\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Números de teléfono que no pudieron reformatearse:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Reformatear números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Reformatear todos los números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Escoja la empresa a actualizar.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonía\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Preferencias de telefonía\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"El valor del campo 'Número de dígitos que coinciden al final' debe ser \"\n\"positivo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Este asistente reformatea los números de teléfono fijo, móvil y fax de todas \"\n\"las empresas en formato estándar internacional, p.ej. +33141981242\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Descuelgue su teléfono que está sonando\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Actualizar empresa existente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n"
  },
  {
    "path": "base_phone/i18n/es_VE.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:20+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:20+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Número llamante\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial satisfactorio\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Métodos comunes para funciones del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Compañías\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Opciones de configuración\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Crear nueva empresa\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Crear o actualizar empresa\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Móvil actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Teléfono actual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Llamar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Hecho\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Número E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"Equivalente E.164 del número que llama.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Teléfono fijo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fijo/móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"En varias situaciones, Odoo tendrá que obtener la empresa/iniciativa/\"\n\"empleado... desde un número de teléfono presentado por la entidad llamante. \"\n\"Como los números de teléfono presentados por el operador telefónico pueden \"\n\"no siempre ser mostrados en un formato estándar, el mejor método para \"\n\"encontrar el elemento relacionado en Odoo es intentar casar el final del \"\n\"número de teléfono con los últimos N dígitos del número presentado. N es el \"\n\"valor que debe entrar en este campo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización el\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"No existe país en la compañía %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Teléfono móvil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Número convertido a formato internacional:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Número no encontrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Número de dígitos que coinciden al final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Empresa en la que se escribirá el número de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Empresa a actualizar\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Empresa: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Identificación de llamada del teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Teléfono validación\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Número de teléfono del interlocutor que ha sido obtenido desde el servidor \"\n\"de telefonía, en el formato usado por el servidor de telefonía (no E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Números de teléfono que no pudieron reformatearse\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Números de teléfono que no pudieron reformatearse:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Reformatear números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Reformatear todos los números de teléfono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Escoja la empresa a actualizar.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonía\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Preferencias de telefonía\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"El valor del campo 'Número de dígitos que coinciden al final' debe ser \"\n\"positivo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Este asistente reformatea los números de teléfono fijo, móvil y fax de todas \"\n\"las empresas en formato estándar internacional, p.ej. +33141981242\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Descuelgue su teléfono que está sonando\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Actualizar empresa existente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n"
  },
  {
    "path": "base_phone/i18n/et_EE.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:16+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:16+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Loobu\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Ettevõtted\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Seadistused\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontakt\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/fi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:16+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:16+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Yritykset\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Konfiguraatioasetukset\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontakti\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Luonut\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Luotu\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nimi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Valmis\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Viimeksi päivittänyt\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Viimeksi päivitetty\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Tila\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Viimeksi muokattu\"\n"
  },
  {
    "path": "base_phone/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:16+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:16+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Numéro appellant\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Annuler\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial réussi\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"Click2dial de %s\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Fermer\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Méthodes courantes pour les fonctionnalités du téléphone\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Sociétés\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Paramètres de config\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Créer un nouveau partenaire\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Créer ou mettre à jour un partenaire\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Créé par\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Date\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Portable actuel\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Téléphone actuel\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Composer\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom à afficher\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Fait\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Brouillon\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Numéro E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"Equivalent au format E.164 du numéro appelant.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Fixe\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fixe/Portable\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"Identifiant\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"Dans différentes situations, Odoo devra trouver un Partenaire/Prospect/\"\n\"Employé/… à partir d’un numéro de téléphone présenté par l’appelant. Comme \"\n\"les numéros de téléphone présentés par votre opérateur téléphonique ne sont \"\n\"pas toujours affichés dans un format standard, la meilleure méthode pour \"\n\"trouver le partenaire/prospect/employé/… associé dans Odoo est d’essayer de \"\n\"faire correspondre la fin du numéro de téléphone dans Odoo. avec les N \"\n\"derniers chiffres du numéro de téléphone présenté par l’appelant. N est la \"\n\"valeur que vous devez saisir dans ce champ.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Dernière mise à jour par\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Dernière mise à jour le\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"Pays non défini pour la société %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Portable\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Numéro introuvable\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Numéro converti au format international :\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"Numéro composé : %s\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Numéro introuvable\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Nombre de chiffres à faire correspondre en partant de la fin\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Nombre de chiffres à faire correspondre en partant de la fin\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Partenaire dans lequel le numéro de téléphone sera enregistré\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Partenaire à mettre à jour\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Partenaire : %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"CallerID du téléphone\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Mixin de la Validation de Téléphones\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Numéro de téléphone de la partie appelante qui a été obtenu auprès du \"\n\"serveur de téléphonie, dans le format utilisé par le serveur de téléphonie \"\n\"(et non E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Numéros de téléphone qui n'ont pas pu être reformatés\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Numéros de téléphone qui n'ont pas pu être reformatés :\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Reformate les numéros de téléphone\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Reformate tous les numéros de téléphone\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Selectionnez le partenaire à mettre à jour.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\"Définissez le nombre de chiffres qui doivent être identiques à partir de la \"\n\"fin du numéro de téléphone pour le déclarer comme une correspondance avec un \"\n\"partenaire, un prospect, un employé, un candidat, etc.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"État\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Téléphonie\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Préférences téléphoniques\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"La valeur du champ 'Nombre de chiffres à faire correspondre à partir de la \"\n\"fin' doit être positive.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Cet assistant reformate le numéro de téléphone fixe, portable et le fax de \"\n\"tous les partenaires au format standard international i.e. +33141981242\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Décrochez votre téléphone\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Mettre à jour un partenaire existant\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"<span class=\\\"o_form_label\\\">Incoming calls</span>\"\n#~ msgstr \"<span class=\\\"o_form_label\\\">Appels entrants</span>\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Dernière modification le\"\n"
  },
  {
    "path": "base_phone/i18n/gl_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:17+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:17+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Compañías\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"ültima actualización por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/hr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:14+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:14+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Pozivam broj\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Odustani\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Zatvori\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Tvrtke\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Postavke\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontakt\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:17+0000\\n\"\n\"PO-Revision-Date: 2025-08-20 11:25+0000\\n\"\n\"Last-Translator: mymage <stefano.consolaro@mymage.it>\\n\"\n\"Language-Team: \\n\"\n\"Language: it\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.10.4\\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\"Per abilitare la traduzione dei messaggi è necessaria una chiave API Google \"\n\"valida. https://cloud.google.com/translate/docs/setup\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\"Aggiungere una chiave API GIF Tenor per abilitare il supporto GIF. https://\"\n\"developers.google.com/tenor/guides/quickstart#setup\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"Dominio alias\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"Consenti l'integrazione con i plugin di posta\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\"Consenti agli utenti di sincronizzare il loro calendario con Google Calendar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\"Consenti agli utenti di sincronizzare il proprio calendario con il \"\n\"calendario di Outlook\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"Consenti agli utenti di importare dati da file CSV/XLS/XLSX/ODS\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"Permette di lavorare in un ambiente multivaluta\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"Chiave codificata base64\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Numero chiamata\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Annulla\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"CliccaXChiamare riuscito\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"CliccaXChiamare a %s\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Chiudi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"Cloudflare Turnstile\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Metodi comuni per funzionalità telefono\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Aziende\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"Codice nazione\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"Informazioni azienda\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"Nome azienda\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Impostazioni di configurazione\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contatto\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Crea nuovo partner\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Creare o aggiornare un partner\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Cellulare attuale\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Telefono attuale\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"Piè pagina resoconto personalizzato\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"Account cliente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"Autorizzazioni accesso predefinite\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Componi\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"Chiama telefono\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"Modello documento\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Completato\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Bozza\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Numero E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"E.164 equivalente al numero che chiama.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"Colore pulsante e-mail\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"Colore intestazione e-mail\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"Abilita il reset della password dalla pagina di accesso\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"E-mail fallita\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"Recupera fino al numero specificato di GIF.\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Fisso\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fisso/cellulare\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"Testo in calce visualizzato in fondo al resoconto.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"GeoLocalize\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"Ottieni immagini prodotto usando il codice a barre\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\"Se si è configurato un dominio email catch-all reindirizzato al server Odoo, \"\n\"inserire qui il nome del dominio.\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"Se si vuole usare Twilio come fornitore di server TURN/STUN\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"In diverse situazioni, Odoo dovrà cercare un partner/contatto/dipendente... \"\n\"da un numero di telefono presentato dal soggetto chiamante. Poiché il numero \"\n\"di telefono presentato dal vostro operatore telefonico potrebbe non essere \"\n\"visualizzato in formato standard, il miglior modo per trovare il partner/\"\n\"contatto/dipendente/... relativo in Odoo è di cercare la corrispondenza tra \"\n\"la fine del numero di telefono in Odoo con gli ultimi N numeri del numero di \"\n\"telefono presentato dal soggetto chiamante. N è il numero da inserire in \"\n\"questo campo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"Chiamate in arrivo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"È azienda radice\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"Autenticazione LDAP\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"Gestione inter company\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"Chiave API traduzione messaggio\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"Nazione mancante nell'azienda %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Cellulare\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"Multi valute\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Numero non trovato\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Numero convertito in formato internazinale:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"Numero chiamato: %s\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Numero non trovato\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"Numero di utenti attivi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"Numero di aziende\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Numero di cifre\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Numero di cifre corrispondenti dalla fine\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"Numero di lingue\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"Auto completa partner\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Partner in cui verrà scritto il numero\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Partner da aggiornare\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Partner: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"ID chamata telefonica\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Mixin validazione telefono\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Numero di telefono del soggetto chiamante ottenuto dal server telefonico, \"\n\"nel formato usato dal server telefonico (non E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Numeri telefonici che non possono essere riformattati\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Numeri telefonici che non possono essere riformattati:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"Profilazione abilitata fino\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Riformatta numeri telefonici\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Riformatta tutti i numeri telefonici\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"Rendering modello ristretto\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"URL server SFU\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"Chiave server SFU\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"SMA\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Selezionare il partner da aggiornare.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\"Impostare quanti numeri devono essere identici dalla fine del numero di \"\n\"telefono per affermare la corrispondenza con un partner, un contatto, un \"\n\"dipendente, un candidato, ecc.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"Visualizza effetto\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Stato\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"Autenticazione supporto Gmail\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"Supporto autenticazione Outlook\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonia\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Preferenze telefonia\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"Utente modello per nuovi utenti creati attraverso l'iscrizione\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"Chiave API Tenor\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"Limite GIF Tenor\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"Filtro contenuto Tenor\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\"Il codice ISO nazione in due caratteri. \\n\"\n\"Si può utilizzare per ricerche rapide.\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"Il valore del campo 'Numero di cifre corrispondenti dalla fine' deve essere \"\n\"positivo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Questa procedura guidata riformatta i numeri cellulari e fissi di tutti i \"\n\"partner con il formato internazionale standard es. +33 1 41 98 12 42\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"Token autorizzazione account Twillo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"SID account Twillo\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Rispondere al telefono che suona\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"Libreria immagine Unsplash\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Aggiorna partner esistente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"Utilizza server e-mail personalizzati\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"Utilizza server ICE Twillo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"Usa fornitore autenticazione esterno (OAuth)\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\"Gli utenti potranno comunque creare modelli.\\n\"\n\"Tuttavia, solo gli editor di modelli di posta potranno creare nuovi modelli \"\n\"dinamici o modificare quelli esistenti.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"VOIP\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"Nome app web\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"https://developers.google.com/tenor/guides/content-filtering\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"reCAPTCHA\"\n\n#~ msgid \"<span class=\\\"o_form_label\\\">Incoming calls</span>\"\n#~ msgstr \"<span class=\\\"o_form_label\\\">Chiamate in arrivo</span>\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n"
  },
  {
    "path": "base_phone/i18n/lt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:18+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:18+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Atšaukti\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Įmonės\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Konfigūracijos nustatymai\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontaktas\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/nl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:16+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:16+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Annuleren\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Bedrijven\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Configuratie instellingen\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/nl_BE.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:16+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:16+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Annuleren\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Veelvoorkomende methodes voor telefoon kenmerken\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Bedrijven\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Configuratie instellingen\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/pl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:18+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:18+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Anuluj\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Firmy\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Ustawienia konfiguracji\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontakt\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:19+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:19+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Empresas\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Configurações\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:18+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:18+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Número Chamante\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial com sucesso\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"Click2dial para %s\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Fechar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Métodos comuns para recursos do telefone\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Empresas\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Configurações\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contato\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Criar Novo Parceiro\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Criar ou Atualizar um Parceiro\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Móvel Atual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Telefone Atual\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Discar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Exibir Nome\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Feito\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Rascunho\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"Número E.164\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"E.164 equivalente do número de chamada.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"FIxo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fixo/Móvel\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"Identificação\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"Em várias situações, o Odoo precisará encontrar um Parceiro/Líder/\"\n\"Empregado/... a partir de um número de telefone apresentado pela parte que \"\n\"está chamando. Como os números de telefone apresentados pela operadora de \"\n\"telefonia nem sempre podem ser exibidos em um formato padrão, o melhor \"\n\"método para encontrar o Parceiro/Líder/Empregado/...relacionado no Odoo é \"\n\"tentar corresponder ao final do número de telefone no Odoo com os N últimos \"\n\"dígitos do número de telefone apresentados pela parte que está chamando. N é \"\n\"o valor que você deve inserir neste campo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última atualização por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última atualização em\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"País ausente na empresa %s\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Celular\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Número Não Encontrado\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Número convertido para formato internacional:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"Número descado: %s\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Número não encontrado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Número de dígitos a serem correspondidos do final\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Parceiro no qual o número de telefone será gravado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Parceiro a Atualizar\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"Parceiro: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Identificação de chamadas telefônicas\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Validação por telefone\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Número de telefone do chamador que foi obtido do servidor de telefonia, no \"\n\"formato usado pelo servidor de telefonia (não E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Números de telefone que não puderam ser reformatados\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Números de telefone que não puderam ser reformatados:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Formatar números de telefone\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Formatar todos os números de telefone\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Escolha o Parceiro a Atualizar.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonia\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Preferências de telefonia\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"O valor do campo 'Número de dígitos que coincidem no final' deve ser \"\n\"positivo.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Este assistente reformata números de telefones fixos, móveis e de fax de \"\n\"todas as empresas no formato padrão internacional, por exemplo, +33141981242\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Atenda o telefone que está tocando\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Atualizar Empresa existente\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última Modificação no\"\n"
  },
  {
    "path": "base_phone/i18n/pt_PT.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * base_phone\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-11-09 09:55+0000\\n\"\n\"PO-Revision-Date: 2016-11-09 09:55+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/\"\n\"teams/23907/pt_PT/)\\n\"\n\"Language: pt_PT\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Rascunho\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/ro.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:19+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:19+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Anuleaza\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Companii\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Setări de configurare\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/ru.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:19+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:19+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Отменена\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Компании\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Конфигурационные настройки\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Контакт\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/sl_SI.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:19+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:19+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Klicna številka\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Preklic\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Click2dial uspešen\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Zaključi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Podjetja\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Uredi nastavitve\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Stik\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Ustvari novega partnerja\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Ustvari ali posodobi partnerja\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Trenutna mobilna številka\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Trenutna telefonska številka\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Kliči\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikazni naziv\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Opravljeno\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Osnutek\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"E.164 številka\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"E.164 ekvivalent klicne številke.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Fiksni\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Fiksni/Mobilni\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnji posodobil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Mobilni telefon\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Številka ni najdena\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Številka pretvorjena v mednarodni format:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Številka ni najdena\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Število znakov od konca številke za primerjavo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Število znakov od konca številke za primerjavo\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Partner, pod katerega se bo zapisala telefonska številka\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Partner za posodobitev\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"ID klicatelja\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Telefonska številka klicatelja, ki je bila pridobljena iz telefonskega \"\n\"strežnika v formatu strežnika (ne E.164).\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"Telefonske številke, ki niso bile pretvorjene\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Telefonske številke, ki niso bile pretvorjene:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Pretvorba telefonskih številk\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Pretvorba vseh telefonskih številk\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Izbira partnerja za posodobitev\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Stanje\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefonija\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Nastavitve telefonije\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"Vrednost polja 'Število znakov od konca številke za primerjavo' mora biti \"\n\"pozitivna.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Čarovnik za pretvorbo telefonskih številk partnerjev v mednarodni format, \"\n\"npr, +33141981242\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Dvigni slušalko pri zvonjenju\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Ustvari ali posodobi partnerja\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič spremenjeno\"\n"
  },
  {
    "path": "base_phone/i18n/th.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:20+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:20+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"ยกเลิก\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"บริษัท\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"ตั้งค่าการกำหนดค่า\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"ติดต่อ\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/i18n/tr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:21+0000\\n\"\n\"PO-Revision-Date: 2025-09-18 19:42+0000\\n\"\n\"Last-Translator: Tamer Sezgin <tamer.sezgin@gmail.com>\\n\"\n\"Language-Team: \\n\"\n\"Language: tr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.10.4\\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\"Mesaj çevirisini etkinleştirmek için geçerli bir Google API anahtarı \"\n\"gereklidir. https://cloud.google.com/translate/docs/setup\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\"GIF desteğini etkinleştirmek için bir Tenor GIF API anahtarı ekleyin. \"\n\"https://developers.google.com/tenor/guides/quickstart#setup\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"Alan Rumuzu\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"Mail eklentileri ile entegrasyona izin ver\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\"Kullanıcıların takvimlerini Google Takvim ile senkronize etmelerine izin ver\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\"Kullanıcıların takvimlerini Outlook Takvim ile senkronize etmelerine izin ver\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\"Kullanıcıların CSV/XLS/XLSX/ODS dosyalarından veri içe aktarmasına izin ver\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"Çoklu para birimi ortamında çalışmaya olanak tanır\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"Base64 kodlanmış anahtar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"Çağrı Numarası\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"İptal\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"Tıkla çevir başarılı\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"Click2dial'dan %s\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"Kapat\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"Cloudflare Turnstile\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"Telefon özellikleri için yaygın yöntemler\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Şirketler\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"Şirket\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"Şirket Ülke Kodu\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"Şirket Bilgileri\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"Şirket Adı\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Yapılandırma Ayarları\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontak\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"Yeni İş Ortağı Oluştur\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"Bir iş ortağı Oluştur ya da Güncelle\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"Oluşturan\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"Oluşturuldu\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"Kayıtlı Mobil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"Kayıtlı Telefon\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"Özel Rapor Altlığı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"Müşteri Hesabı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"Varsayılan Erişim Hakları\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"Çevir\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"Telefon çevir\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"Ad Görünümü\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"Belge Şablonu\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"Biten\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"Taslak\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"E.164 Numara\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"Arayan numaranın E.164 eşdeğeri.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"Email Düğmesi Rengi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"Email Başlık Rengi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"Login sayfasından parola sıfırlamayı etkinleştir\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"Başarısız Posta\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"Belirtilen sayıda GIF getir.\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"Sabit\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"Sabit/Mobil\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"Tüm raporların altında görüntülenen altlık metni.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"GeoLocalize\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"Barkod kullanarak ürün resimlerini getir\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\"Eğer tüm e-postaları Odoo sunucusuna yönlendirilen bir alan adı kurduysanız, \"\n\"alan adını buraya girin.\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"TURN/STUN sunucu sağlayıcısı olarak Twilio kullanmak istiyorsanız\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\"Birçok durumda, Odoo arayan tarafın sunduğu bir telefon numarasından bir \"\n\"Ortak/Potansiyel Müşteri/Çalışan/... bulmak zorunda kalacaktır. Telefon \"\n\"operatörünüz tarafından sunulan telefon numaraları her zaman standart bir \"\n\"biçimde görüntülenmeyebilir, bu nedenle Odoo'da ilgili Ortak/Potansiyel Müş\"\n\"teri/Çalışan/...'ı bulmanın en iyi yöntemi, Odoo'daki telefon numarasının \"\n\"sonunu arayan tarafın sunduğu telefon numarasının son N rakamıyla \"\n\"eşleştirmeye çalışmaktır. N, bu alana girmeniz gereken değerdir.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"Gelen çağrılar\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"Kök Şirket mi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"LDAP Kimlik Doğrulama\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Son Güncelleyen\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Son Güncellenme\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"Şirketler Arasını Yönet\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"Mesaj Çeviri API Anahtarı\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"%s şirketinde ülke eksik\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"Mobil\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"Çoklu-Para-Birimleri\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"Numara Bulunamadı\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"Uluslarası biçime çevrilen numara:\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"Aranan numara: %s\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"Numara bulunamadı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"Aktif Kullanıcı Sayısı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"Şirket Sayısı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"Sondan eşleştirilecek rakam adedi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"Sondan eşleştirilecek rakam adedi\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"Dil Sayısı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"İş Ortağı Otomatik Tamamla\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"Telefon numarasının yazılacağı iş ortağı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"Güncellenecek iş ortağı\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"İş ortağı: %s\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"Telefon CallerID\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"Telefon Doğrulama Eklentisi\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\"Sizi arayan numaranın telefon sunucusundan alınan telefon numarası (E.164 \"\n\"değil)\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"yeniden biçimlendirilemeyen telefon numaraları \"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"Yeniden biçimlendirilemeyen telefon numaraları:\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"Profilleme etkinlik bitişi\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"Telefon numaralarını yeniden biçimlendir\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"Bütün telefon numaralarını yeniden biçimlendir\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"Şablon Görselleştirmeyi Sınırla\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"SFU Sunucu URL'i\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"SFU Sunucu anahtarı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"SMS\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"Güncellenecek iş ortağını seçin.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\"Bir iş ortağı, potansiyel müşteri, çalışan, aday vb. ile eşleştiğini \"\n\"belirtmek için telefon numarasının sonundan itibaren kaç hanenin aynı olması \"\n\"gerektiğini ayarlayın.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"Efekt Göster\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"Durumu\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"Gmail Kimlik Doğrulama Desteği\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"Outlook Kimlik Doğrulama Desteği\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"Telefon\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"Telefon Ayarları\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\"Başvuru ile kayıt yoluyla oluşturulan yeni kullanıcılar için şablon kullanıcı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"Tenor API anahtarı\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"Tenor Gif Limiti\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"Tenor içerik filtresi\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\"İki karakterden oluşan ISO ülke kodu.\\n\"\n\"Bu alanı hızlı arama için kullanabilirsiniz.\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\"'Sondan eşleştirilecek rakam adedi' alanına sadece pozitif sayılar \"\n\"girilmelidir.\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\"Bu sihirbaz Cep, sabit telefon ve faks numaralarını standart E.164 \"\n\"uluslararası biçime sokar.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"Twilio Hesabı 'Auth Token'\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"Twilio Hesabı SID\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"Çalan telefonunuzu açın\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"Unsplash Resim Kütüphanesi\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"Bir iş ortağı Oluştur ya da Güncelle\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"Özel Email Sunucuları Kullan\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"Twilio ICE sunucuları kullan\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"Harici kimlik doğrulama sağlayıcılarını (OAuth) kullan\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\"Kullanıcılar şablonları oluşturmaya devam edebilecek.\\n\"\n\"Ancak yalnızca Posta Şablonu Düzenleyiciler (Mail Template Editor) yeni \"\n\"dinamik şablonlar oluşturabilecek veya mevcut şablonları değiştirebilecek.\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"VoIP\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"Web Uygulaması Adı\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"https://developers.google.com/tenor/guides/content-filtering\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"reCAPTCHA\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Son Değişiklik\"\n"
  },
  {
    "path": "base_phone/i18n/vi_VN.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* base_phone\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2023-05-01 07:21+0000\\n\"\n\"PO-Revision-Date: 2023-05-01 07:21+0000\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"\"\n\"A valid Google API key is required to enable message translation. https://\"\n\"cloud.google.com/translate/docs/setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"\"\n\"Add a Tenor GIF API key to enable GIFs support. https://developers.google.\"\n\"com/tenor/guides/quickstart#setup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"Alias Domain\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_mail_plugin\nmsgid \"Allow integration with the mail plugins\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_calendar\nmsgid \"Allow the users to synchronize their calendar  with Google Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_calendar\nmsgid \"Allow the users to synchronize their calendar with Outlook Calendar\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_import\nmsgid \"Allow users to import data from CSV/XLS/XLSX/ODS files\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Allows to work in a multi currency environment\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"Base64 encoded key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__calling_number\nmsgid \"Calling Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Cancel\"\nmsgstr \"Hủy bỏ\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial successfull\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Click2dial to %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_website_cf_turnstile\nmsgid \"Cloudflare Turnstile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_common\nmsgid \"Common methods for phone features\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_company\nmsgid \"Companies\"\nmsgstr \"Công ty\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"Company Country Code\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_informations\nmsgid \"Company Informations\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_name\nmsgid \"Company Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Thiết lập cấu hình\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Liên hệ\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create New Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Create or Update a Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__create_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_mobile\nmsgid \"Current Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__current_partner_phone\nmsgid \"Current Phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Custom Report Footer\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_uninvited\nmsgid \"Customer Account\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__user_default_rights\nmsgid \"Default Access Rights\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.xml:0\nmsgid \"Dial\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Dial phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__display_name\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_report_layout_id\nmsgid \"Document Template\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__done\nmsgid \"Done\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__reformat_all_phonenumbers__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 Number\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__e164_number\nmsgid \"E.164 equivalent of the calling number.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_secondary_color\nmsgid \"Email Button Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__email_primary_color\nmsgid \"Email Header Color\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_reset_password\nmsgid \"Enable password reset from Login page\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__fail_counter\nmsgid \"Fail Mail\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Fetch up to the specified number of GIF.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__phone\nmsgid \"Fixed\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__number_type\nmsgid \"Fixed/Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__report_footer\nmsgid \"Footer text displayed at the bottom of all reports.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_base_geolocalize\nmsgid \"GeoLocalize\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_product_images\nmsgid \"Get product pictures using barcode\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__id\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__alias_domain_id\nmsgid \"\"\n\"If you have setup a catch-all email domain redirected to the Odoo server, \"\n\"enter the domain name here.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"If you want to use twilio as TURN/STUN server provider\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_company__number_of_digits_to_match_from_end\n#: model:ir.model.fields,help:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"\"\n\"In several situations, Odoo will have to find a Partner/Lead/Employee/... \"\n\"from a phone number presented by the calling party. As the phone numbers \"\n\"presented by your phone operator may not always be displayed in a standard \"\n\"format, the best method to find the related Partner/Lead/Employee/... in \"\n\"Odoo is to try to match the end of the phone number in Odoo with the N last \"\n\"digits of the phone number presented by the calling party. N is the value \"\n\"you should enter in this field.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"Incoming calls\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__is_root_company\nmsgid \"Is Root Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_ldap\nmsgid \"LDAP Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_uid\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__write_date\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_account_inter_company_rules\nmsgid \"Manage Inter Company\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__google_translate_api_key\nmsgid \"Message Translation API Key\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Missing country on company %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields.selection,name:base_phone.selection__number_not_found__number_type__mobile\nmsgid \"Mobile\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__group_multi_currency\nmsgid \"Multi-Currencies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number Not Found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Number converted to international format:\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Number dialed: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_number_not_found\nmsgid \"Number not found\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__active_user_count\nmsgid \"Number of Active Users\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__company_count\nmsgid \"Number of Companies\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__number_of_digits_to_match_from_end\n#: model:ir.model.fields,field_description:base_phone.field_res_config_settings__number_of_digits_to_match_from_end\nmsgid \"Number of Digits\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_res_company__number_of_digits_to_match_from_end\nmsgid \"Number of Digits To Match From End\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__language_count\nmsgid \"Number of Languages\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_partner_autocomplete\nmsgid \"Partner Autocomplete\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner on which the phone number will be written\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_number_not_found__to_update_partner_id\nmsgid \"Partner to Update\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Partner: %s\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:res.groups,name:base_phone.group_callerid\nmsgid \"Phone CallerID\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_phone_validation_mixin\nmsgid \"Phone Validation Mixin\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_number_not_found__calling_number\nmsgid \"\"\n\"Phone number of calling party that has been obtained from the telephony \"\n\"server, in the format used by the telephony server (not E.164).\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__phonenumbers_not_reformatted\nmsgid \"Phone numbers that couldn't be reformatted\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Phone numbers that couldn't be reformatted:\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__profiling_enabled_until\nmsgid \"Profiling enabled until\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action\n#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu\nmsgid \"Reformat Phone Numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"Reformat all phone numbers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"Restrict Template Rendering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_url\nmsgid \"SFU Server URL\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__sfu_server_key\nmsgid \"SFU Server key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_sms\nmsgid \"SMS\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-python\n#: code:addons/base_phone/wizard/number_not_found.py:0\nmsgid \"Select the Partner to Update.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\nmsgid \"\"\n\"Set how many digits must be identical from the end of the phone number to \"\n\"declare it as a match with a partner, a lead, an employee, a candidate, etc.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__show_effect\nmsgid \"Show Effect\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_gmail\nmsgid \"Support Gmail Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_microsoft_outlook\nmsgid \"Support Outlook Authentication\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.ui.menu,name:base_phone.menu_config_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.res_config_settings_view_form\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.view_users_form\nmsgid \"Telephony Preferences\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__auth_signup_template_user_id\nmsgid \"Template user for new users created through signup\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_api_key\nmsgid \"Tenor API key\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_gif_limit\nmsgid \"Tenor Gif Limit\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"Tenor content filter\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__company_country_code\nmsgid \"\"\n\"The ISO country code in two chars. \\n\"\n\"You can use this field for quick search.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.constraint,message:base_phone.constraint_res_company_number_of_digits_to_match_from_end_positive\nmsgid \"\"\n\"The value of the field 'Number of Digits To Match From End' must be positive.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.reformat_all_phonenumbers_form\nmsgid \"\"\n\"This wizard reformats the phone and mobile numbers of all partners in \"\n\"standard international format e.g. +33 1 41 98 12 42\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_token\nmsgid \"Twilio Account Auth Token\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__twilio_account_sid\nmsgid \"Twilio Account SID\"\nmsgstr \"\"\n\n#. module: base_phone\n#. odoo-javascript\n#: code:addons/base_phone/static/src/components/on_dial_button/on_dial_button.esm.js:0\nmsgid \"Unhook your ringing phone\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_web_unsplash\nmsgid \"Unsplash Image Library\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model_terms:ir.ui.view,arch_db:base_phone.number_not_found_form\nmsgid \"Update Existing Partner\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__external_email_server_default\nmsgid \"Use Custom Email Servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__use_twilio_rtc_servers\nmsgid \"Use Twilio ICE servers\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_auth_oauth\nmsgid \"Use external authentication providers (OAuth)\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__restrict_template_rendering\nmsgid \"\"\n\"Users will still be able to render templates.\\n\"\n\"However only Mail Template Editors will be able to create new dynamic \"\n\"templates or modify existing ones.\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_voip\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__web_app_name\nmsgid \"Web App Name\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,help:base_phone.field_reformat_all_phonenumbers__tenor_content_filter\nmsgid \"https://developers.google.com/tenor/guides/content-filtering\"\nmsgstr \"\"\n\n#. module: base_phone\n#: model:ir.model.fields,field_description:base_phone.field_reformat_all_phonenumbers__module_google_recaptcha\nmsgid \"reCAPTCHA\"\nmsgstr \"\"\n"
  },
  {
    "path": "base_phone/models/__init__.py",
    "content": "from . import phone_validation_mixin\nfrom . import res_company\nfrom . import res_partner\nfrom . import phone_common\n"
  },
  {
    "path": "base_phone/models/ir_fields_converter.py",
    "content": "# Copyright 2016-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, models\n\n\nclass IrFieldsConverter(models.AbstractModel):\n    _inherit = \"ir.fields.converter\"\n\n    @api.model\n    def _str_to_phone(self, model, field, value):\n        return super()._str_to_char(model, field, value)\n"
  },
  {
    "path": "base_phone/models/phone_common.py",
    "content": "# Copyright 2010-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nimport logging\n\nfrom odoo import api, models\n\n_logger = logging.getLogger(__name__)\n\ntry:\n    import phonenumbers\nexcept ImportError:\n    _logger.debug(\"Cannot `import phonenumbers`.\")\n\n\nclass PhoneCommon(models.AbstractModel):\n    _name = \"phone.common\"\n    _description = \"Common methods for phone features\"\n\n    @api.model\n    def get_name_from_phone_number(self, presented_number):\n        \"\"\"Function to get name from phone number. Usefull for use from IPBX\n        to add CallerID name to incoming calls.\"\"\"\n        res = self.get_record_from_phone_number(presented_number)\n        return res[2] if res else False\n\n    @api.model\n    def get_record_from_phone_number(self, presented_number):\n        \"\"\"If it finds something, it returns (object name, ID, record name)\n        For example : ('res.partner', 42, 'Alexis de Lattre (Akretion)')\n        \"\"\"\n        _logger.debug(\n            f\"Call get_name_from_phone_number with number = {presented_number}\"\n        )\n        if not isinstance(presented_number, str):\n            _logger.warning(\n                f\"Number {presented_number} should be a 'str' but it is a\"\n                f\" {type(presented_number)}\"\n            )\n            return False\n        if not presented_number.isdigit():\n            _logger.warning(f\"Number '{presented_number}' should only contain digits.\")\n\n        nr_digits_to_match_from_end = (\n            self.env.company.number_of_digits_to_match_from_end\n        )\n        if len(presented_number) >= nr_digits_to_match_from_end:\n            end_number_to_match = presented_number[\n                -nr_digits_to_match_from_end : len(presented_number)\n            ]\n        else:\n            end_number_to_match = presented_number\n\n        sorted_phonemodels = self._get_phone_models()\n        for obj_dict in sorted_phonemodels:\n            obj = obj_dict[\"object\"]\n            pg_search_number = \"%\" + end_number_to_match\n            _logger.debug(\n                f\"Will search phone and mobile \"\n                f\"numbers in {obj._name} ending \"\n                f\"with '{end_number_to_match}'\"\n            )\n            sql = f\"SELECT id FROM {obj._table} WHERE \"\n            sql_where = []\n            sql_args = []\n            for field in obj_dict[\"fields\"]:\n                sql_where.append(f\"replace({field}, ' ', '') ilike %s\")\n                sql_args.append(pg_search_number)\n            sql += \" or \".join(sql_where)\n            _logger.debug(f\"get_record_from_phone_number sql={sql} sql_args={sql_args}\")\n            self._cr.execute(sql, tuple(sql_args))\n            res_sql = self._cr.fetchall()\n            if len(res_sql) > 1:\n                res_ids = [x[0] for x in res_sql]\n                _logger.warning(\n                    f\"There are several {obj._name} (IDS = {res_ids}) \"\n                    f\"with a phone number \"\n                    f\"ending with '{end_number_to_match}'. \"\n                    f\"Taking the first one.\"\n                )\n            if res_sql:\n                obj_id = res_sql[0][0]\n                res_obj = obj.browse(obj_id)\n                # Use name_get()[0][1] instead of display_name\n                # to take the context into account with the callerid key\n                res_obj.fetch([\"display_name\"])\n                name = res_obj.display_name\n                res = (obj._name, res_obj.id, name)\n                _logger.debug(\n                    f\"Answer \"\n                    f\"get_record_from_phone_number: ({res[0]}, {res[1]}, {res[2]})\"\n                )\n                return res\n            else:\n                _logger.debug(\n                    f\"No match on {obj._name} for end \"\n                    f\"of phone number '{end_number_to_match}'\"\n                )\n        return False\n\n    @api.model\n    def _get_phone_models(self):\n        phoneobj = []\n        for model_name in self.env.registry.keys():\n            senv = False\n            try:\n                senv = self.with_context(callerid=True).env[model_name]\n            except Exception:\n                continue\n            if (\n                hasattr(senv, \"_phone_name_sequence\")\n                and isinstance(senv._phone_name_sequence, int)\n                and hasattr(senv, \"_phone_name_fields\")\n                and isinstance(senv._phone_name_fields, list)\n            ):\n                cdict = {\n                    \"object\": senv,\n                    \"fields\": senv._phone_name_fields,\n                }\n                phoneobj.append((senv._phone_name_sequence, cdict))\n\n        phoneobj_sorted = sorted(phoneobj, key=lambda element: element[0])\n        res = []\n        for lambd in phoneobj_sorted:\n            res.append(lambd[1])\n        # [{'fields': ['phone', 'mobile'], 'object': res.partner()},\n        #  {'fields': ['phone', 'mobile'], 'object': crm.lead()}]\n        return res\n\n    @api.model\n    def click2dial(self, erp_number):\n        \"\"\"This function is designed to be overridden in IPBX-specific\n        modules, such as asterisk_click2dial or ovh_telephony_connector\"\"\"\n        return {\"dialed_number\": erp_number}\n\n    @api.model\n    def convert_to_dial_number(self, erp_number):\n        \"\"\"\n        This function is dedicated to the transformation of the number\n        available in Odoo to the number that can be dialed.\n        You may have to inherit this function in another module specific\n        for your company if you are not happy with the way I reformat\n        the numbers.\n        \"\"\"\n        assert erp_number, \"Missing phone number\"\n        _logger.debug(f\"Number before reformat = {erp_number}\")\n        # erp_number are supposed to be in International format, so no need to\n        # give a country code here\n        parsed_num = phonenumbers.parse(erp_number, None)\n        country_code = self.env.company.country_id.code\n        assert country_code, \"Missing country on company\"\n        _logger.debug(f\"Country code = {country_code}\")\n        to_dial_number = phonenumbers.format_out_of_country_calling_number(\n            parsed_num, country_code.upper()\n        )\n        to_dial_number = to_dial_number.translate(\n            to_dial_number.maketrans(\"\", \"\", \" -.()/\")\n        )\n        _logger.debug(f\"Number to be sent to phone system: {to_dial_number}\")\n        return to_dial_number\n"
  },
  {
    "path": "base_phone/models/phone_validation_mixin.py",
    "content": "# Copyright 2018-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n\nfrom odoo import models\n\nfrom odoo.addons.phone_validation.tools import phone_validation\n\n\nclass PhoneValidationMixin(models.AbstractModel):\n    _name = \"phone.validation.mixin\"\n    _description = \"Phone Validation Mixin\"\n\n    def _phone_validation_get_country(self):\n        if \"country_id\" in self and self.country_id:\n            return self.country_id\n        if \"partner_id\" in self and self.partner_id and self.partner_id.country_id:\n            return self.partner_id.country_id\n        return self.env.company.country_id\n\n    def phone_format(self, number, country=None, company=None):\n        country = country or self._phone_validation_get_country()\n        if not country:\n            return number\n        return phone_validation.phone_format(\n            number,\n            country.code if country else None,\n            country.phone_code if country else None,\n            force_format=\"INTERNATIONAL\",\n            raise_exception=False,\n        )\n"
  },
  {
    "path": "base_phone/models/res_company.py",
    "content": "# Copyright 2016-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass ResCompany(models.Model):\n    _inherit = \"res.company\"\n\n    number_of_digits_to_match_from_end = fields.Integer(\n        string=\"Number of Digits To Match From End\",\n        default=8,\n        help=\"In several situations, Odoo will have to find a \"\n        \"Partner/Lead/Employee/... from a phone number presented by the \"\n        \"calling party. As the phone numbers presented by your phone \"\n        \"operator may not always be displayed in a standard format, \"\n        \"the best method to find the related Partner/Lead/Employee/... \"\n        \"in Odoo is to try to match the end of the phone number in \"\n        \"Odoo with the N last digits of the phone number presented \"\n        \"by the calling party. N is the value you should enter in this \"\n        \"field.\",\n    )\n\n    _sql_constraints = [\n        (\n            \"number_of_digits_to_match_from_end_positive\",\n            \"CHECK (number_of_digits_to_match_from_end > 0)\",\n            \"The value of the field 'Number of Digits To Match From End' must \"\n            \"be positive.\",\n        )\n    ]\n"
  },
  {
    "path": "base_phone/models/res_partner.py",
    "content": "# Copyright 2016-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n\nfrom odoo import api, models\n\n\nclass ResPartner(models.Model):\n    _name = \"res.partner\"\n    # inherit on phone.validation.mixin (same as in crm_phone_validation,\n    # but base_phone only depends on phone_validation,\n    # not on crm_phone_validation)\n    _inherit = [\"res.partner\", \"phone.validation.mixin\"]\n    _phone_name_sequence = 10\n    _phone_name_fields = [\"phone\", \"mobile\"]\n\n    @api.depends(\"name\")\n    @api.depends_context(\"callerid\")\n    def _compute_display_name(self):\n        if self._context.get(\"callerid\"):\n            for partner in self:\n                if partner.parent_id and partner.parent_id.is_company:\n                    name = f\"{partner.parent_id.name}, {partner.name}\"\n                else:\n                    name = partner.name or \"\"\n                partner.display_name = name\n\n        return super()._compute_display_name()\n"
  },
  {
    "path": "base_phone/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "base_phone/readme/CONTRIBUTORS.md",
    "content": "- Alexis de Lattre \\<<alexis.delattre@akretion.com>\\>\n- Sébastien Beau \\<<sebastien.beau@akretion.com>\\>\n- [Dixmit](https://www.dixmit.com):\n  - Luis David Rodríguez\n  - Enric Tobella\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\n  - Bhavesh Heliconia\n\n"
  },
  {
    "path": "base_phone/readme/DESCRIPTION.md",
    "content": "This module provides common methods and wizards which can be useful to\ndevelop a connector between Odoo and a telephony system. It depends on\nthe official module *phone_validation* which handle the reformatting of\nphone numbers using the\n[phonenumbers](https://github.com/daviddrysdale/python-phonenumbers)\nPython library, which is a port of the library used in Android\nsmartphones. For example, if your user is linked to a French company and\nyou update the form view of a partner with a badly written French phone\nnumber such as '01-55-42-12-42', Odoo will automatically update the\nphone number to [E.164](https://en.wikipedia.org/wiki/E.164) format\n'+33155421242'. This module extends this reformatting to create() and\nwrite() methods.\n\nThis module is used by the Odoo-Asterisk connector of the OCA.\n"
  },
  {
    "path": "base_phone/requirements.txt",
    "content": "phonenumbers\n"
  },
  {
    "path": "base_phone/security/ir.model.access.csv",
    "content": "id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink\ncallerid_res_partner_read,Read access on res.partner,base.model_res_partner,group_callerid,1,0,0,0\nreformat_all_phone_number_access,Reformat All phone number access,model_reformat_all_phonenumbers,base.group_system,1,1,1,1\naccess_partner_not_found,Access Partner not found wizard,model_number_not_found,base.group_partner_manager,1,1,1,1\n"
  },
  {
    "path": "base_phone/security/phone_security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!--\n  Base Phone module for Odoo/OpenERP\n  Copyright (C) 2010-2014 Alexis de Lattre <alexis@via.ecp.fr>\n  The licence is in the file __openerp__.py\n-->\n<odoo noupdate=\"1\">\n    <!-- New group dedicated to the \"Get CallerID name from OpenERP\" feature -->\n    <record id=\"group_callerid\" model=\"res.groups\">\n        <field name=\"name\">Phone CallerID</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "base_phone/static/description/index.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n<meta name=\"generator\" content=\"Docutils: https://docutils.sourceforge.io/\" />\n<title>Base Phone</title>\n<style type=\"text/css\">\n\n/*\n:Author: David Goodger (goodger@python.org)\n:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $\n:Copyright: This stylesheet has been placed in the public domain.\n\nDefault cascading style sheet for the HTML output of Docutils.\nDespite the name, some widely supported CSS2 features are used.\n\nSee https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to\ncustomize this style sheet.\n*/\n\n/* used to remove borders from tables and images */\n.borderless, table.borderless td, table.borderless th {\n  border: 0 }\n\ntable.borderless td, table.borderless th {\n  /* Override padding for \"table.docutils td\" with \"! important\".\n     The right padding separates the table cells. */\n  padding: 0 0.5em 0 0 ! important }\n\n.first {\n  /* Override more specific margin styles with \"! important\". */\n  margin-top: 0 ! important }\n\n.last, .with-subtitle {\n  margin-bottom: 0 ! important }\n\n.hidden {\n  display: none }\n\n.subscript {\n  vertical-align: sub;\n  font-size: smaller }\n\n.superscript {\n  vertical-align: super;\n  font-size: smaller }\n\na.toc-backref {\n  text-decoration: none ;\n  color: black }\n\nblockquote.epigraph {\n  margin: 2em 5em ; }\n\ndl.docutils dd {\n  margin-bottom: 0.5em }\n\nobject[type=\"image/svg+xml\"], object[type=\"application/x-shockwave-flash\"] {\n  overflow: hidden;\n}\n\n/* Uncomment (and remove this text!) to get bold-faced definition list terms\ndl.docutils dt {\n  font-weight: bold }\n*/\n\ndiv.abstract {\n  margin: 2em 5em }\n\ndiv.abstract p.topic-title {\n  font-weight: bold ;\n  text-align: center }\n\ndiv.admonition, div.attention, div.caution, div.danger, div.error,\ndiv.hint, div.important, div.note, div.tip, div.warning {\n  margin: 2em ;\n  border: medium outset ;\n  padding: 1em }\n\ndiv.admonition p.admonition-title, div.hint p.admonition-title,\ndiv.important p.admonition-title, div.note p.admonition-title,\ndiv.tip p.admonition-title {\n  font-weight: bold ;\n  font-family: sans-serif }\n\ndiv.attention p.admonition-title, div.caution p.admonition-title,\ndiv.danger p.admonition-title, div.error p.admonition-title,\ndiv.warning p.admonition-title, .code .error {\n  color: red ;\n  font-weight: bold ;\n  font-family: sans-serif }\n\n/* Uncomment (and remove this text!) to get reduced vertical space in\n   compound paragraphs.\ndiv.compound .compound-first, div.compound .compound-middle {\n  margin-bottom: 0.5em }\n\ndiv.compound .compound-last, div.compound .compound-middle {\n  margin-top: 0.5em }\n*/\n\ndiv.dedication {\n  margin: 2em 5em ;\n  text-align: center ;\n  font-style: italic }\n\ndiv.dedication p.topic-title {\n  font-weight: bold ;\n  font-style: normal }\n\ndiv.figure {\n  margin-left: 2em ;\n  margin-right: 2em }\n\ndiv.footer, div.header {\n  clear: both;\n  font-size: smaller }\n\ndiv.line-block {\n  display: block ;\n  margin-top: 1em ;\n  margin-bottom: 1em }\n\ndiv.line-block div.line-block {\n  margin-top: 0 ;\n  margin-bottom: 0 ;\n  margin-left: 1.5em }\n\ndiv.sidebar {\n  margin: 0 0 0.5em 1em ;\n  border: medium outset ;\n  padding: 1em ;\n  background-color: #ffffee ;\n  width: 40% ;\n  float: right ;\n  clear: right }\n\ndiv.sidebar p.rubric {\n  font-family: sans-serif ;\n  font-size: medium }\n\ndiv.system-messages {\n  margin: 5em }\n\ndiv.system-messages h1 {\n  color: red }\n\ndiv.system-message {\n  border: medium outset ;\n  padding: 1em }\n\ndiv.system-message p.system-message-title {\n  color: red ;\n  font-weight: bold }\n\ndiv.topic {\n  margin: 2em }\n\nh1.section-subtitle, h2.section-subtitle, h3.section-subtitle,\nh4.section-subtitle, h5.section-subtitle, h6.section-subtitle {\n  margin-top: 0.4em }\n\nh1.title {\n  text-align: center }\n\nh2.subtitle {\n  text-align: center }\n\nhr.docutils {\n  width: 75% }\n\nimg.align-left, .figure.align-left, object.align-left, table.align-left {\n  clear: left ;\n  float: left ;\n  margin-right: 1em }\n\nimg.align-right, .figure.align-right, object.align-right, table.align-right {\n  clear: right ;\n  float: right ;\n  margin-left: 1em }\n\nimg.align-center, .figure.align-center, object.align-center {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n\ntable.align-center {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.align-left {\n  text-align: left }\n\n.align-center {\n  clear: both ;\n  text-align: center }\n\n.align-right {\n  text-align: right }\n\n/* reset inner alignment in figures */\ndiv.align-right {\n  text-align: inherit }\n\n/* div.align-center * { */\n/*   text-align: left } */\n\n.align-top    {\n  vertical-align: top }\n\n.align-middle {\n  vertical-align: middle }\n\n.align-bottom {\n  vertical-align: bottom }\n\nol.simple, ul.simple {\n  margin-bottom: 1em }\n\nol.arabic {\n  list-style: decimal }\n\nol.loweralpha {\n  list-style: lower-alpha }\n\nol.upperalpha {\n  list-style: upper-alpha }\n\nol.lowerroman {\n  list-style: lower-roman }\n\nol.upperroman {\n  list-style: upper-roman }\n\np.attribution {\n  text-align: right ;\n  margin-left: 50% }\n\np.caption {\n  font-style: italic }\n\np.credits {\n  font-style: italic ;\n  font-size: smaller }\n\np.label {\n  white-space: nowrap }\n\np.rubric {\n  font-weight: bold ;\n  font-size: larger ;\n  color: maroon ;\n  text-align: center }\n\np.sidebar-title {\n  font-family: sans-serif ;\n  font-weight: bold ;\n  font-size: larger }\n\np.sidebar-subtitle {\n  font-family: sans-serif ;\n  font-weight: bold }\n\np.topic-title {\n  font-weight: bold }\n\npre.address {\n  margin-bottom: 0 ;\n  margin-top: 0 ;\n  font: inherit }\n\npre.literal-block, pre.doctest-block, pre.math, pre.code {\n  margin-left: 2em ;\n  margin-right: 2em }\n\npre.code .ln { color: gray; } /* line numbers */\npre.code, code { background-color: #eeeeee }\npre.code .comment, code .comment { color: #5C6576 }\npre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }\npre.code .literal.string, code .literal.string { color: #0C5404 }\npre.code .name.builtin, code .name.builtin { color: #352B84 }\npre.code .deleted, code .deleted { background-color: #DEB0A1}\npre.code .inserted, code .inserted { background-color: #A3D289}\n\nspan.classifier {\n  font-family: sans-serif ;\n  font-style: oblique }\n\nspan.classifier-delimiter {\n  font-family: sans-serif ;\n  font-weight: bold }\n\nspan.interpreted {\n  font-family: sans-serif }\n\nspan.option {\n  white-space: nowrap }\n\nspan.pre {\n  white-space: pre }\n\nspan.problematic, pre.problematic {\n  color: red }\n\nspan.section-subtitle {\n  /* font-size relative to parent (h1..h6 element) */\n  font-size: 80% }\n\ntable.citation {\n  border-left: solid 1px gray;\n  margin-left: 1px }\n\ntable.docinfo {\n  margin: 2em 4em }\n\ntable.docutils {\n  margin-top: 0.5em ;\n  margin-bottom: 0.5em }\n\ntable.footnote {\n  border-left: solid 1px black;\n  margin-left: 1px }\n\ntable.docutils td, table.docutils th,\ntable.docinfo td, table.docinfo th {\n  padding-left: 0.5em ;\n  padding-right: 0.5em ;\n  vertical-align: top }\n\ntable.docutils th.field-name, table.docinfo th.docinfo-name {\n  font-weight: bold ;\n  text-align: left ;\n  white-space: nowrap ;\n  padding-left: 0 }\n\n/* \"booktabs\" style (no vertical lines) */\ntable.docutils.booktabs {\n  border: 0px;\n  border-top: 2px solid;\n  border-bottom: 2px solid;\n  border-collapse: collapse;\n}\ntable.docutils.booktabs * {\n  border: 0px;\n}\ntable.docutils.booktabs th {\n  border-bottom: thin solid;\n  text-align: left;\n}\n\nh1 tt.docutils, h2 tt.docutils, h3 tt.docutils,\nh4 tt.docutils, h5 tt.docutils, h6 tt.docutils {\n  font-size: 100% }\n\nul.auto-toc {\n  list-style-type: none }\n\n</style>\n</head>\n<body>\n<div class=\"document\" id=\"base-phone\">\n<h1 class=\"title\">Base Phone</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:1685f77c2ab6988da842ee87e52d46d4e55bcd2c6bdbe568a730f0f352e2f133\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->\n<p><a class=\"reference external image-reference\" href=\"https://odoo-community.org/page/development-status\"><img alt=\"Beta\" src=\"https://img.shields.io/badge/maturity-Beta-yellow.png\" /></a> <a class=\"reference external image-reference\" href=\"http://www.gnu.org/licenses/agpl-3.0-standalone.html\"><img alt=\"License: AGPL-3\" src=\"https://img.shields.io/badge/licence-AGPL--3-blue.png\" /></a> <a class=\"reference external image-reference\" href=\"https://github.com/OCA/connector-telephony/tree/18.0/base_phone\"><img alt=\"OCA/connector-telephony\" src=\"https://img.shields.io/badge/github-OCA%2Fconnector--telephony-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/connector-telephony-18-0/connector-telephony-18-0-base_phone\"><img alt=\"Translate me on Weblate\" src=\"https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\" /></a> <a class=\"reference external image-reference\" href=\"https://runboat.odoo-community.org/builds?repo=OCA/connector-telephony&amp;target_branch=18.0\"><img alt=\"Try me on Runboat\" src=\"https://img.shields.io/badge/runboat-Try%20me-875A7B.png\" /></a></p>\n<p>This module provides common methods and wizards which can be useful to\ndevelop a connector between Odoo and a telephony system. It depends on\nthe official module <em>phone_validation</em> which handle the reformatting of\nphone numbers using the\n<a class=\"reference external\" href=\"https://github.com/daviddrysdale/python-phonenumbers\">phonenumbers</a>\nPython library, which is a port of the library used in Android\nsmartphones. For example, if your user is linked to a French company and\nyou update the form view of a partner with a badly written French phone\nnumber such as ‘01-55-42-12-42’, Odoo will automatically update the\nphone number to <a class=\"reference external\" href=\"https://en.wikipedia.org/wiki/E.164\">E.164</a> format\n‘+33155421242’. This module extends this reformatting to create() and\nwrite() methods.</p>\n<p>This module is used by the Odoo-Asterisk connector of the OCA.</p>\n<p><strong>Table of contents</strong></p>\n<div class=\"contents local topic\" id=\"contents\">\n<ul class=\"simple\">\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-1\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-2\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-3\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-4\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-5\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/connector-telephony/issues\">GitHub Issues</a>.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us to smash it by providing a detailed and welcomed\n<a class=\"reference external\" href=\"https://github.com/OCA/connector-telephony/issues/new?body=module:%20base_phone%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**\">feedback</a>.</p>\n<p>Do not contact contributors directly about support or help with technical issues.</p>\n</div>\n<div class=\"section\" id=\"credits\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Akretion</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Alexis de Lattre &lt;<a class=\"reference external\" href=\"mailto:alexis.delattre&#64;akretion.com\">alexis.delattre&#64;akretion.com</a>&gt;</li>\n<li>Sébastien Beau &lt;<a class=\"reference external\" href=\"mailto:sebastien.beau&#64;akretion.com\">sebastien.beau&#64;akretion.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.dixmit.com\">Dixmit</a>:<ul>\n<li>Luis David Rodríguez</li>\n<li>Enric Tobella</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://www.heliconia.io\">Heliconia Solutions Pvt. Ltd.</a><ul>\n<li>Bhavesh Heliconia</li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-5\">Maintainers</a></h2>\n<p>This module is maintained by the OCA.</p>\n<a class=\"reference external image-reference\" href=\"https://odoo-community.org\">\n<img alt=\"Odoo Community Association\" src=\"https://odoo-community.org/logo.png\" />\n</a>\n<p>OCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.</p>\n<p>Current <a class=\"reference external\" href=\"https://odoo-community.org/page/maintainer-role\">maintainer</a>:</p>\n<p><a class=\"reference external image-reference\" href=\"https://github.com/alexis-via\"><img alt=\"alexis-via\" src=\"https://github.com/alexis-via.png?size=40px\" /></a></p>\n<p>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/connector-telephony/tree/18.0/base_phone\">OCA/connector-telephony</a> project on GitHub.</p>\n<p>You are welcome to contribute. To learn how please visit <a class=\"reference external\" href=\"https://odoo-community.org/page/Contribute\">https://odoo-community.org/page/Contribute</a>.</p>\n</div>\n</div>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "base_phone/static/src/components/on_dial_button/on_dial_button.esm.js",
    "content": "/*\n    Copyright 2024 Dixmit\n    License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n*/\n\nimport {Component} from \"@odoo/owl\";\nimport {_t} from \"@web/core/l10n/translation\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class OnDialButton extends Component {\n    static template = \"base_phone.OnDialButton\";\n    static props = [\"*\"];\n    setup() {\n        this.notification = useService(\"notification\");\n        this.title = _t(\"Dial phone\");\n        this.orm = useService(\"orm\");\n    }\n    async onClick() {\n        await this.props.record.save();\n        this.click2dial(this.props.record.data[this.props.name].replace(/\\s+/g, \"\"));\n    }\n    click2dial(phone_num) {\n        this.notification.add(_t(\"Unhook your ringing phone\"), {\n            title: _t(\"Click2dial to %s\", phone_num),\n            type: \"info\",\n        });\n\n        const params = {\n            phone_number: phone_num,\n            click2dial_model: this.model,\n            click2dial_id: this.res_id,\n        };\n\n        return this.orm\n            .call(\"phone.common\", \"click2dial\", [phone_num], {\n                context: params,\n            })\n            .then(\n                (r) => {\n                    if (r === false) {\n                        this.notification.add(\"Click2dial failed\", {\n                            type: \"danger\",\n                        });\n                    } else if (typeof r === \"object\") {\n                        this.notification.add(\n                            _t(\"Number dialed: %s\", r.dialed_number),\n                            {\n                                title: _t(\"Click2dial successfull\"),\n                                type: \"success\",\n                            }\n                        );\n                        if (r.action_model) {\n                            const action = {\n                                name: r.action_name,\n                                type: \"ir.actions.act_window\",\n                                res_model: r.action_model,\n                                view_mode: \"form\",\n                                views: [[false, \"form\"]],\n                                target: \"new\",\n                                context: params,\n                            };\n                            return this.do_action(action);\n                        }\n                    }\n                },\n                () => {\n                    this.notification.add(\"Click2dial failed\", {\n                        type: \"danger\",\n                    });\n                }\n            );\n    }\n}\n"
  },
  {
    "path": "base_phone/static/src/components/on_dial_button/on_dial_button.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<templates xml:space=\"preserve\">\n\n    <!-- Copyright 2024 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n\n    <t t-name=\"base_phone.OnDialButton\">\n        <a\n            t-att-title=\"title\"\n            t-on-click.prevent.stop=\"onClick\"\n            class=\"ms-3 d-inline-flex align-items-center cursor-pointer o_field_phone_dial\"\n        >\n            <i class=\"fa fa-phone-square\" />\n            <small class=\"fw-bold ms-1\">Dial</small>\n        </a>\n    </t>\n\n</templates>\n"
  },
  {
    "path": "base_phone/static/src/components/phone_field/phone_field.esm.js",
    "content": "/*\n    Copyright 2024 Dixmit\n    License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n*/\n\nimport {OnDialButton} from \"@base_phone/components/on_dial_button/on_dial_button.esm\";\nimport {PhoneField} from \"@web/views/fields/phone/phone_field\";\nimport {patch} from \"@web/core/utils/patch\";\n\npatch(PhoneField, {\n    components: {\n        ...PhoneField.components,\n        OnDialButton,\n    },\n});\n"
  },
  {
    "path": "base_phone/static/src/components/phone_field/phone_field.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<templates xml:space=\"preserve\">\n\n    <!-- Copyright 2024 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n\n    <t t-inherit=\"web.PhoneField\" t-inherit-mode=\"extension\">\n        <xpath expr=\"//div[hasclass('o_phone_content')]//a\" position=\"after\">\n            <t t-if=\"props.record.data[props.name].length > 0\">\n                <OnDialButton t-props=\"props\" />\n            </t>\n        </xpath>\n    </t>\n\n    <t t-inherit=\"web.FormPhoneField\" t-inherit-mode=\"extension\">\n        <xpath expr=\"//div[hasclass('o_phone_content')]\" position=\"inside\">\n            <t t-if=\"props.record.data[props.name].length > 0\">\n                <OnDialButton t-props=\"props\" />\n            </t>\n        </xpath>\n    </t>\n\n</templates>\n"
  },
  {
    "path": "base_phone/tests/__init__.py",
    "content": "from . import test_base_phone\n"
  },
  {
    "path": "base_phone/tests/test_base_phone.py",
    "content": "# Copyright 2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).\n\nfrom odoo.addons.base.tests.common import BaseCommon\n\n\nclass TestBasePhone(BaseCommon):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        cls.fr_country_id = cls.env.ref(\"base.fr\").id\n        cls.phco = cls.env[\"phone.common\"]\n        cls.env.company.write({\"country_id\": cls.fr_country_id})\n        cls.akretion = cls.env[\"res.partner\"].create(\n            {\n                \"name\": \"Akretion France\",\n                \"country_id\": cls.fr_country_id,\n                \"phone\": \"+33 4 78 32 32 32\",\n            }\n        )\n\n    def test_get_phone_model(self):\n        res = self.phco._get_phone_models()\n        self.assertIsInstance(res, list)\n        rpo = self.env[\"res.partner\"]\n        self.assertTrue(any([x[\"object\"] == rpo for x in res]))\n        for entry in res:\n            self.assertIsInstance(entry.get(\"fields\"), list)\n\n    def test_lookup(self):\n        res = self.phco.get_record_from_phone_number(\"0478323232\")\n        self.assertIsInstance(res, tuple)\n        self.assertEqual(res[0], \"res.partner\")\n        self.assertEqual(res[1], self.akretion.id)\n        self.assertEqual(res[2], self.akretion.with_context(callerid=True).display_name)\n        res = self.phco.get_record_from_phone_number(\"0499889988\")\n        self.assertFalse(res)\n\n    def test_to_dial(self):\n        phone_to_dial = self.phco.convert_to_dial_number(\"+33 4 78 99 88 77\")\n        self.assertEqual(phone_to_dial, \"0478998877\")\n        phone_to_dial = self.phco.convert_to_dial_number(\"+32 455 78 99 88\")\n        self.assertEqual(phone_to_dial, \"0032455789988\")\n\n    def test_partner_phone_formatting(self):\n        rpo = self.env[\"res.partner\"]\n        # Create an existing partner without country\n        partner1 = rpo.create(\n            {\n                \"name\": \"Pierre Paillet\",\n                \"phone\": \"04 72 08 87 32\",\n                \"mobile\": \"06 42 77 42 66\",\n            }\n        )\n        partner1._onchange_phone_validation()\n        partner1._onchange_mobile_validation()\n        self.assertEqual(partner1.phone, \"+33 4 72 08 87 32\")\n        self.assertEqual(partner1.mobile, \"+33 6 42 77 42 66\")\n        # Create a partner with country\n        parent_partner2 = rpo.create(\n            {\n                \"name\": \"C2C\",\n                \"country_id\": self.env.ref(\"base.ch\").id,\n                \"is_company\": True,\n            }\n        )\n        partner2 = rpo.create(\n            {\n                \"name\": \"Joël Grand-Guillaume\",\n                \"parent_id\": parent_partner2.id,\n                \"phone\": \"(0) 21 619 10 10\",\n                \"mobile\": \"(0) 79 606 42 42\",\n            }\n        )\n        partner2._onchange_phone_validation()\n        partner2._onchange_mobile_validation()\n        self.assertEqual(partner2.country_id, self.env.ref(\"base.ch\"))\n        self.assertEqual(partner2.phone, \"+41 21 619 10 10\")\n        self.assertEqual(partner2.mobile, \"+41 79 606 42 42\")\n        # Write on an existing partner\n        partner3 = rpo.create(\n            {\n                \"name\": \"Belgian corp\",\n                \"country_id\": self.env.ref(\"base.be\").id,\n                \"is_company\": True,\n            }\n        )\n        partner3.write({\"phone\": \"(0) 2 391 43 74\"})\n        partner3._onchange_phone_validation()\n        self.assertEqual(partner3.phone, \"+32 2 391 43 74\")\n        # Write on an existing partner with country at the same time\n        partner3.write(\n            {\n                \"phone\": \"04 72 89 32 43\",\n                \"country_id\": self.fr_country_id,\n            }\n        )\n        partner3._onchange_phone_validation()\n        self.assertEqual(partner3.phone, \"+33 4 72 89 32 43\")\n        # Test get_name_from_phone_number\n        pco = self.env[\"phone.common\"]\n        name = pco.get_name_from_phone_number(\"0642774266\")\n        self.assertEqual(name, \"Pierre Paillet\")\n        name2 = pco.get_name_from_phone_number(\"0041216191010\")\n        self.assertEqual(name2, \"C2C, Joël Grand-Guillaume\")\n"
  },
  {
    "path": "base_phone/views/res_users_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!--\n  Copyright 2010-2021 Akretion France (http://www.akretion.com/)\n  @author: Alexis de Lattre <alexis.delattre@akretion.com>\n  License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n-->\n<odoo>\n    <record id=\"view_users_form\" model=\"ir.ui.view\">\n        <field name=\"name\">base_phone.res.users.telephony_tab</field>\n        <field name=\"model\">res.users</field>\n        <field name=\"inherit_id\" ref=\"base.view_users_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <notebook position=\"inside\">\n                <page string=\"Telephony\" name=\"phone\" invisible=\"1\">\n                    <!-- Empty page, which will be used by other phone modules -->\n                    <group name=\"phone-preferences\" string=\"Telephony Preferences\" />\n                </page>\n            </notebook>\n        </field>\n    </record>\n    <record id=\"view_users_form_simple_modif\" model=\"ir.ui.view\">\n        <field name=\"name\">base_phone.user_preferences.view</field>\n        <field name=\"model\">res.users</field>\n        <field name=\"inherit_id\" ref=\"base.view_users_form_simple_modif\" />\n        <field name=\"arch\" type=\"xml\">\n            <group name=\"signature\" position=\"before\">\n                <group name=\"phone\" invisible=\"1\">\n                    <!-- Empty group, that is used by other phone modules\n                         We set it as invisible even if it is empty.\n                         That way, we can add a field in this group in crm_phone\n                         and have that field invisible. It is inherited by\n                         the module asterisk_click2dial to set it to invisible=0\n                    -->\n                </group>\n            </group>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "base_phone/wizard/__init__.py",
    "content": "from . import res_config_settings\nfrom . import reformat_all_phonenumbers\nfrom . import number_not_found\n"
  },
  {
    "path": "base_phone/wizard/number_not_found.py",
    "content": "# Copyright 2010-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nimport logging\n\nfrom odoo import api, fields, models\nfrom odoo.exceptions import UserError\n\n_logger = logging.getLogger(__name__)\n\ntry:\n    import phonenumbers\nexcept ImportError:\n    _logger.debug(\"Cannot `import phonenumbers`.\")\n\n\nclass NumberNotFound(models.TransientModel):\n    _name = \"number.not.found\"\n    _description = \"Number not found\"\n\n    calling_number = fields.Char(\n        size=64,\n        readonly=True,\n        help=\"Phone number of calling party that has been obtained from the \"\n        \"telephony server, in the format used by the telephony server (not \"\n        \"E.164).\",\n    )\n    e164_number = fields.Char(\n        string=\"E.164 Number\", size=64, help=\"E.164 equivalent of the calling number.\"\n    )\n    number_type = fields.Selection(\n        selection=[(\"phone\", \"Fixed\"), (\"mobile\", \"Mobile\")],\n        string=\"Fixed/Mobile\",\n        required=True,\n    )\n    to_update_partner_id = fields.Many2one(\n        comodel_name=\"res.partner\",\n        string=\"Partner to Update\",\n        help=\"Partner on which the phone number will be written\",\n    )\n    current_partner_phone = fields.Char(\n        related=\"to_update_partner_id.phone\", string=\"Current Phone\"\n    )\n    current_partner_mobile = fields.Char(\n        related=\"to_update_partner_id.mobile\", string=\"Current Mobile\"\n    )\n\n    @api.model\n    def default_get(self, fields_list):\n        res = super().default_get(fields_list) or {}\n\n        if res.get(\"calling_number\"):\n            if not self.env.company.country_id:\n                raise UserError(\n                    self.env._(\n                        \"Missing country on company %s\", self.env.company.display_name\n                    )\n                )\n\n            country_code = self.env.company.country_id.code\n            try:\n                parsed_num = phonenumbers.parse(res[\"calling_number\"], country_code)\n                res[\"e164_number\"] = phonenumbers.format_number(\n                    parsed_num, phonenumbers.PhoneNumberFormat.INTERNATIONAL\n                )\n                number_type = phonenumbers.number_type(parsed_num)\n                if number_type == 1:\n                    res[\"number_type\"] = \"mobile\"\n                else:\n                    res[\"number_type\"] = \"phone\"\n            except Exception as e:\n                _logger.error(\n                    \"Cannot reformat the phone number '%s': %s\",\n                    res[\"calling_number\"],\n                    e,\n                )\n        return res\n\n    def create_partner(self):\n        \"\"\"Function called by the related button of the wizard\"\"\"\n        self.ensure_one()\n        parsed_num = phonenumbers.parse(self.e164_number, None)\n        phonenumbers.number_type(parsed_num)\n\n        context = dict(self._context or {})\n        context[f\"default_{self.number_type}\"] = self.e164_number\n        action = {\n            \"name\": self.env._(\"Create New Partner\"),\n            \"view_mode\": \"form,tree,kanban\",\n            \"res_model\": \"res.partner\",\n            \"type\": \"ir.actions.act_window\",\n            \"target\": \"current\",\n            \"context\": context,\n        }\n        return action\n\n    def update_partner(self):\n        \"\"\"Function called by the related button of the wizard\"\"\"\n        self.ensure_one()\n        if not self.to_update_partner_id:\n            raise UserError(self.env._(\"Select the Partner to Update.\"))\n        self.to_update_partner_id.write({self.number_type: self.e164_number})\n        action = {\n            \"name\": self.env._(\"Partner: %s\") % self.to_update_partner_id.name,\n            \"type\": \"ir.actions.act_window\",\n            \"res_model\": \"res.partner\",\n            \"view_mode\": \"form,tree,kanban\",\n            \"target\": \"current\",\n            \"res_id\": self.to_update_partner_id.id,\n            \"context\": self._context,\n        }\n        return action\n"
  },
  {
    "path": "base_phone/wizard/number_not_found_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!--\n  Copyright 2012-2018 Akretion France\n  @author: Alexis de Lattre <alexis.delattre@akretion.com>\n  License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n-->\n<odoo>\n    <record id=\"number_not_found_form\" model=\"ir.ui.view\">\n        <field name=\"name\">number.not.found.form</field>\n        <field name=\"model\">number.not.found</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Number Not Found\">\n                <div class=\"oe_title\">\n                    <h1>\n                        <field name=\"calling_number\" />\n                    </h1>\n                    <label\n                        string=\"Number converted to international format:\"\n                        for=\"e164_number\"\n                    />\n                    <h2>\n                        <field name=\"e164_number\" />\n                    </h2>\n                    <label for=\"number_type\" />\n                    <h3>\n                        <field name=\"number_type\" />\n                    </h3>\n                </div>\n                <group colspan=\"4\" col=\"2\" name=\"create-update\">\n                    <group\n                        name=\"partner\"\n                        string=\"Create or Update a Partner\"\n                        colspan=\"1\"\n                        col=\"2\"\n                    >\n                        <button\n                            name=\"create_partner\"\n                            class=\"btn-primary\"\n                            colspan=\"2\"\n                            string=\"Create New Partner\"\n                            type=\"object\"\n                        />\n                        <field name=\"to_update_partner_id\" />\n                        <field\n                            name=\"current_partner_phone\"\n                            options=\"{'dial_button_invisible': True}\"\n                        />\n                        <field\n                            name=\"current_partner_mobile\"\n                            options=\"{'dial_button_invisible': True}\"\n                        />\n                        <button\n                            name=\"update_partner\"\n                            class=\"btn-primary\"\n                            colspan=\"2\"\n                            string=\"Update Existing Partner\"\n                            type=\"object\"\n                        />\n                    </group>\n                </group>\n                <footer>\n                    <button special=\"cancel\" string=\"Close\" class=\"btn-default\" />\n                </footer>\n            </form>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "base_phone/wizard/reformat_all_phonenumbers.py",
    "content": "# Copyright 2012-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nimport logging\n\nfrom odoo import fields, models\n\nlogger = logging.getLogger(__name__)\n\n\nclass ReformatAllPhonenumbers(models.TransientModel):\n    _name = \"reformat.all.phonenumbers\"\n    _inherit = \"res.config.settings\"\n    _description = \"Reformat all phone numbers\"\n\n    phonenumbers_not_reformatted = fields.Text(\n        string=\"Phone numbers that couldn't be reformatted\"\n    )\n    state = fields.Selection([(\"draft\", \"Draft\"), (\"done\", \"Done\")], default=\"draft\")\n\n    def run_reformat_all_phonenumbers(self):\n        self.ensure_one()\n        logger.info(\"Starting to reformat all the phone numbers\")\n        phonenumbers_not_reformatted = \"\"\n        phoneobjects = self.env[\"phone.common\"]._get_phone_models()\n        for obj_dict in phoneobjects:\n            fields = obj_dict[\"fields\"]\n            obj = obj_dict[\"object\"]\n            logger.info(\n                \"Starting to reformat phone numbers on object %s \" \"(fields = %s)\",\n                obj._name,\n                fields,\n            )\n            all_entries = obj.with_context(active_test=False).search([])\n\n            for entry in all_entries:\n                vals = {}\n                for field in fields:\n                    if entry[field]:\n                        new_phone = entry.phone_format(entry[field])\n                        if new_phone != entry[field]:\n                            vals[field] = new_phone\n                if vals:\n                    entry.write(vals)\n        # TODO: the warnings of the phone_format() methods are logged\n        # in the logfile... it would be great to get them and show them to\n        # the user... maybe via a rewrite of phone_format()\n        # with a raise_expcetion=True and catch the exception\n        if not phonenumbers_not_reformatted:\n            phonenumbers_not_reformatted = (\n                \"All phone numbers have been reformatted successfully.\"\n            )\n        self.write(\n            {\n                \"phonenumbers_not_reformatted\": phonenumbers_not_reformatted,\n                \"state\": \"done\",\n            }\n        )\n        logger.info(\"End of the phone number reformatting wizard\")\n        action = (\n            self.env.ref(\"base_phone.reformat_all_phonenumbers_action\").sudo().read()[0]\n        )\n        action[\"res_id\"] = self.id\n        return action\n"
  },
  {
    "path": "base_phone/wizard/reformat_all_phonenumbers_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!--\n  Copyright (C) 2012-2021 Akretion France (http://www.akretion.com/)\n  @author: Alexis de Lattre <alexis@via.ecp.fr>\n  License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n-->\n<odoo>\n    <record id=\"reformat_all_phonenumbers_form\" model=\"ir.ui.view\">\n        <field name=\"name\">reformat_all_phonenumbers.form</field>\n        <field name=\"model\">reformat.all.phonenumbers</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Reformat all phone numbers\">\n                <div invisible=\"state not in ('draft')\">\n                    This wizard reformats the phone and mobile numbers of all partners in standard international format e.g. +33 1 41 98 12 42\n                </div>\n\n                <div invisible=\"state not in ('done')\">\n                    Phone numbers that couldn't be reformatted:\n                </div>\n\n                <field\n                    name=\"phonenumbers_not_reformatted\"\n                    nolabel=\"1\"\n                    colspan=\"2\"\n                    invisible=\"state not in ('done')\"\n                    readonly=\"1\"\n                />\n\n                <footer>\n                    <button\n                        name=\"run_reformat_all_phonenumbers\"\n                        string=\"Reformat all phone numbers\"\n                        type=\"object\"\n                        class=\"btn-primary\"\n                        invisible=\"state not in ('draft')\"\n                    />\n                    <button\n                        name=\"execute\"\n                        type=\"object\"\n                        string=\"Close\"\n                        class=\"btn-primary\"\n                        invisible=\"state not in ('done')\"\n                    />\n                    <button\n                        special=\"cancel\"\n                        string=\"Cancel\"\n                        class=\"btn-default\"\n                        invisible=\"state not in ('draft')\"\n                    />\n                </footer>\n            </form>\n        </field>\n    </record>\n    <record id=\"reformat_all_phonenumbers_action\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Reformat Phone Numbers</field>\n        <field name=\"res_model\">reformat.all.phonenumbers</field>\n        <field name=\"view_mode\">form</field>\n        <field name=\"target\">new</field>\n    </record>\n    <!-- Menu entry under Settings > Technical -->\n    <menuitem id=\"menu_config_phone\" name=\"Telephony\" parent=\"base.menu_custom\" />\n    <menuitem\n        id=\"reformat_all_phonenumbers_menu\"\n        action=\"reformat_all_phonenumbers_action\"\n        parent=\"menu_config_phone\"\n        sequence=\"100\"\n    />\n    <!-- Open the Reformat Phone Numbers wizard after the installation of the module -->\n    <record id=\"reformat_all_phonenumbers_module_install\" model=\"ir.actions.todo\">\n        <field name=\"action_id\" ref=\"reformat_all_phonenumbers_action\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "base_phone/wizard/res_config_settings.py",
    "content": "# Copyright 2017-2021 Akretion France (http://www.akretion.com/)\n# @author: Alexis de Lattre <alexis.delattre@akretion.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass ResConfigSettings(models.TransientModel):\n    _inherit = \"res.config.settings\"\n\n    number_of_digits_to_match_from_end = fields.Integer(\n        string=\"Number of Digits\",\n        related=\"company_id.number_of_digits_to_match_from_end\",\n        readonly=False,\n    )\n"
  },
  {
    "path": "base_phone/wizard/res_config_settings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!--\n  Copyright 2014-2019 Akretion France (http://www.akretion.com/)\n  @author: Alexis de Lattre <alexis.delattre@akretion.com>\n  License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n-->\n<odoo>\n    <record id=\"res_config_settings_view_form\" model=\"ir.ui.view\">\n        <field name=\"name\">base_phone.base.config.settings.form</field>\n        <field name=\"model\">res.config.settings</field>\n        <field name=\"inherit_id\" ref=\"base_setup.res_config_settings_view_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <block id=\"user_default_rights\" position=\"after\">\n                <block id=\"telephony\" title=\"Telephony\">\n                    <setting\n                        id=\"account_uom\"\n                        string=\"Incoming calls\"\n                        help=\"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.\"\n                    >\n                        <div class=\"d-flex content-group mt16\">\n                            <label\n                                for=\"number_of_digits_to_match_from_end\"\n                                class=\"mr8\"\n                            />\n                            <field name=\"number_of_digits_to_match_from_end\" />\n                        </div>\n                    </setting>\n                </block>\n            </block>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "checklog-odoo.cfg",
    "content": "[checklog-odoo]\nignore=\n    WARNING.* 0 failed, 0 error\\(s\\).*\n    WARNING .* Killing chrome descendants-or-self .*\n    WARNING.* Missing widget: res_partner_many2one for field of type many2one.*\n"
  },
  {
    "path": "eslint.config.cjs",
    "content": "var globals = require('globals');\njsdoc = require(\"eslint-plugin-jsdoc\");\n\nconst config = [{\n    plugins: {\n      jsdoc,\n    },\n\n    languageOptions: {\n        globals: {\n            _: \"readonly\",\n            $: \"readonly\",\n            fuzzy: \"readonly\",\n            jQuery: \"readonly\",\n            moment: \"readonly\",\n            odoo: \"readonly\",\n            openerp: \"readonly\",\n            owl: \"readonly\",\n            luxon: \"readonly\",\n            QUnit: \"readonly\",\n            ...globals.browser,\n        },\n\n        ecmaVersion: 2024,\n        sourceType: \"script\",\n    },\n\n    rules: {\n        \"accessor-pairs\": \"warn\",\n        \"array-callback-return\": \"warn\",\n        \"callback-return\": \"warn\",\n        \"capitalized-comments\": [\"warn\", \"always\", {\n            ignoreConsecutiveComments: true,\n            ignoreInlineComments: true,\n        }],\n        complexity: [\"warn\", 15],\n        \"constructor-super\": \"warn\",\n        \"dot-notation\": \"warn\",\n        eqeqeq: \"warn\",\n        \"global-require\": \"warn\",\n        \"handle-callback-err\": \"warn\",\n        \"id-blacklist\": \"warn\",\n        \"id-match\": \"warn\",\n        \"init-declarations\": \"error\",\n        \"max-depth\": \"warn\",\n        \"max-nested-callbacks\": \"warn\",\n        \"max-statements-per-line\": \"warn\",\n        \"no-alert\": \"warn\",\n        \"no-array-constructor\": \"warn\",\n        \"no-caller\": \"warn\",\n        \"no-case-declarations\": \"warn\",\n        \"no-class-assign\": \"warn\",\n        \"no-cond-assign\": \"error\",\n        \"no-const-assign\": \"error\",\n        \"no-constant-condition\": \"warn\",\n        \"no-control-regex\": \"warn\",\n        \"no-debugger\": \"error\",\n        \"no-delete-var\": \"warn\",\n        \"no-div-regex\": \"warn\",\n        \"no-dupe-args\": \"error\",\n        \"no-dupe-class-members\": \"error\",\n        \"no-dupe-keys\": \"error\",\n        \"no-duplicate-case\": \"error\",\n        \"no-duplicate-imports\": \"error\",\n        \"no-else-return\": \"warn\",\n        \"no-empty-character-class\": \"warn\",\n        \"no-empty-function\": \"error\",\n        \"no-empty-pattern\": \"error\",\n        \"no-empty\": \"warn\",\n        \"no-eq-null\": \"error\",\n        \"no-eval\": \"error\",\n        \"no-ex-assign\": \"error\",\n        \"no-extend-native\": \"warn\",\n        \"no-extra-bind\": \"warn\",\n        \"no-extra-boolean-cast\": \"warn\",\n        \"no-extra-label\": \"warn\",\n        \"no-fallthrough\": \"warn\",\n        \"no-func-assign\": \"error\",\n        \"no-global-assign\": \"error\",\n        \"no-implicit-coercion\": [\"warn\", {\n            allow: [\"~\"],\n        }],\n        \"no-implicit-globals\": \"warn\",\n        \"no-implied-eval\": \"warn\",\n        \"no-inline-comments\": \"warn\",\n        \"no-inner-declarations\": \"warn\",\n        \"no-invalid-regexp\": \"warn\",\n        \"no-irregular-whitespace\": \"warn\",\n        \"no-iterator\": \"warn\",\n        \"no-label-var\": \"warn\",\n        \"no-labels\": \"warn\",\n        \"no-lone-blocks\": \"warn\",\n        \"no-lonely-if\": \"error\",\n        \"no-mixed-requires\": \"error\",\n        \"no-multi-str\": \"warn\",\n        \"no-native-reassign\": \"error\",\n        \"no-negated-condition\": \"warn\",\n        \"no-negated-in-lhs\": \"error\",\n        \"no-new-func\": \"warn\",\n        \"no-new-object\": \"warn\",\n        \"no-new-require\": \"warn\",\n        \"no-new-symbol\": \"warn\",\n        \"no-new-wrappers\": \"warn\",\n        \"no-new\": \"warn\",\n        \"no-obj-calls\": \"warn\",\n        \"no-octal-escape\": \"warn\",\n        \"no-octal\": \"warn\",\n        \"no-param-reassign\": \"warn\",\n        \"no-path-concat\": \"warn\",\n        \"no-process-env\": \"warn\",\n        \"no-process-exit\": \"warn\",\n        \"no-proto\": \"warn\",\n        \"no-prototype-builtins\": \"warn\",\n        \"no-redeclare\": \"warn\",\n        \"no-regex-spaces\": \"warn\",\n        \"no-restricted-globals\": \"warn\",\n        \"no-restricted-imports\": \"warn\",\n        \"no-restricted-modules\": \"warn\",\n        \"no-restricted-syntax\": \"warn\",\n        \"no-return-assign\": \"error\",\n        \"no-script-url\": \"warn\",\n        \"no-self-assign\": \"warn\",\n        \"no-self-compare\": \"warn\",\n        \"no-sequences\": \"warn\",\n        \"no-shadow-restricted-names\": \"warn\",\n        \"no-shadow\": \"warn\",\n        \"no-sparse-arrays\": \"warn\",\n        \"no-sync\": \"warn\",\n        \"no-this-before-super\": \"warn\",\n        \"no-throw-literal\": \"warn\",\n        \"no-undef-init\": \"warn\",\n        \"no-undef\": \"error\",\n        \"no-unmodified-loop-condition\": \"warn\",\n        \"no-unneeded-ternary\": \"error\",\n        \"no-unreachable\": \"error\",\n        \"no-unsafe-finally\": \"error\",\n        \"no-unused-expressions\": \"error\",\n        \"no-unused-labels\": \"error\",\n        \"no-unused-vars\": \"error\",\n        \"no-use-before-define\": \"error\",\n        \"no-useless-call\": \"warn\",\n        \"no-useless-computed-key\": \"warn\",\n        \"no-useless-concat\": \"warn\",\n        \"no-useless-constructor\": \"warn\",\n        \"no-useless-escape\": \"warn\",\n        \"no-useless-rename\": \"warn\",\n        \"no-void\": \"warn\",\n        \"no-with\": \"warn\",\n        \"operator-assignment\": [\"error\", \"always\"],\n        \"prefer-const\": \"warn\",\n        radix: \"warn\",\n        \"require-yield\": \"warn\",\n        \"sort-imports\": \"warn\",\n        \"spaced-comment\": [\"error\", \"always\"],\n        strict: [\"error\", \"function\"],\n        \"use-isnan\": \"error\",\n\n        \"jsdoc/check-tag-names\": \"warn\",\n        \"jsdoc/check-types\": \"warn\",\n        \"jsdoc/require-param-description\": \"off\",\n        \"jsdoc/require-return\": \"off\",\n        \"jsdoc/require-return-description\": \"off\",\n        \"jsdoc/require-return-type\": \"off\",\n\n        \"valid-typeof\": \"warn\",\n        yoda: \"warn\",\n    },\n\n    settings: {\n        jsdoc: {\n            tagNamePreference: {\n                arg: \"param\",\n                argument: \"param\",\n                augments: \"extends\",\n                constructor: \"class\",\n                exception: \"throws\",\n                func: \"function\",\n                method: \"function\",\n                prop: \"property\",\n                return: \"returns\",\n                virtual: \"abstract\",\n                yield: \"yields\",\n            },\n            preferredTypes: {\n                array: \"Array\",\n                bool: \"Boolean\",\n                boolean: \"Boolean\",\n                number: \"Number\",\n                object: \"Object\",\n                str: \"String\",\n                string: \"String\",\n            },\n        },\n    },\n\n}, {\n    files: [\"**/*.esm.js\", \"**/*test.js\"],\n\n    languageOptions: {\n        ecmaVersion: 2024,\n        sourceType: \"module\",\n    },\n}];\n\nmodule.exports = config\n"
  },
  {
    "path": "prettier.config.cjs",
    "content": "/** @type {import('prettier').Config} */\n\nconst config = {\n  // https://github.com/prettier/prettier/issues/15388#issuecomment-1717746872\n  plugins: [require.resolve(\"@prettier/plugin-xml\")],\n  bracketSpacing: false,\n  printWidth: 88,\n  proseWrap: \"always\",\n  semi: true,\n  trailingComma: \"es5\",\n  xmlWhitespaceSensitivity: \"preserve\",\n};\n\nmodule.exports = config;\n"
  },
  {
    "path": "requirements.txt",
    "content": "# generated from manifests external_dependencies\nphonenumbers\n"
  },
  {
    "path": "setup/_metapackage/pyproject.toml",
    "content": "[project]\nname = \"odoo-addons-oca-connector-telephony\"\nversion = \"18.0.20250613.0\"\ndependencies = [\n    \"odoo-addon-base_phone==18.0.*\",\n    \"odoo-addon-voip_oca==18.0.*\",\n]\nclassifiers=[\n    \"Programming Language :: Python\",\n    \"Framework :: Odoo\",\n    \"Framework :: Odoo :: 18.0\",\n]\n"
  },
  {
    "path": "voip_oca/README.rst",
    "content": ".. image:: https://odoo-community.org/readme-banner-image\n   :target: https://odoo-community.org/get-involved?utm_source=readme\n   :alt: Odoo Community Association\n\n========\nVoip OCA\n========\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:086afdaef4e3dac069f318b49701f7c781a80ead945dad55e802a5e63509620e\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n    :target: https://odoo-community.org/page/development-status\n    :alt: Beta\n.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png\n    :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n    :alt: License: AGPL-3\n.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fconnector--telephony-lightgray.png?logo=github\n    :target: https://github.com/OCA/connector-telephony/tree/18.0/voip_oca\n    :alt: OCA/connector-telephony\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/connector-telephony-18-0/connector-telephony-18-0-voip_oca\n    :alt: Translate me on Weblate\n.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png\n    :target: https://runboat.odoo-community.org/builds?repo=OCA/connector-telephony&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module allows the use of VOIP directly from Odoo.\n\nIt relies on SIP.js to connect to the PBX using a websocket directly\nfrom the browser.\n\nOdoo server will not connect directly to the PBX server, but will have\nusers and passwords stored.\n\nIn order to use this module, you need to have a PBX server that allows\nwebsocket connection. Otherwise, you need to use a proxy that will be\nthe bridge between Odoo and PBX. Websocket connection is required\nbecause browsers prefer this kind of connections. Also, this is an\nstandard connection defined on RFC 7118 by IETF. Several PBX servers\nsupport this protocol.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUse Cases / Context\n===================\n\nThis module is intended to integrate directly with a VOIP Provider.\n\nThe provider need to supply a WebRTC system where we will plug on it.\n\nCurrently, it has been tested with:\n\n- `Zerovoz <https://zerovoz.com/>`__\n- `Ringover <https://www.ringover.es/>`__\n\nTheoretically, it should work with\n\n- Axivox\n- OnSIP\n\nConfiguration\n=============\n\nCreate the PBX Connection\n-------------------------\n\n- Access in Debug mode.\n- Go to ``Settings > Technical > Discuss > PBX Servers``.\n- Create a PBX server and define the domain name and websocket link.\n\nYou can set it as ``Test`` or ``Production``. Test environment will\nnever contact the PBX server.\n\nConfigure users\n---------------\n\nFor each user, we need to define their PBX server, user and password if\nwe want it to be able to access the PBX server and make calls. To do\nthis, we have two options:\n\n1. Admin users can define the information directly in the user form for\n   each user. For this, go to Settings > Users & Companies > Users and\n   go to VOIP tab and set the information.\n2. By other hand, each user can go to Preferences and modify the\n   information in the VOIP tab.\n\nUsage\n=====\n\nAutomatically the system will login into the PBX server once we enter\nodoo with our user. If we are on a test environment, no login is made\nand the libraries of SIP are not loaded.\n\nOnce we are logged, we can use the VOIP widget in order to call\ndirectly. In order to open all the selectors, we can press the softphone\nbutton on the top bar...\n\n.. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/softphone.png\n\n...and the bottom widget will be opened.\n\n.. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/widget.png\n\nThe widget can be hidden by clicking on the top bar.\n\n.. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/hidden_widget.png\n\nClicking the top bar of the widget again will make it reappear.\n\nWe can make a call in 2 ways:\n\n1. Clicking the partner's number in the partner view, which appears in\n   green. .. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/partner.png\n\n2. Opening the numpad located at the bottom left of the widget, entering\n   the desired number, and clicking the call button located at the\n   bottom right of the widget. .. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/numpad.png\n\nInside a call, we can transfer the call, end the call, mute the call and\nput the call on Hold.\n\nThe widget offers 3 sections:\n\n1. Recent calls: Here we have a list of the last calls made, along with\n   additional call information such as call date and time, status, or\n   duration.\n2. Call Activities: Here we have a list of call activities assigned to\n   us in any Odoo document(crm.lead, sale.order...) that has expired or\n   is about to expire and needs to be completed.\n3. Contacts: Lastly, we have quick access to all stored partners in our\n   Odoo who have a telephone number set.\n\nClicking on any record in these three sections gives us access to the\nrelated partner, allowing us to view their information and make a call.\n\nIn the partner view of the widget, we can perform three actions:\n\n1. Send an email to the partner.\n2. Access the partner's form in Odoo.\n3. Schedule an activity.\n\n.. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/actions.png\n\nIf the partner is unknown and not stored in Odoo, some actions may not\nbe available. This can occur when accessing a recent call made to a\ncontact that is not stored for example. However, in this case, we allow\nthe action to store the contact in Odoo from recent calls, clicking on\nthe plus icon button.\n\n.. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/unknown_partner_actions.png\n\nAdditionally, if we access a contact through the activity section, we\nhave four more available actions:\n\n1. Go to the related document, such as a lead or a sale.\n2. Mark the activity as done.\n3. Edit the activity.\n4. Cancel the activity.\n\n.. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/activity_actions.png\n\nIn any tab, we can perform a search by typing a keyword in the search\nbar, such as the contact's name or phone number.\n\n.. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/search.png\n\nAlso, the system allows to receive call. In that case, the system will\ntry to find the related partner and will open the widget automatically.\n\n.. figure:: https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/received_call.png\n\nKnown issues / Roadmap\n======================\n\nThe following options are interesting but are not implemented right now:\n\n- Allow to enable or disable the VOIP as a user (Login / Logout)\n- Create a call system where the calls are done automatically according\n  to tasks\n\nNot contempled behavior\n-----------------------\n\nWe are not supporting setting two configuration for user. Not even a\ndifferent configuration for company in the user.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/connector-telephony/issues>`_.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us to smash it by providing a detailed and welcomed\n`feedback <https://github.com/OCA/connector-telephony/issues/new?body=module:%20voip_oca%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.\n\nDo not contact contributors directly about support or help with technical issues.\n\nCredits\n=======\n\nAuthors\n-------\n\n* Dixmit\n\nContributors\n------------\n\n- `Dixmit <https://www.dixmit.com>`__:\n\n  - Enric Alomar\n  - Luis Rodríguez\n\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Carlos Roca\n\nOther credits\n-------------\n\nThe development of this module has been financially supported by:\n\n- Associacion Española de Odoo (`AEODOO <https://www.aeodoo.org/>`__)\n\nThe tones provided by default comes from Pixabay:\n\n- Ringback tone: Sound Effect by freesound_community from Pixabay\n- Call tone: Sound Effect by Jeremay Jimenez from Pixabay\n- Dial tone: Sound Effect by freesound_community from Pixabay\n\nMaintainers\n-----------\n\nThis module is maintained by the OCA.\n\n.. image:: https://odoo-community.org/logo.png\n   :alt: Odoo Community Association\n   :target: https://odoo-community.org\n\nOCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.\n\n.. |maintainer-etobella| image:: https://github.com/etobella.png?size=40px\n    :target: https://github.com/etobella\n    :alt: etobella\n\nCurrent `maintainer <https://odoo-community.org/page/maintainer-role>`__:\n\n|maintainer-etobella| \n\nThis module is part of the `OCA/connector-telephony <https://github.com/OCA/connector-telephony/tree/18.0/voip_oca>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "voip_oca/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "voip_oca/__manifest__.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Voip OCA\",\n    \"summary\": \"Provides the use of Voip\",\n    \"version\": \"18.0.1.0.2\",\n    \"author\": \"Dixmit, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/connector-telephony\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Productivity/VOIP\",\n    \"excludes\": [\"voip\"],\n    \"depends\": [\"mail\"],\n    \"maintainers\": [\"etobella\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"views/res_users.xml\",\n        \"views/voip_call.xml\",\n        \"views/voip_pbx.xml\",\n        \"views/menus.xml\",\n    ],\n    \"demo\": [\"demo/demo_data.xml\"],\n    \"assets\": {\n        \"web.assets_backend\": [\n            \"voip_oca/static/src/**/*\",\n        ],\n        \"voip_oca.agent_assets\": [\n            \"voip_oca/static/lib/*.js\",\n        ],\n        \"web.assets_unit_tests\": [\n            \"voip_oca/static/tests/**/*\",\n        ],\n    },\n}\n"
  },
  {
    "path": "voip_oca/data/neutralize.sql",
    "content": "-- disable VOIP module by default\n\nUPDATE voip_pbx SET mode = 'test';\nUPDATE res_users SET voip_username = NULL, voip_password = NULL WHERE voip_username IS NOT NULL;\n"
  },
  {
    "path": "voip_oca/demo/demo_data.xml",
    "content": "<odoo>\n    <record id=\"voip_call_1\" model=\"voip.call\">\n        <field name=\"partner_id\" ref=\"base.res_partner_1\" />\n        <field name=\"user_id\" ref=\"base.user_admin\" />\n        <field name=\"phone_number\">+1234567890</field>\n        <field name=\"type_call\">outgoing</field>\n        <field name=\"state\">terminated</field>\n        <field name=\"activity_name\">Call to +1234567890</field>\n        <field name=\"end_date\">2020-01-01 10:15:00</field>\n        <field name=\"start_date\">2020-01-01 10:00:00</field>\n    </record>\n\n    <record id=\"voip_call_2\" model=\"voip.call\">\n        <field name=\"partner_id\" ref=\"base.res_partner_2\" />\n        <field name=\"user_id\" ref=\"base.user_admin\" />\n        <field name=\"phone_number\">+1234567842</field>\n        <field name=\"type_call\">incoming</field>\n        <field name=\"state\">missed</field>\n        <field name=\"activity_name\">Call to +1234567890</field>\n        <field name=\"end_date\">2020-01-01 15:37:00</field>\n        <field name=\"start_date\">2020-01-01 14:00:00</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "voip_oca/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* voip_oca\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 18.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2025-08-28 08:25+0000\\n\"\n\"Last-Translator: mymage <stefano.consolaro@mymage.it>\\n\"\n\"Language-Team: none\\n\"\n\"Language: it\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.10.4\\n\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"%(minutes)s min %(seconds)s sec\"\nmsgstr \"%(minutes)s min %(seconds)s sec\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"%(minutes)s minutes\"\nmsgstr \"%(minutes)s minuti\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"%(seconds)s seconds\"\nmsgstr \"%(seconds)s secondi\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"1 minute\"\nmsgstr \"1 minuto\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"1 second\"\nmsgstr \"1 secondo\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"2 minutes\"\nmsgstr \"2 minuti\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__aborted\nmsgid \"Aborted\"\nmsgstr \"Abortita\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\nmsgid \"Accept\"\nmsgstr \"Accetta\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Actions\"\nmsgstr \"Azioni\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/activity_list/activity_list.esm.js:0\nmsgid \"Activities\"\nmsgstr \"Attività\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_mail_activity\nmsgid \"Activity\"\nmsgstr \"Attività\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_mail_activity_mixin\nmsgid \"Activity Mixin\"\nmsgstr \"Mixin attività\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__activity_name\nmsgid \"Activity Name\"\nmsgstr \"Nome attività\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"An error occurred during the connection:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\"Si è verificato un errore durante la connessione:\\n\"\n\"\\n\"\n\"%(error)s\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"An error occurred during the instantiation of the User Agent:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\"Si è verificato un errore nell'attivare l'istanza dell'user agent:\\n\"\n\"\\n\"\n\"%(error)s\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"An error occurred during the registration of the User Agent:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\"Si è verificato un errore nella registrazione dell'user agent:\\n\"\n\"\\n\"\n\"%(error)s\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/softphone/softphone.xml:0\nmsgid \"Call\"\nmsgstr \"Chiamata\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"Call rejected. Reason:\\n\"\n\"\\n\"\n\"%(reason)s\"\nmsgstr \"\"\n\"Chiamata rifiutata. Motivo:\\n\"\n\"\\n\"\n\"%(reason)s\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__calling\nmsgid \"Calling\"\nmsgstr \"In chiamata\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call_list/call_list.esm.js:0\n#: model:ir.actions.act_window,name:voip_oca.voip_call_act_window_list\nmsgid \"Calls\"\nmsgstr \"Chiamate\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Cancel activity\"\nmsgstr \"Annulla attività\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_res_partner\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__partner_id\nmsgid \"Contact\"\nmsgstr \"Contatto\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner_list/partner_list.esm.js:0\nmsgid \"Contacts\"\nmsgstr \"Contatti\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__create_uid\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__create_date\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/numpad/numpad.xml:0\nmsgid \"Delete\"\nmsgstr \"Cancella\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__display_name\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__domain\nmsgid \"Domain\"\nmsgstr \"Dominio\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Edit activity\"\nmsgstr \"Modifica attività\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__end_date\nmsgid \"End Date\"\nmsgstr \"Data fine\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/transfer/transfer.xml:0\nmsgid \"Enter number\"\nmsgstr \"Inserire numero\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/numpad/numpad.xml:0\nmsgid \"Enter number...\"\nmsgstr \"Inserire numero...\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__mode\nmsgid \"Environment\"\nmsgstr \"Ambiente\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"Failed to establish the call:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\"Tentativo di stabilire la chiamata fallito:\\n\"\n\"\\n\"\n\"%(error)s\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"Failed to load the SIP.js library:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\"Caricamento della libreria SIP.js fallito:\\n\"\n\"\\n\"\n\"%(error)s\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"Failed to put the call on hold/unhold:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\"Fallita la modifica della chiamata a attesa/ripresa:\\n\"\n\"\\n\"\n\"%(error)s\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"Failed to reconnect the User Agent. Please reload the page.\"\nmsgstr \"Riconnessione dell'user agent fallita. ricaricare la pagina.\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_ir_http\nmsgid \"HTTP Routing\"\nmsgstr \"Instradamento HTTP\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__id\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\nmsgid \"In call for:\"\nmsgstr \"In chiamata per:\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__type_call__incoming\nmsgid \"Incoming\"\nmsgstr \"In ingresso\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Info contact\"\nmsgstr \"Contatto informazioni\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__write_uid\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__write_date\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_mail_activity__main_partner_id\n#: model:ir.model.fields,field_description:voip_oca.field_mail_activity_mixin__activity_main_partner_id\n#: model:ir.model.fields,field_description:voip_oca.field_res_partner__activity_main_partner_id\n#: model:ir.model.fields,field_description:voip_oca.field_res_users__activity_main_partner_id\nmsgid \"Main Contact\"\nmsgstr \"Contatto principale\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_mail_activity__main_partner\nmsgid \"Main Partner\"\nmsgstr \"Partner principale\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Mark as done\"\nmsgstr \"Segna come eseguita\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__missed\nmsgid \"Missed\"\nmsgstr \"Mancante\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\nmsgid \"Mute\"\nmsgstr \"Silenzia\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"New contact\"\nmsgstr \"Nuovo contatto\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"No contact info\"\nmsgstr \"Nessuna informazione contatto\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__ongoing\nmsgid \"Ongoing\"\nmsgstr \"In corso\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/softphone/softphone.xml:0\nmsgid \"Open Numpad\"\nmsgstr \"Apri tastierino numerico\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__type_call__outgoing\nmsgid \"Outgoing\"\nmsgstr \"In uscita\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__pbx_id\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form_simple_modif\nmsgid \"PBX\"\nmsgstr \"PBX\"\n\n#. module: voip_oca\n#: model:ir.actions.act_window,name:voip_oca.voip_pbx_act_window\n#: model:ir.ui.menu,name:voip_oca.voip_pbx_menu\nmsgid \"PBX Servers\"\nmsgstr \"Server PBX\"\n\n#. module: voip_oca\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form_simple_modif\nmsgid \"Password\"\nmsgstr \"Password\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\nmsgid \"Pause\"\nmsgstr \"Pausa\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__phone_number\nmsgid \"Phone Number\"\nmsgstr \"Numero di telefono\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_pbx__mode__prod\nmsgid \"Production\"\nmsgstr \"Produzione\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__rejected\nmsgid \"Rejected\"\nmsgstr \"Respinta\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Related activity\"\nmsgstr \"Attività relativa\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Related document\"\nmsgstr \"Documento correlato\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__user_id\nmsgid \"Responsible\"\nmsgstr \"Responsabile\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Schedule activity\"\nmsgstr \"Schedula attività\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/softphone/softphone.xml:0\nmsgid \"Search\"\nmsgstr \"Cerca\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Send email\"\nmsgstr \"Invia e-mail\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/voip_oca_systray/voip_oca_systray.xml:0\nmsgid \"Softphone\"\nmsgstr \"Softphone\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__start_date\nmsgid \"Start Date\"\nmsgstr \"Data inizio\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__state\nmsgid \"State\"\nmsgstr \"Stato\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__terminated\nmsgid \"Terminated\"\nmsgstr \"Terminata\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_pbx__mode__test\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: voip_oca\n#: model:ir.model.fields,help:voip_oca.field_voip_call__activity_name\nmsgid \"The name of the activity related to this phone call, if any.\"\nmsgstr \"Il nome dell'attività relativa a questa telefonata, se presente.\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/transfer/transfer.xml:0\nmsgid \"Transfer\"\nmsgstr \"Trasferimento\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/transfer/transfer.xml:0\nmsgid \"Transfer to\"\nmsgstr \"Trasferire a\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__type_call\nmsgid \"Type Call\"\nmsgstr \"Digita chiamata\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_res_users\nmsgid \"User\"\nmsgstr \"Utente\"\n\n#. module: voip_oca\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form_simple_modif\nmsgid \"Username\"\nmsgstr \"Nome utente\"\n\n#. module: voip_oca\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form_simple_modif\nmsgid \"VOIP\"\nmsgstr \"VOIP\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/softphone/softphone.xml:0\nmsgid \"VoIP\"\nmsgstr \"VOIP\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_voip_call\nmsgid \"Voip OCA Call\"\nmsgstr \"Chiamata VOIP OCA\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_res_users__voip_password\nmsgid \"Voip Password\"\nmsgstr \"Password VOIP\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_voip_pbx\n#: model:ir.model.fields,field_description:voip_oca.field_res_users__voip_pbx_id\nmsgid \"Voip Pbx\"\nmsgstr \"PBX VOIP\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_res_users__voip_username\nmsgid \"Voip Username\"\nmsgstr \"Nome utente VOIP\"\n\n#. module: voip_oca\n#: model:ir.ui.menu,name:voip_oca.voip_call_menu_action\nmsgid \"Voip/Calls\"\nmsgstr \"VOIP/chiamate\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__ws_server\nmsgid \"Ws Server\"\nmsgstr \"Server Ws\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"less than a second\"\nmsgstr \"Meno di un secondo\"\n"
  },
  {
    "path": "voip_oca/i18n/voip_oca.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* voip_oca\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 18.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: \\n\"\n\"Plural-Forms: \\n\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"%(minutes)s min %(seconds)s sec\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"%(minutes)s minutes\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"%(seconds)s seconds\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"1 minute\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"1 second\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"2 minutes\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__aborted\nmsgid \"Aborted\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\nmsgid \"Accept\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/activity_list/activity_list.esm.js:0\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_mail_activity\nmsgid \"Activity\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_mail_activity_mixin\nmsgid \"Activity Mixin\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__activity_name\nmsgid \"Activity Name\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"An error occurred during the connection:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"An error occurred during the instantiation of the User Agent:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"An error occurred during the registration of the User Agent:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/softphone/softphone.xml:0\nmsgid \"Call\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"Call rejected. Reason:\\n\"\n\"\\n\"\n\"%(reason)s\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__calling\nmsgid \"Calling\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call_list/call_list.esm.js:0\n#: model:ir.actions.act_window,name:voip_oca.voip_call_act_window_list\nmsgid \"Calls\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Cancel activity\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_res_partner\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__partner_id\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner_list/partner_list.esm.js:0\nmsgid \"Contacts\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__create_uid\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__create_date\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/numpad/numpad.xml:0\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__display_name\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__domain\nmsgid \"Domain\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Edit activity\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__end_date\nmsgid \"End Date\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/transfer/transfer.xml:0\nmsgid \"Enter number\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/numpad/numpad.xml:0\nmsgid \"Enter number...\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__mode\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"Failed to establish the call:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"Failed to load the SIP.js library:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"\"\n\"Failed to put the call on hold/unhold:\\n\"\n\"\\n\"\n\"%(error)s\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/services/voip_agent_service.esm.js:0\nmsgid \"Failed to reconnect the User Agent. Please reload the page.\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_ir_http\nmsgid \"HTTP Routing\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__id\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\nmsgid \"In call for:\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__type_call__incoming\nmsgid \"Incoming\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Info contact\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__write_uid\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__write_date\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_mail_activity__main_partner_id\n#: model:ir.model.fields,field_description:voip_oca.field_mail_activity_mixin__activity_main_partner_id\n#: model:ir.model.fields,field_description:voip_oca.field_res_partner__activity_main_partner_id\n#: model:ir.model.fields,field_description:voip_oca.field_res_users__activity_main_partner_id\nmsgid \"Main Contact\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_mail_activity__main_partner\nmsgid \"Main Partner\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Mark as done\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__missed\nmsgid \"Missed\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\nmsgid \"Mute\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"New contact\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"No contact info\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__ongoing\nmsgid \"Ongoing\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/softphone/softphone.xml:0\nmsgid \"Open Numpad\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__type_call__outgoing\nmsgid \"Outgoing\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__pbx_id\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form_simple_modif\nmsgid \"PBX\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.actions.act_window,name:voip_oca.voip_pbx_act_window\n#: model:ir.ui.menu,name:voip_oca.voip_pbx_menu\nmsgid \"PBX Servers\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form_simple_modif\nmsgid \"Password\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\nmsgid \"Pause\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__phone_number\nmsgid \"Phone Number\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_pbx__mode__prod\nmsgid \"Production\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__rejected\nmsgid \"Rejected\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Related activity\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Related document\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Schedule activity\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/softphone/softphone.xml:0\nmsgid \"Search\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/partner/partner.xml:0\nmsgid \"Send email\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/voip_oca_systray/voip_oca_systray.xml:0\nmsgid \"Softphone\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__start_date\nmsgid \"Start Date\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_call__state__terminated\nmsgid \"Terminated\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields.selection,name:voip_oca.selection__voip_pbx__mode__test\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,help:voip_oca.field_voip_call__activity_name\nmsgid \"The name of the activity related to this phone call, if any.\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/call/call.xml:0\n#: code:addons/voip_oca/static/src/components/transfer/transfer.xml:0\nmsgid \"Transfer\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/transfer/transfer.xml:0\nmsgid \"Transfer to\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_call__type_call\nmsgid \"Type Call\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_res_users\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form_simple_modif\nmsgid \"Username\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form\n#: model_terms:ir.ui.view,arch_db:voip_oca.view_users_form_simple_modif\nmsgid \"VOIP\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/components/softphone/softphone.xml:0\nmsgid \"VoIP\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_voip_call\nmsgid \"Voip OCA Call\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_res_users__voip_password\nmsgid \"Voip Password\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model,name:voip_oca.model_voip_pbx\n#: model:ir.model.fields,field_description:voip_oca.field_res_users__voip_pbx_id\nmsgid \"Voip Pbx\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_res_users__voip_username\nmsgid \"Voip Username\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.ui.menu,name:voip_oca.voip_call_menu_action\nmsgid \"Voip/Calls\"\nmsgstr \"\"\n\n#. module: voip_oca\n#: model:ir.model.fields,field_description:voip_oca.field_voip_pbx__ws_server\nmsgid \"Ws Server\"\nmsgstr \"\"\n\n#. module: voip_oca\n#. odoo-javascript\n#: code:addons/voip_oca/static/src/utils/utils.esm.js:0\nmsgid \"less than a second\"\nmsgstr \"\"\n"
  },
  {
    "path": "voip_oca/models/__init__.py",
    "content": "from . import res_partner\nfrom . import voip_call\nfrom . import mail_activity\nfrom . import mail_activity_mixin\nfrom . import res_users\nfrom . import voip_pbx\nfrom . import ir_http\n"
  },
  {
    "path": "voip_oca/models/ir_http.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).\n\nfrom odoo import models\nfrom odoo.http import request\n\n\nclass Http(models.AbstractModel):\n    _inherit = \"ir.http\"\n\n    def session_info(self):\n        res = super().session_info()\n        user = request.env.user\n        res.update(\n            {\n                \"voip\": user._voip_get_info(),\n            }\n        )\n        return res\n"
  },
  {
    "path": "voip_oca/models/mail_activity.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, fields, models\nfrom odoo.osv import expression\n\n\nclass VoipOcaActivity(models.Model):\n    _inherit = \"mail.activity\"\n\n    main_partner_id = fields.Many2one(\n        \"res.partner\", string=\"Main Contact\", compute=\"_compute_main_partner_id\"\n    )\n    main_partner = fields.Char(compute=\"_compute_main_partner_id\")\n\n    @api.depends(\"res_id\")\n    def _compute_main_partner_id(self):\n        for activity in self:\n            partner = (\n                self.env[activity.res_model]\n                .browse(activity.res_id)\n                .activity_main_partner_id\n            )\n            activity.main_partner_id = partner\n            activity.main_partner = partner.name\n\n    @api.model\n    def get_call_activities(self, _search, offset, limit):\n        activity_type_id = self.env[\"mail.activity.type\"].search(\n            [(\"category\", \"=\", \"phonecall\")]\n        )\n        domain = [\n            (\"user_id\", \"=\", self.env.uid),\n            (\"activity_type_id\", \"in\", activity_type_id.ids),\n            (\"date_deadline\", \"<=\", fields.Datetime.now()),\n        ]\n        if _search:\n            search_fields = [\"res_name\", \"summary\", \"date_deadline\"]\n            search_domain = expression.OR(\n                [[(field, \"ilike\", _search)] for field in search_fields]\n            )\n            domain = expression.AND([domain, search_domain])\n        all_activities = self.search(domain, offset=offset, limit=limit)\n        # Filter activities to avoid accessing records that the user cannot read\n        # due to multi-company restrictions or other access rules in the res_model.\n        allowed_activity_ids = []\n        for activity in all_activities:\n            res_record = self.env[activity.res_model].browse(activity.res_id)\n            if res_record._filtered_access(\"read\"):\n                allowed_activity_ids.append(activity.id)\n        return self.browse(allowed_activity_ids).activity_format()\n"
  },
  {
    "path": "voip_oca/models/mail_activity_mixin.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass ResConfigSettings(models.AbstractModel):\n    _inherit = \"mail.activity.mixin\"\n\n    activity_main_partner_id = fields.Many2one(\n        \"res.partner\",\n        string=\"Main Contact\",\n        compute=\"_compute_activity_main_partner_id\",\n    )\n\n    def _compute_activity_main_partner_id(self):\n        for record in self:\n            record.activity_main_partner_id = record.get_activity_main_partner_id()\n\n    def get_activity_main_partner_id(self):\n        if \"partner_id\" in self._fields:\n            return self.partner_id\n        return self.env[\"res.partner\"]\n"
  },
  {
    "path": "voip_oca/models/res_partner.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, models\nfrom odoo.osv import expression\n\n\nclass VoipOcaCall(models.Model):\n    _inherit = \"res.partner\"\n\n    def format_partner(self):\n        return {\n            \"id\": self.id,\n            \"type\": \"partner\",\n            \"displayName\": self.display_name,\n            \"email\": self.email,\n            \"landlineNumber\": self.phone,\n            \"mobileNumber\": self.mobile,\n            \"name\": self.name,\n        }\n\n    @api.model\n    def voip_get_contacts(self, _search, offset, limit):\n        domain = [\"|\", (\"phone\", \"!=\", False), (\"mobile\", \"!=\", False)]\n        if _search:\n            search_fields = [\"name\", \"phone\", \"mobile\", \"email\"]\n            search_domain = expression.OR(\n                [[(field, \"ilike\", _search)] for field in search_fields]\n            )\n            domain = expression.AND([domain, search_domain])\n        contacts = self.search(domain, offset=offset, limit=limit)\n        return [contact.format_partner() for contact in contacts]\n\n    def get_activity_main_partner_id(self):\n        \"\"\"Override to return the partner itself.\"\"\"\n        return self\n"
  },
  {
    "path": "voip_oca/models/res_users.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass ResUsers(models.Model):\n    _inherit = \"res.users\"\n\n    voip_pbx_id = fields.Many2one(\"voip.pbx\")\n    voip_username = fields.Char()\n    voip_password = fields.Char()\n\n    @property\n    def SELF_READABLE_FIELDS(self):\n        return super().SELF_READABLE_FIELDS + [\n            \"voip_pbx_id\",\n            \"voip_username\",\n            \"voip_password\",\n        ]\n\n    @property\n    def SELF_WRITEABLE_FIELDS(self):\n        return super().SELF_WRITEABLE_FIELDS + [\n            \"voip_pbx_id\",\n            \"voip_username\",\n            \"voip_password\",\n        ]\n\n    def _voip_get_info(self):\n        return {\n            \"pbx_id\": self.voip_pbx_id.id,\n            \"pbx\": self.voip_pbx_id.name,\n            \"pbx_domain\": self.voip_pbx_id.domain,\n            \"pbx_ws\": self.voip_pbx_id.ws_server,\n            \"mode\": (\n                self.voip_username and self.voip_password and self.voip_pbx_id.mode\n            )\n            or \"test\",\n            \"pbx_username\": self.voip_username,\n            \"pbx_password\": self.voip_password,\n            \"tones\": {\n                \"dialtone\": \"/voip_oca/static/audio/dialtone.mp3\",\n                \"calltone\": \"/voip_oca/static/audio/calltone.mp3\",\n                \"ringbacktone\": \"/voip_oca/static/audio/ringbacktone.mp3\",\n            },\n        }\n"
  },
  {
    "path": "voip_oca/models/voip_call.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\n\nfrom odoo import api, fields, models\nfrom odoo.osv import expression\n\n\nclass VoipOcaCall(models.Model):\n    _name = \"voip.call\"\n    _description = \"Voip OCA Call\"\n\n    phone_number = fields.Char(required=True)\n    type_call = fields.Selection(\n        [\n            (\"incoming\", \"Incoming\"),\n            (\"outgoing\", \"Outgoing\"),\n        ],\n        default=\"outgoing\",\n    )\n    state = fields.Selection(\n        [\n            (\"aborted\", \"Aborted\"),\n            (\"calling\", \"Calling\"),\n            (\"missed\", \"Missed\"),\n            (\"ongoing\", \"Ongoing\"),\n            (\"rejected\", \"Rejected\"),\n            (\"terminated\", \"Terminated\"),\n        ],\n        default=\"calling\",\n        index=True,\n    )\n    pbx_id = fields.Many2one(\"voip.pbx\", \"PBX\")\n    end_date = fields.Datetime()\n    start_date = fields.Datetime()\n    activity_name = fields.Char(\n        help=\"The name of the activity related to this phone call, if any.\"\n    )\n    partner_id = fields.Many2one(\"res.partner\", \"Contact\", index=True)\n    user_id = fields.Many2one(\n        \"res.users\", \"Responsible\", default=lambda self: self.env.uid, index=True\n    )\n\n    @api.depends(\"state\", \"partner_id.name\")\n    def _compute_display_name(self):\n        states = dict(self._fields[\"state\"].selection)\n        for rec in self:\n            name = rec.partner_id.display_name or rec.phone_number\n            rec.display_name = f\"{states[rec.state]} - {name}\"\n\n    def format_call(self):\n        return {\n            \"id\": self.id,\n            \"creationDate\": self.create_date,\n            \"typeCall\": self.type_call,\n            \"displayName\": self.display_name,\n            \"endDate\": self.end_date,\n            \"partner\": self.partner_id and self.partner_id.format_partner(),\n            \"phoneNumber\": self.phone_number,\n            \"startDate\": self.start_date,\n            \"createDate\": self.create_date,\n            \"state\": self.state,\n        }\n\n    @api.model\n    def get_recent_calls(self, _search, offset, limit):\n        domain = [(\"user_id\", \"=\", self.env.uid)]\n        if _search:\n            search_fields = [\n                \"phone_number\",\n                \"partner_id.name\",\n                \"activity_name\",\n            ]\n            search_domain = expression.OR(\n                [[(field, \"ilike\", _search)] for field in search_fields]\n            )\n            domain = expression.AND([domain, search_domain])\n        return [\n            call.format_call()\n            for call in self.search(\n                domain, offset=offset, limit=limit, order=\"create_date DESC\"\n            )\n        ]\n\n    @api.model\n    def create_call(self, values):\n        if not values.get(\"partner_id\"):\n            values[\"partner_id\"] = (\n                self.env[\"res.partner\"]\n                .search(\n                    [\n                        \"|\",\n                        (\"phone\", \"=\", values.get(\"phone_number\")),\n                        (\"mobile\", \"=\", values.get(\"phone_number\")),\n                    ],\n                    limit=1,\n                )\n                .id\n            )\n        return self.create(values).format_call()\n\n    def terminate_call(self):\n        self.end_date = fields.Datetime.now()\n        self.state = \"terminated\"\n        return self.format_call()\n\n    def reject_call(self):\n        self.end_date = fields.Datetime.now()\n        self.state = \"rejected\"\n        return self.format_call()\n\n    def accept_call(self):\n        self.start_date = fields.Datetime.now()\n        self.state = \"ongoing\"\n        return self.format_call()\n"
  },
  {
    "path": "voip_oca/models/voip_pbx.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass VoipOcaPbx(models.Model):\n    _name = \"voip.pbx\"\n    _description = \"Voip Pbx\"\n\n    name = fields.Char(required=True)\n    domain = fields.Char(default=\"localhost\")\n    ws_server = fields.Char(default=\"ws://localhost\")\n    mode = fields.Selection(\n        [(\"test\", \"Test\"), (\"prod\", \"Production\")],\n        string=\"Environment\",\n        default=\"test\",\n    )\n"
  },
  {
    "path": "voip_oca/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "voip_oca/readme/CONFIGURE.md",
    "content": "Create the PBX Connection\n-------------------------\n\n- Access in Debug mode.\n- Go to `Settings > Technical > Discuss > PBX Servers`.\n- Create a PBX server and define the domain name and websocket link.\n\nYou can set it as ``Test`` or ``Production``. Test environment will never contact the PBX server.\n\nConfigure users\n---------------\n\nFor each user, we need to define their PBX server, user and password if we want it to be able\nto access the PBX server and make calls. To do this, we have two options:\n\n1. Admin users can define the information directly in the user form for each user. For this,\ngo to Settings > Users & Companies > Users and go to VOIP tab and set the information.\n2. By other hand, each user can go to Preferences and modify the information in the VOIP tab.\n"
  },
  {
    "path": "voip_oca/readme/CONTEXT.md",
    "content": "This module is intended to integrate directly with a VOIP Provider.\n\nThe provider need to supply a WebRTC system where we will plug on it.\n\nCurrently, it has been tested with:\n\n- [Zerovoz](https://zerovoz.com/)\n- [Ringover](https://www.ringover.es/)\n\nTheoretically, it should work with\n\n- Axivox\n- OnSIP"
  },
  {
    "path": "voip_oca/readme/CONTRIBUTORS.md",
    "content": "\n- [Dixmit](https://www.dixmit.com):\n  - Enric Alomar\n  - Luis Rodríguez\n- [Tecnativa](https://www.tecnativa.com):\n  - Carlos Roca\n"
  },
  {
    "path": "voip_oca/readme/CREDITS.md",
    "content": "The development of this module has been financially supported by:\n\n- Associacion Española de Odoo ([AEODOO](https://www.aeodoo.org/))\n\nThe tones provided by default comes from Pixabay:\n\n- Ringback tone: Sound Effect by freesound_community from Pixabay\n- Call tone: Sound Effect by Jeremay Jimenez from Pixabay\n- Dial tone: Sound Effect by freesound_community from Pixabay\n"
  },
  {
    "path": "voip_oca/readme/DESCRIPTION.md",
    "content": "This module allows the use of VOIP directly from Odoo.\n\nIt relies on SIP.js to connect to the PBX using a websocket directly from the browser.\n\nOdoo server will not connect directly to the PBX server, but will have users and passwords stored.\n\nIn order to use this module, you need to have a PBX server that allows websocket connection.\nOtherwise, you need to use a proxy that will be the bridge between Odoo and PBX.\nWebsocket connection is required because browsers prefer this kind of connections.\nAlso, this is an standard connection defined on RFC 7118 by IETF.\nSeveral PBX servers support this protocol.\n"
  },
  {
    "path": "voip_oca/readme/ROADMAP.md",
    "content": "The following options are interesting but are not implemented right now:\n\n- Allow to enable or disable the VOIP as a user (Login / Logout)\n- Create a call system where the calls are done automatically according to tasks\n\nNot contempled behavior\n-----------------------\n\nWe are not supporting setting two configuration for user.\nNot even a different configuration for company in the user.\n"
  },
  {
    "path": "voip_oca/readme/USAGE.md",
    "content": "Automatically the system will login into the PBX server once we enter odoo with our user.\nIf we are on a test environment, no login is made and the libraries of SIP are not loaded.\n\nOnce we are logged, we can use the VOIP widget in order to call directly.\nIn order to open all the selectors, we can press the softphone button on the top bar...\n\n.. figure:: static/description/softphone.png\n\n...and the bottom widget will be opened.\n\n.. figure:: static/description/widget.png\n\nThe widget can be hidden by clicking on the top bar.\n\n.. figure:: static/description/hidden_widget.png\n\nClicking the top bar of the widget again will make it reappear.\n\nWe can make a call in 2 ways:\n\n1. Clicking the partner's number in the partner view, which appears in green.\n.. figure:: static/description/partner.png\n\n2. Opening the numpad located at the bottom left of the widget, entering the desired number,\nand clicking the call button located at the bottom right of the widget.\n.. figure:: static/description/numpad.png\n\nInside a call, we can transfer the call, end the call, mute the call and put the call on Hold.\n\nThe widget offers 3 sections:\n\n1. Recent calls: Here we have a list of the last calls made, along with additional call information such as call date and time, status, or duration.\n2. Call Activities: Here we have a list of call activities assigned to us in any Odoo document(crm.lead, sale.order...) that has expired or is about to expire and needs to be completed.\n3. Contacts: Lastly, we have quick access to all stored partners in our Odoo who have a telephone number set.\n\nClicking on any record in these three sections gives us access to the related partner, allowing us to view their information and make a call.\n\nIn the partner view of the widget, we can perform three actions:\n\n1. Send an email to the partner.\n2. Access the partner's form in Odoo.\n3. Schedule an activity.\n\n.. figure:: static/description/actions.png\n\nIf the partner is unknown and not stored in Odoo, some actions may not be available. This can occur when accessing a recent call made to a contact that is not stored for example. However, in this case, we allow the action to store the contact in Odoo from recent calls, clicking on the plus icon button.\n\n.. figure:: static/description/unknown_partner_actions.png\n\nAdditionally, if we access a contact through the activity section, we have four more available actions:\n\n1. Go to the related document, such as a lead or a sale.\n2. Mark the activity as done.\n3. Edit the activity.\n4. Cancel the activity.\n\n.. figure:: static/description/activity_actions.png\n\nIn any tab, we can perform a search by typing a keyword in the search bar, such as the contact's name or phone number.\n\n.. figure:: static/description/search.png\n\nAlso, the system allows to receive call.\nIn that case, the system will try to find the related partner and will open the widget automatically.\n\n.. figure:: static/description/received_call.png\n"
  },
  {
    "path": "voip_oca/security/ir.model.access.csv",
    "content": "id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink\naccess_voip_call,access_voip_call,model_voip_call,base.group_user,1,1,1,1\naccess_voip_pbx_access,access_voip_pbx,model_voip_pbx,base.group_user,1,0,0,0\naccess_voip_pbx_manage,access_voip_pbx,model_voip_pbx,base.group_system,1,1,1,1\n"
  },
  {
    "path": "voip_oca/static/description/index.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n<meta name=\"generator\" content=\"Docutils: https://docutils.sourceforge.io/\" />\n<title>README.rst</title>\n<style type=\"text/css\">\n\n/*\n:Author: David Goodger (goodger@python.org)\n:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $\n:Copyright: This stylesheet has been placed in the public domain.\n\nDefault cascading style sheet for the HTML output of Docutils.\nDespite the name, some widely supported CSS2 features are used.\n\nSee https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to\ncustomize this style sheet.\n*/\n\n/* used to remove borders from tables and images */\n.borderless, table.borderless td, table.borderless th {\n  border: 0 }\n\ntable.borderless td, table.borderless th {\n  /* Override padding for \"table.docutils td\" with \"! important\".\n     The right padding separates the table cells. */\n  padding: 0 0.5em 0 0 ! important }\n\n.first {\n  /* Override more specific margin styles with \"! important\". */\n  margin-top: 0 ! important }\n\n.last, .with-subtitle {\n  margin-bottom: 0 ! important }\n\n.hidden {\n  display: none }\n\n.subscript {\n  vertical-align: sub;\n  font-size: smaller }\n\n.superscript {\n  vertical-align: super;\n  font-size: smaller }\n\na.toc-backref {\n  text-decoration: none ;\n  color: black }\n\nblockquote.epigraph {\n  margin: 2em 5em ; }\n\ndl.docutils dd {\n  margin-bottom: 0.5em }\n\nobject[type=\"image/svg+xml\"], object[type=\"application/x-shockwave-flash\"] {\n  overflow: hidden;\n}\n\n/* Uncomment (and remove this text!) to get bold-faced definition list terms\ndl.docutils dt {\n  font-weight: bold }\n*/\n\ndiv.abstract {\n  margin: 2em 5em }\n\ndiv.abstract p.topic-title {\n  font-weight: bold ;\n  text-align: center }\n\ndiv.admonition, div.attention, div.caution, div.danger, div.error,\ndiv.hint, div.important, div.note, div.tip, div.warning {\n  margin: 2em ;\n  border: medium outset ;\n  padding: 1em }\n\ndiv.admonition p.admonition-title, div.hint p.admonition-title,\ndiv.important p.admonition-title, div.note p.admonition-title,\ndiv.tip p.admonition-title {\n  font-weight: bold ;\n  font-family: sans-serif }\n\ndiv.attention p.admonition-title, div.caution p.admonition-title,\ndiv.danger p.admonition-title, div.error p.admonition-title,\ndiv.warning p.admonition-title, .code .error {\n  color: red ;\n  font-weight: bold ;\n  font-family: sans-serif }\n\n/* Uncomment (and remove this text!) to get reduced vertical space in\n   compound paragraphs.\ndiv.compound .compound-first, div.compound .compound-middle {\n  margin-bottom: 0.5em }\n\ndiv.compound .compound-last, div.compound .compound-middle {\n  margin-top: 0.5em }\n*/\n\ndiv.dedication {\n  margin: 2em 5em ;\n  text-align: center ;\n  font-style: italic }\n\ndiv.dedication p.topic-title {\n  font-weight: bold ;\n  font-style: normal }\n\ndiv.figure {\n  margin-left: 2em ;\n  margin-right: 2em }\n\ndiv.footer, div.header {\n  clear: both;\n  font-size: smaller }\n\ndiv.line-block {\n  display: block ;\n  margin-top: 1em ;\n  margin-bottom: 1em }\n\ndiv.line-block div.line-block {\n  margin-top: 0 ;\n  margin-bottom: 0 ;\n  margin-left: 1.5em }\n\ndiv.sidebar {\n  margin: 0 0 0.5em 1em ;\n  border: medium outset ;\n  padding: 1em ;\n  background-color: #ffffee ;\n  width: 40% ;\n  float: right ;\n  clear: right }\n\ndiv.sidebar p.rubric {\n  font-family: sans-serif ;\n  font-size: medium }\n\ndiv.system-messages {\n  margin: 5em }\n\ndiv.system-messages h1 {\n  color: red }\n\ndiv.system-message {\n  border: medium outset ;\n  padding: 1em }\n\ndiv.system-message p.system-message-title {\n  color: red ;\n  font-weight: bold }\n\ndiv.topic {\n  margin: 2em }\n\nh1.section-subtitle, h2.section-subtitle, h3.section-subtitle,\nh4.section-subtitle, h5.section-subtitle, h6.section-subtitle {\n  margin-top: 0.4em }\n\nh1.title {\n  text-align: center }\n\nh2.subtitle {\n  text-align: center }\n\nhr.docutils {\n  width: 75% }\n\nimg.align-left, .figure.align-left, object.align-left, table.align-left {\n  clear: left ;\n  float: left ;\n  margin-right: 1em }\n\nimg.align-right, .figure.align-right, object.align-right, table.align-right {\n  clear: right ;\n  float: right ;\n  margin-left: 1em }\n\nimg.align-center, .figure.align-center, object.align-center {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n\ntable.align-center {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.align-left {\n  text-align: left }\n\n.align-center {\n  clear: both ;\n  text-align: center }\n\n.align-right {\n  text-align: right }\n\n/* reset inner alignment in figures */\ndiv.align-right {\n  text-align: inherit }\n\n/* div.align-center * { */\n/*   text-align: left } */\n\n.align-top    {\n  vertical-align: top }\n\n.align-middle {\n  vertical-align: middle }\n\n.align-bottom {\n  vertical-align: bottom }\n\nol.simple, ul.simple {\n  margin-bottom: 1em }\n\nol.arabic {\n  list-style: decimal }\n\nol.loweralpha {\n  list-style: lower-alpha }\n\nol.upperalpha {\n  list-style: upper-alpha }\n\nol.lowerroman {\n  list-style: lower-roman }\n\nol.upperroman {\n  list-style: upper-roman }\n\np.attribution {\n  text-align: right ;\n  margin-left: 50% }\n\np.caption {\n  font-style: italic }\n\np.credits {\n  font-style: italic ;\n  font-size: smaller }\n\np.label {\n  white-space: nowrap }\n\np.rubric {\n  font-weight: bold ;\n  font-size: larger ;\n  color: maroon ;\n  text-align: center }\n\np.sidebar-title {\n  font-family: sans-serif ;\n  font-weight: bold ;\n  font-size: larger }\n\np.sidebar-subtitle {\n  font-family: sans-serif ;\n  font-weight: bold }\n\np.topic-title {\n  font-weight: bold }\n\npre.address {\n  margin-bottom: 0 ;\n  margin-top: 0 ;\n  font: inherit }\n\npre.literal-block, pre.doctest-block, pre.math, pre.code {\n  margin-left: 2em ;\n  margin-right: 2em }\n\npre.code .ln { color: gray; } /* line numbers */\npre.code, code { background-color: #eeeeee }\npre.code .comment, code .comment { color: #5C6576 }\npre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }\npre.code .literal.string, code .literal.string { color: #0C5404 }\npre.code .name.builtin, code .name.builtin { color: #352B84 }\npre.code .deleted, code .deleted { background-color: #DEB0A1}\npre.code .inserted, code .inserted { background-color: #A3D289}\n\nspan.classifier {\n  font-family: sans-serif ;\n  font-style: oblique }\n\nspan.classifier-delimiter {\n  font-family: sans-serif ;\n  font-weight: bold }\n\nspan.interpreted {\n  font-family: sans-serif }\n\nspan.option {\n  white-space: nowrap }\n\nspan.pre {\n  white-space: pre }\n\nspan.problematic, pre.problematic {\n  color: red }\n\nspan.section-subtitle {\n  /* font-size relative to parent (h1..h6 element) */\n  font-size: 80% }\n\ntable.citation {\n  border-left: solid 1px gray;\n  margin-left: 1px }\n\ntable.docinfo {\n  margin: 2em 4em }\n\ntable.docutils {\n  margin-top: 0.5em ;\n  margin-bottom: 0.5em }\n\ntable.footnote {\n  border-left: solid 1px black;\n  margin-left: 1px }\n\ntable.docutils td, table.docutils th,\ntable.docinfo td, table.docinfo th {\n  padding-left: 0.5em ;\n  padding-right: 0.5em ;\n  vertical-align: top }\n\ntable.docutils th.field-name, table.docinfo th.docinfo-name {\n  font-weight: bold ;\n  text-align: left ;\n  white-space: nowrap ;\n  padding-left: 0 }\n\n/* \"booktabs\" style (no vertical lines) */\ntable.docutils.booktabs {\n  border: 0px;\n  border-top: 2px solid;\n  border-bottom: 2px solid;\n  border-collapse: collapse;\n}\ntable.docutils.booktabs * {\n  border: 0px;\n}\ntable.docutils.booktabs th {\n  border-bottom: thin solid;\n  text-align: left;\n}\n\nh1 tt.docutils, h2 tt.docutils, h3 tt.docutils,\nh4 tt.docutils, h5 tt.docutils, h6 tt.docutils {\n  font-size: 100% }\n\nul.auto-toc {\n  list-style-type: none }\n\n</style>\n</head>\n<body>\n<div class=\"document\">\n\n\n<a class=\"reference external image-reference\" href=\"https://odoo-community.org/get-involved?utm_source=readme\">\n<img alt=\"Odoo Community Association\" src=\"https://odoo-community.org/readme-banner-image\" />\n</a>\n<div class=\"section\" id=\"voip-oca\">\n<h1>Voip OCA</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:086afdaef4e3dac069f318b49701f7c781a80ead945dad55e802a5e63509620e\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->\n<p><a class=\"reference external image-reference\" href=\"https://odoo-community.org/page/development-status\"><img alt=\"Beta\" src=\"https://img.shields.io/badge/maturity-Beta-yellow.png\" /></a> <a class=\"reference external image-reference\" href=\"http://www.gnu.org/licenses/agpl-3.0-standalone.html\"><img alt=\"License: AGPL-3\" src=\"https://img.shields.io/badge/license-AGPL--3-blue.png\" /></a> <a class=\"reference external image-reference\" href=\"https://github.com/OCA/connector-telephony/tree/18.0/voip_oca\"><img alt=\"OCA/connector-telephony\" src=\"https://img.shields.io/badge/github-OCA%2Fconnector--telephony-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/connector-telephony-18-0/connector-telephony-18-0-voip_oca\"><img alt=\"Translate me on Weblate\" src=\"https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\" /></a> <a class=\"reference external image-reference\" href=\"https://runboat.odoo-community.org/builds?repo=OCA/connector-telephony&amp;target_branch=18.0\"><img alt=\"Try me on Runboat\" src=\"https://img.shields.io/badge/runboat-Try%20me-875A7B.png\" /></a></p>\n<p>This module allows the use of VOIP directly from Odoo.</p>\n<p>It relies on SIP.js to connect to the PBX using a websocket directly\nfrom the browser.</p>\n<p>Odoo server will not connect directly to the PBX server, but will have\nusers and passwords stored.</p>\n<p>In order to use this module, you need to have a PBX server that allows\nwebsocket connection. Otherwise, you need to use a proxy that will be\nthe bridge between Odoo and PBX. Websocket connection is required\nbecause browsers prefer this kind of connections. Also, this is an\nstandard connection defined on RFC 7118 by IETF. Several PBX servers\nsupport this protocol.</p>\n<p><strong>Table of contents</strong></p>\n<div class=\"contents local topic\" id=\"contents\">\n<ul class=\"simple\">\n<li><a class=\"reference internal\" href=\"#use-cases-context\" id=\"toc-entry-1\">Use Cases / Context</a></li>\n<li><a class=\"reference internal\" href=\"#configuration\" id=\"toc-entry-2\">Configuration</a><ul>\n<li><a class=\"reference internal\" href=\"#create-the-pbx-connection\" id=\"toc-entry-3\">Create the PBX Connection</a></li>\n<li><a class=\"reference internal\" href=\"#configure-users\" id=\"toc-entry-4\">Configure users</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-5\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#known-issues-roadmap\" id=\"toc-entry-6\">Known issues / Roadmap</a><ul>\n<li><a class=\"reference internal\" href=\"#not-contempled-behavior\" id=\"toc-entry-7\">Not contempled behavior</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-8\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-9\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-10\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-11\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-12\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-13\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"use-cases-context\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Use Cases / Context</a></h2>\n<p>This module is intended to integrate directly with a VOIP Provider.</p>\n<p>The provider need to supply a WebRTC system where we will plug on it.</p>\n<p>Currently, it has been tested with:</p>\n<ul class=\"simple\">\n<li><a class=\"reference external\" href=\"https://zerovoz.com/\">Zerovoz</a></li>\n<li><a class=\"reference external\" href=\"https://www.ringover.es/\">Ringover</a></li>\n</ul>\n<p>Theoretically, it should work with</p>\n<ul class=\"simple\">\n<li>Axivox</li>\n<li>OnSIP</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Configuration</a></h2>\n<div class=\"section\" id=\"create-the-pbx-connection\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-3\">Create the PBX Connection</a></h3>\n<ul class=\"simple\">\n<li>Access in Debug mode.</li>\n<li>Go to <tt class=\"docutils literal\">Settings &gt; Technical &gt; Discuss &gt; PBX Servers</tt>.</li>\n<li>Create a PBX server and define the domain name and websocket link.</li>\n</ul>\n<p>You can set it as <tt class=\"docutils literal\">Test</tt> or <tt class=\"docutils literal\">Production</tt>. Test environment will\nnever contact the PBX server.</p>\n</div>\n<div class=\"section\" id=\"configure-users\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">Configure users</a></h3>\n<p>For each user, we need to define their PBX server, user and password if\nwe want it to be able to access the PBX server and make calls. To do\nthis, we have two options:</p>\n<ol class=\"arabic simple\">\n<li>Admin users can define the information directly in the user form for\neach user. For this, go to Settings &gt; Users &amp; Companies &gt; Users and\ngo to VOIP tab and set the information.</li>\n<li>By other hand, each user can go to Preferences and modify the\ninformation in the VOIP tab.</li>\n</ol>\n</div>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-5\">Usage</a></h2>\n<p>Automatically the system will login into the PBX server once we enter\nodoo with our user. If we are on a test environment, no login is made\nand the libraries of SIP are not loaded.</p>\n<p>Once we are logged, we can use the VOIP widget in order to call\ndirectly. In order to open all the selectors, we can press the softphone\nbutton on the top bar…</p>\n<div class=\"figure\">\n<img alt=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/softphone.png\" src=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/softphone.png\" />\n</div>\n<p>…and the bottom widget will be opened.</p>\n<div class=\"figure\">\n<img alt=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/widget.png\" src=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/widget.png\" />\n</div>\n<p>The widget can be hidden by clicking on the top bar.</p>\n<div class=\"figure\">\n<img alt=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/hidden_widget.png\" src=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/hidden_widget.png\" />\n</div>\n<p>Clicking the top bar of the widget again will make it reappear.</p>\n<p>We can make a call in 2 ways:</p>\n<ol class=\"arabic simple\">\n<li>Clicking the partner’s number in the partner view, which appears in\ngreen. .. figure:: <a class=\"reference external\" href=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/partner.png\">https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/partner.png</a></li>\n<li>Opening the numpad located at the bottom left of the widget, entering\nthe desired number, and clicking the call button located at the\nbottom right of the widget. .. figure:: <a class=\"reference external\" href=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/numpad.png\">https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/numpad.png</a></li>\n</ol>\n<p>Inside a call, we can transfer the call, end the call, mute the call and\nput the call on Hold.</p>\n<p>The widget offers 3 sections:</p>\n<ol class=\"arabic simple\">\n<li>Recent calls: Here we have a list of the last calls made, along with\nadditional call information such as call date and time, status, or\nduration.</li>\n<li>Call Activities: Here we have a list of call activities assigned to\nus in any Odoo document(crm.lead, sale.order…) that has expired or\nis about to expire and needs to be completed.</li>\n<li>Contacts: Lastly, we have quick access to all stored partners in our\nOdoo who have a telephone number set.</li>\n</ol>\n<p>Clicking on any record in these three sections gives us access to the\nrelated partner, allowing us to view their information and make a call.</p>\n<p>In the partner view of the widget, we can perform three actions:</p>\n<ol class=\"arabic simple\">\n<li>Send an email to the partner.</li>\n<li>Access the partner’s form in Odoo.</li>\n<li>Schedule an activity.</li>\n</ol>\n<div class=\"figure\">\n<img alt=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/actions.png\" src=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/actions.png\" />\n</div>\n<p>If the partner is unknown and not stored in Odoo, some actions may not\nbe available. This can occur when accessing a recent call made to a\ncontact that is not stored for example. However, in this case, we allow\nthe action to store the contact in Odoo from recent calls, clicking on\nthe plus icon button.</p>\n<div class=\"figure\">\n<img alt=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/unknown_partner_actions.png\" src=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/unknown_partner_actions.png\" />\n</div>\n<p>Additionally, if we access a contact through the activity section, we\nhave four more available actions:</p>\n<ol class=\"arabic simple\">\n<li>Go to the related document, such as a lead or a sale.</li>\n<li>Mark the activity as done.</li>\n<li>Edit the activity.</li>\n<li>Cancel the activity.</li>\n</ol>\n<div class=\"figure\">\n<img alt=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/activity_actions.png\" src=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/activity_actions.png\" />\n</div>\n<p>In any tab, we can perform a search by typing a keyword in the search\nbar, such as the contact’s name or phone number.</p>\n<div class=\"figure\">\n<img alt=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/search.png\" src=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/search.png\" />\n</div>\n<p>Also, the system allows to receive call. In that case, the system will\ntry to find the related partner and will open the widget automatically.</p>\n<div class=\"figure\">\n<img alt=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/received_call.png\" src=\"https://raw.githubusercontent.com/OCA/connector-telephony/18.0/voip_oca/static/description/received_call.png\" />\n</div>\n</div>\n<div class=\"section\" id=\"known-issues-roadmap\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">Known issues / Roadmap</a></h2>\n<p>The following options are interesting but are not implemented right now:</p>\n<ul class=\"simple\">\n<li>Allow to enable or disable the VOIP as a user (Login / Logout)</li>\n<li>Create a call system where the calls are done automatically according\nto tasks</li>\n</ul>\n<div class=\"section\" id=\"not-contempled-behavior\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">Not contempled behavior</a></h3>\n<p>We are not supporting setting two configuration for user. Not even a\ndifferent configuration for company in the user.</p>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-8\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/connector-telephony/issues\">GitHub Issues</a>.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us to smash it by providing a detailed and welcomed\n<a class=\"reference external\" href=\"https://github.com/OCA/connector-telephony/issues/new?body=module:%20voip_oca%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**\">feedback</a>.</p>\n<p>Do not contact contributors directly about support or help with technical issues.</p>\n</div>\n<div class=\"section\" id=\"credits\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-9\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-10\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Dixmit</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-11\">Contributors</a></h3>\n<ul class=\"simple\">\n<li><a class=\"reference external\" href=\"https://www.dixmit.com\">Dixmit</a>:<ul>\n<li>Enric Alomar</li>\n<li>Luis Rodríguez</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Carlos Roca</li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-12\">Other credits</a></h3>\n<p>The development of this module has been financially supported by:</p>\n<ul class=\"simple\">\n<li>Associacion Española de Odoo (<a class=\"reference external\" href=\"https://www.aeodoo.org/\">AEODOO</a>)</li>\n</ul>\n<p>The tones provided by default comes from Pixabay:</p>\n<ul class=\"simple\">\n<li>Ringback tone: Sound Effect by freesound_community from Pixabay</li>\n<li>Call tone: Sound Effect by Jeremay Jimenez from Pixabay</li>\n<li>Dial tone: Sound Effect by freesound_community from Pixabay</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-13\">Maintainers</a></h3>\n<p>This module is maintained by the OCA.</p>\n<a class=\"reference external image-reference\" href=\"https://odoo-community.org\">\n<img alt=\"Odoo Community Association\" src=\"https://odoo-community.org/logo.png\" />\n</a>\n<p>OCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.</p>\n<p>Current <a class=\"reference external\" href=\"https://odoo-community.org/page/maintainer-role\">maintainer</a>:</p>\n<p><a class=\"reference external image-reference\" href=\"https://github.com/etobella\"><img alt=\"etobella\" src=\"https://github.com/etobella.png?size=40px\" /></a></p>\n<p>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/connector-telephony/tree/18.0/voip_oca\">OCA/connector-telephony</a> project on GitHub.</p>\n<p>You are welcome to contribute. To learn how please visit <a class=\"reference external\" href=\"https://odoo-community.org/page/Contribute\">https://odoo-community.org/page/Contribute</a>.</p>\n</div>\n</div>\n</div>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "voip_oca/static/lib/sip.js",
    "content": "/*!\n * \n *  SIP version 0.21.2\n *  Copyright (c) 2014-2022 Junction Networks, Inc <http://www.onsip.com>\n *  Homepage: https://sipjs.com\n *  License: https://sipjs.com/license/\n *\n *\n *  ~~~SIP.js contains substantial portions of JsSIP under the following license~~~\n *  Homepage: http://jssip.net\n *  Copyright (c) 2012-2013 José Luis Millán - Versatica <http://www.versatica.com>\n *\n *  Permission is hereby granted, free of charge, to any person obtaining\n *  a copy of this software and associated documentation files (the\n *  \"Software\"), to deal in the Software without restriction, including\n *  without limitation the rights to use, copy, modify, merge, publish,\n *  distribute, sublicense, and/or sell copies of the Software, and to\n *  permit persons to whom the Software is furnished to do so, subject to\n *  the following conditions:\n *\n *  The above copyright notice and this permission notice shall be\n *  included in all copies or substantial portions of the Software.\n *\n *  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n *\n *  ~~~ end JsSIP license ~~~\n *\n *\n *\n *\n */\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"SIP\"] = factory();\n\telse\n\t\troot[\"SIP\"] = factory();\n})(this, () => {\nreturn /******/ (() => { // webpackBootstrap\n/******/ \t\"use strict\";\n/******/ \tvar __webpack_modules__ = ([\n/* 0 */,\n/* 1 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"LIBRARY_VERSION\": () => (/* binding */ LIBRARY_VERSION)\n/* harmony export */ });\nconst LIBRARY_VERSION = \"0.21.2\";\n\n\n/***/ }),\n/* 2 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Ack\": () => (/* reexport safe */ _ack_js__WEBPACK_IMPORTED_MODULE_1__.Ack),\n/* harmony export */   \"Bye\": () => (/* reexport safe */ _bye_js__WEBPACK_IMPORTED_MODULE_2__.Bye),\n/* harmony export */   \"Cancel\": () => (/* reexport safe */ _cancel_js__WEBPACK_IMPORTED_MODULE_3__.Cancel),\n/* harmony export */   \"ContentTypeUnsupportedError\": () => (/* reexport safe */ _exceptions_index_js__WEBPACK_IMPORTED_MODULE_0__.ContentTypeUnsupportedError),\n/* harmony export */   \"EmitterImpl\": () => (/* reexport safe */ _emitter_js__WEBPACK_IMPORTED_MODULE_4__.EmitterImpl),\n/* harmony export */   \"Info\": () => (/* reexport safe */ _info_js__WEBPACK_IMPORTED_MODULE_5__.Info),\n/* harmony export */   \"Invitation\": () => (/* reexport safe */ _invitation_js__WEBPACK_IMPORTED_MODULE_6__.Invitation),\n/* harmony export */   \"Inviter\": () => (/* reexport safe */ _inviter_js__WEBPACK_IMPORTED_MODULE_7__.Inviter),\n/* harmony export */   \"Message\": () => (/* reexport safe */ _message_js__WEBPACK_IMPORTED_MODULE_8__.Message),\n/* harmony export */   \"Messager\": () => (/* reexport safe */ _messager_js__WEBPACK_IMPORTED_MODULE_9__.Messager),\n/* harmony export */   \"Notification\": () => (/* reexport safe */ _notification_js__WEBPACK_IMPORTED_MODULE_10__.Notification),\n/* harmony export */   \"Publisher\": () => (/* reexport safe */ _publisher_js__WEBPACK_IMPORTED_MODULE_12__.Publisher),\n/* harmony export */   \"PublisherState\": () => (/* reexport safe */ _publisher_state_js__WEBPACK_IMPORTED_MODULE_11__.PublisherState),\n/* harmony export */   \"Referral\": () => (/* reexport safe */ _referral_js__WEBPACK_IMPORTED_MODULE_13__.Referral),\n/* harmony export */   \"Registerer\": () => (/* reexport safe */ _registerer_js__WEBPACK_IMPORTED_MODULE_15__.Registerer),\n/* harmony export */   \"RegistererState\": () => (/* reexport safe */ _registerer_state_js__WEBPACK_IMPORTED_MODULE_14__.RegistererState),\n/* harmony export */   \"RequestPendingError\": () => (/* reexport safe */ _exceptions_index_js__WEBPACK_IMPORTED_MODULE_0__.RequestPendingError),\n/* harmony export */   \"SIPExtension\": () => (/* reexport safe */ _user_agent_options_js__WEBPACK_IMPORTED_MODULE_22__.SIPExtension),\n/* harmony export */   \"Session\": () => (/* reexport safe */ _session_js__WEBPACK_IMPORTED_MODULE_17__.Session),\n/* harmony export */   \"SessionDescriptionHandlerError\": () => (/* reexport safe */ _exceptions_index_js__WEBPACK_IMPORTED_MODULE_0__.SessionDescriptionHandlerError),\n/* harmony export */   \"SessionState\": () => (/* reexport safe */ _session_state_js__WEBPACK_IMPORTED_MODULE_16__.SessionState),\n/* harmony export */   \"SessionTerminatedError\": () => (/* reexport safe */ _exceptions_index_js__WEBPACK_IMPORTED_MODULE_0__.SessionTerminatedError),\n/* harmony export */   \"StateTransitionError\": () => (/* reexport safe */ _exceptions_index_js__WEBPACK_IMPORTED_MODULE_0__.StateTransitionError),\n/* harmony export */   \"Subscriber\": () => (/* reexport safe */ _subscriber_js__WEBPACK_IMPORTED_MODULE_18__.Subscriber),\n/* harmony export */   \"Subscription\": () => (/* reexport safe */ _subscription_js__WEBPACK_IMPORTED_MODULE_20__.Subscription),\n/* harmony export */   \"SubscriptionState\": () => (/* reexport safe */ _subscription_state_js__WEBPACK_IMPORTED_MODULE_19__.SubscriptionState),\n/* harmony export */   \"TransportState\": () => (/* reexport safe */ _transport_state_js__WEBPACK_IMPORTED_MODULE_21__.TransportState),\n/* harmony export */   \"UserAgent\": () => (/* reexport safe */ _user_agent_js__WEBPACK_IMPORTED_MODULE_24__.UserAgent),\n/* harmony export */   \"UserAgentRegisteredOptionTags\": () => (/* reexport safe */ _user_agent_options_js__WEBPACK_IMPORTED_MODULE_22__.UserAgentRegisteredOptionTags),\n/* harmony export */   \"UserAgentState\": () => (/* reexport safe */ _user_agent_state_js__WEBPACK_IMPORTED_MODULE_23__.UserAgentState)\n/* harmony export */ });\n/* harmony import */ var _exceptions_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(3);\n/* harmony import */ var _ack_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(10);\n/* harmony import */ var _bye_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(11);\n/* harmony import */ var _cancel_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(12);\n/* harmony import */ var _emitter_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(13);\n/* harmony import */ var _info_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(14);\n/* harmony import */ var _invitation_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(15);\n/* harmony import */ var _inviter_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(38);\n/* harmony import */ var _message_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(32);\n/* harmony import */ var _messager_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(39);\n/* harmony import */ var _notification_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(33);\n/* harmony import */ var _publisher_state_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(40);\n/* harmony import */ var _publisher_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(41);\n/* harmony import */ var _referral_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(34);\n/* harmony import */ var _registerer_state_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(42);\n/* harmony import */ var _registerer_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(43);\n/* harmony import */ var _session_state_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(17);\n/* harmony import */ var _session_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(16);\n/* harmony import */ var _subscriber_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(44);\n/* harmony import */ var _subscription_state_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(46);\n/* harmony import */ var _subscription_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(45);\n/* harmony import */ var _transport_state_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(48);\n/* harmony import */ var _user_agent_options_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(35);\n/* harmony import */ var _user_agent_state_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(49);\n/* harmony import */ var _user_agent_js__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(50);\n/**\n * A simple yet powerful API which takes care of SIP signaling and WebRTC media sessions for you.\n * @packageDocumentation\n */\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/***/ }),\n/* 3 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ContentTypeUnsupportedError\": () => (/* reexport safe */ _content_type_unsupported_js__WEBPACK_IMPORTED_MODULE_0__.ContentTypeUnsupportedError),\n/* harmony export */   \"RequestPendingError\": () => (/* reexport safe */ _request_pending_js__WEBPACK_IMPORTED_MODULE_1__.RequestPendingError),\n/* harmony export */   \"SessionDescriptionHandlerError\": () => (/* reexport safe */ _session_description_handler_js__WEBPACK_IMPORTED_MODULE_2__.SessionDescriptionHandlerError),\n/* harmony export */   \"SessionTerminatedError\": () => (/* reexport safe */ _session_terminated_js__WEBPACK_IMPORTED_MODULE_3__.SessionTerminatedError),\n/* harmony export */   \"StateTransitionError\": () => (/* reexport safe */ _state_transition_js__WEBPACK_IMPORTED_MODULE_4__.StateTransitionError)\n/* harmony export */ });\n/* harmony import */ var _content_type_unsupported_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4);\n/* harmony import */ var _request_pending_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6);\n/* harmony import */ var _session_description_handler_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);\n/* harmony import */ var _session_terminated_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(8);\n/* harmony import */ var _state_transition_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(9);\n\n\n\n\n\n\n\n/***/ }),\n/* 4 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ContentTypeUnsupportedError\": () => (/* binding */ ContentTypeUnsupportedError)\n/* harmony export */ });\n/* harmony import */ var _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);\n\n/**\n * An exception indicating an unsupported content type prevented execution.\n * @public\n */\nclass ContentTypeUnsupportedError extends _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__.Exception {\n    constructor(message) {\n        super(message ? message : \"Unsupported content type.\");\n    }\n}\n\n\n/***/ }),\n/* 5 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Exception\": () => (/* binding */ Exception)\n/* harmony export */ });\n/**\n * An Exception is considered a condition that a reasonable application may wish to catch.\n * An Error indicates serious problems that a reasonable application should not try to catch.\n * @public\n */\nclass Exception extends Error {\n    constructor(message) {\n        super(message); // 'Error' breaks prototype chain here\n        Object.setPrototypeOf(this, new.target.prototype); // restore prototype chain\n    }\n}\n\n\n/***/ }),\n/* 6 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"RequestPendingError\": () => (/* binding */ RequestPendingError)\n/* harmony export */ });\n/* harmony import */ var _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);\n\n/**\n * An exception indicating an outstanding prior request prevented execution.\n * @public\n */\nclass RequestPendingError extends _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__.Exception {\n    /** @internal */\n    constructor(message) {\n        super(message ? message : \"Request pending.\");\n    }\n}\n\n\n/***/ }),\n/* 7 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionDescriptionHandlerError\": () => (/* binding */ SessionDescriptionHandlerError)\n/* harmony export */ });\n/* harmony import */ var _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);\n\n/**\n * An exception indicating a session description handler error occured.\n * @public\n */\nclass SessionDescriptionHandlerError extends _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__.Exception {\n    constructor(message) {\n        super(message ? message : \"Unspecified session description handler error.\");\n    }\n}\n\n\n/***/ }),\n/* 8 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionTerminatedError\": () => (/* binding */ SessionTerminatedError)\n/* harmony export */ });\n/* harmony import */ var _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);\n\n/**\n * An exception indicating the session terminated before the action completed.\n * @public\n */\nclass SessionTerminatedError extends _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__.Exception {\n    constructor() {\n        super(\"The session has terminated.\");\n    }\n}\n\n\n/***/ }),\n/* 9 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"StateTransitionError\": () => (/* binding */ StateTransitionError)\n/* harmony export */ });\n/* harmony import */ var _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);\n\n/**\n * An exception indicating an invalid state transition error occured.\n * @public\n */\nclass StateTransitionError extends _core_exceptions_exception_js__WEBPACK_IMPORTED_MODULE_0__.Exception {\n    constructor(message) {\n        super(message ? message : \"An error occurred during state transition.\");\n    }\n}\n\n\n/***/ }),\n/* 10 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Ack\": () => (/* binding */ Ack)\n/* harmony export */ });\n/**\n * A request to confirm a {@link Session} (incoming ACK).\n * @public\n */\nclass Ack {\n    /** @internal */\n    constructor(incomingAckRequest) {\n        this.incomingAckRequest = incomingAckRequest;\n    }\n    /** Incoming ACK request message. */\n    get request() {\n        return this.incomingAckRequest.message;\n    }\n}\n\n\n/***/ }),\n/* 11 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Bye\": () => (/* binding */ Bye)\n/* harmony export */ });\n/**\n * A request to end a {@link Session} (incoming BYE).\n * @public\n */\nclass Bye {\n    /** @internal */\n    constructor(incomingByeRequest) {\n        this.incomingByeRequest = incomingByeRequest;\n    }\n    /** Incoming BYE request message. */\n    get request() {\n        return this.incomingByeRequest.message;\n    }\n    /** Accept the request. */\n    accept(options) {\n        this.incomingByeRequest.accept(options);\n        return Promise.resolve();\n    }\n    /** Reject the request. */\n    reject(options) {\n        this.incomingByeRequest.reject(options);\n        return Promise.resolve();\n    }\n}\n\n\n/***/ }),\n/* 12 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Cancel\": () => (/* binding */ Cancel)\n/* harmony export */ });\n/**\n * A request to reject an {@link Invitation} (incoming CANCEL).\n * @public\n */\nclass Cancel {\n    /** @internal */\n    constructor(incomingCancelRequest) {\n        this.incomingCancelRequest = incomingCancelRequest;\n    }\n    /** Incoming CANCEL request message. */\n    get request() {\n        return this.incomingCancelRequest;\n    }\n}\n\n\n/***/ }),\n/* 13 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"EmitterImpl\": () => (/* binding */ EmitterImpl)\n/* harmony export */ });\n/**\n * An {@link Emitter} implementation.\n * @internal\n */\nclass EmitterImpl {\n    constructor() {\n        this.listeners = new Array();\n    }\n    /**\n     * Sets up a function that will be called whenever the target changes.\n     * @param listener - Callback function.\n     * @param options - An options object that specifies characteristics about the listener.\n     *                  If once true, indicates that the listener should be invoked at most once after being added.\n     *                  If once true, the listener would be automatically removed when invoked.\n     */\n    addListener(listener, options) {\n        const onceWrapper = (data) => {\n            this.removeListener(onceWrapper);\n            listener(data);\n        };\n        (options === null || options === void 0 ? void 0 : options.once) === true ? this.listeners.push(onceWrapper) : this.listeners.push(listener);\n    }\n    /**\n     * Emit change.\n     * @param data - Data to emit.\n     */\n    emit(data) {\n        this.listeners.slice().forEach((listener) => listener(data));\n    }\n    /**\n     * Removes all listeners previously registered with addListener.\n     */\n    removeAllListeners() {\n        this.listeners = [];\n    }\n    /**\n     * Removes a listener previously registered with addListener.\n     * @param listener - Callback function.\n     */\n    removeListener(listener) {\n        this.listeners = this.listeners.filter((l) => l !== listener);\n    }\n    /**\n     * Registers a listener.\n     * @param listener - Callback function.\n     * @deprecated Use addListener.\n     */\n    on(listener) {\n        return this.addListener(listener);\n    }\n    /**\n     * Unregisters a listener.\n     * @param listener - Callback function.\n     * @deprecated Use removeListener.\n     */\n    off(listener) {\n        return this.removeListener(listener);\n    }\n    /**\n     * Registers a listener then unregisters the listener after one event emission.\n     * @param listener - Callback function.\n     * @deprecated Use addListener.\n     */\n    once(listener) {\n        return this.addListener(listener, { once: true });\n    }\n}\n\n\n/***/ }),\n/* 14 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Info\": () => (/* binding */ Info)\n/* harmony export */ });\n/**\n * An exchange of information (incoming INFO).\n * @public\n */\nclass Info {\n    /** @internal */\n    constructor(incomingInfoRequest) {\n        this.incomingInfoRequest = incomingInfoRequest;\n    }\n    /** Incoming MESSAGE request message. */\n    get request() {\n        return this.incomingInfoRequest.message;\n    }\n    /** Accept the request. */\n    accept(options) {\n        this.incomingInfoRequest.accept(options);\n        return Promise.resolve();\n    }\n    /** Reject the request. */\n    reject(options) {\n        this.incomingInfoRequest.reject(options);\n        return Promise.resolve();\n    }\n}\n\n\n/***/ }),\n/* 15 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Invitation\": () => (/* binding */ Invitation)\n/* harmony export */ });\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(22);\n/* harmony import */ var _core_messages_body_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(18);\n/* harmony import */ var _core_session_session_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(31);\n/* harmony import */ var _core_timers_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(37);\n/* harmony import */ var _core_exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(36);\n/* harmony import */ var _core_messages_utils_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(21);\n/* harmony import */ var _cancel_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(12);\n/* harmony import */ var _exceptions_content_type_unsupported_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(4);\n/* harmony import */ var _exceptions_session_description_handler_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(7);\n/* harmony import */ var _exceptions_session_terminated_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(8);\n/* harmony import */ var _session_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16);\n/* harmony import */ var _session_state_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(17);\n/* harmony import */ var _user_agent_options_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(35);\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * An invitation is an offer to establish a {@link Session} (incoming INVITE).\n * @public\n */\nclass Invitation extends _session_js__WEBPACK_IMPORTED_MODULE_0__.Session {\n    /** @internal */\n    constructor(userAgent, incomingInviteRequest) {\n        super(userAgent);\n        this.incomingInviteRequest = incomingInviteRequest;\n        /** True if dispose() has been called. */\n        this.disposed = false;\n        /** INVITE will be rejected if not accepted within a certain period time. */\n        this.expiresTimer = undefined;\n        /** True if this Session has been Terminated due to a CANCEL request. */\n        this.isCanceled = false;\n        /** Are reliable provisional responses required or supported. */\n        this.rel100 = \"none\";\n        /** The current RSeq header value. */\n        this.rseq = Math.floor(Math.random() * 10000);\n        /** INVITE will be rejected if final response not sent in a certain period time. */\n        this.userNoAnswerTimer = undefined;\n        /** True if waiting for a PRACK before sending a 200 Ok. */\n        this.waitingForPrack = false;\n        this.logger = userAgent.getLogger(\"sip.Invitation\");\n        const incomingRequestMessage = this.incomingInviteRequest.message;\n        // Set 100rel if necessary\n        const requireHeader = incomingRequestMessage.getHeader(\"require\");\n        if (requireHeader && requireHeader.toLowerCase().includes(\"100rel\")) {\n            this.rel100 = \"required\";\n        }\n        const supportedHeader = incomingRequestMessage.getHeader(\"supported\");\n        if (supportedHeader && supportedHeader.toLowerCase().includes(\"100rel\")) {\n            this.rel100 = \"supported\";\n        }\n        // FIXME: HACK: This is a hack to port an existing behavior.\n        // Set the toTag on the incoming request message to the toTag which\n        // will be used in the response to the incoming request!!!\n        // The behavior being ported appears to be a hack itself,\n        // so this is a hack to port a hack. At least one test spec\n        // relies on it (which is yet another hack).\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        incomingRequestMessage.toTag = incomingInviteRequest.toTag;\n        if (typeof incomingRequestMessage.toTag !== \"string\") {\n            throw new TypeError(\"toTag should have been a string.\");\n        }\n        // The following mapping values are RECOMMENDED:\n        // ...\n        // 19 no answer from the user              480 Temporarily unavailable\n        // https://tools.ietf.org/html/rfc3398#section-7.2.4.1\n        this.userNoAnswerTimer = setTimeout(() => {\n            incomingInviteRequest.reject({ statusCode: 480 });\n            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminated);\n        }, this.userAgent.configuration.noAnswerTimeout ? this.userAgent.configuration.noAnswerTimeout * 1000 : 60000);\n        // 1. If the request is an INVITE that contains an Expires header\n        // field, the UAS core sets a timer for the number of seconds\n        // indicated in the header field value.  When the timer fires, the\n        // invitation is considered to be expired.  If the invitation\n        // expires before the UAS has generated a final response, a 487\n        // (Request Terminated) response SHOULD be generated.\n        // https://tools.ietf.org/html/rfc3261#section-13.3.1\n        if (incomingRequestMessage.hasHeader(\"expires\")) {\n            const expires = Number(incomingRequestMessage.getHeader(\"expires\") || 0) * 1000;\n            this.expiresTimer = setTimeout(() => {\n                if (this.state === _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Initial) {\n                    incomingInviteRequest.reject({ statusCode: 487 });\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminated);\n                }\n            }, expires);\n        }\n        // Session parent properties\n        const assertedIdentity = this.request.getHeader(\"P-Asserted-Identity\");\n        if (assertedIdentity) {\n            this._assertedIdentity = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.nameAddrHeaderParse(assertedIdentity);\n        }\n        this._contact = this.userAgent.contact.toString();\n        const contentDisposition = incomingRequestMessage.parseHeader(\"Content-Disposition\");\n        if (contentDisposition && contentDisposition.type === \"render\") {\n            this._renderbody = incomingRequestMessage.body;\n            this._rendertype = incomingRequestMessage.getHeader(\"Content-Type\");\n        }\n        // Identifier\n        this._id = incomingRequestMessage.callId + incomingRequestMessage.fromTag;\n        // Add to the user agent's session collection.\n        this.userAgent._sessions[this._id] = this;\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        // Only run through this once. It can and does get called multiple times\n        // depending on the what the sessions state is when first called.\n        // For example, if called when \"establishing\" it will be called again\n        // at least once when the session transitions to \"terminated\".\n        // Regardless, running through this more than once is pointless.\n        if (this.disposed) {\n            return Promise.resolve();\n        }\n        this.disposed = true;\n        // Clear timers\n        if (this.expiresTimer) {\n            clearTimeout(this.expiresTimer);\n            this.expiresTimer = undefined;\n        }\n        if (this.userNoAnswerTimer) {\n            clearTimeout(this.userNoAnswerTimer);\n            this.userNoAnswerTimer = undefined;\n        }\n        // If accept() is still waiting for a PRACK, make sure it rejects\n        this.prackNeverArrived();\n        // If the final response for the initial INVITE not yet been sent, reject it\n        switch (this.state) {\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Initial:\n                return this.reject().then(() => super.dispose());\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Establishing:\n                return this.reject().then(() => super.dispose());\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Established:\n                return super.dispose();\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminating:\n                return super.dispose();\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminated:\n                return super.dispose();\n            default:\n                throw new Error(\"Unknown state.\");\n        }\n    }\n    /**\n     * If true, a first provisional response after the 100 Trying\n     * will be sent automatically. This is false it the UAC required\n     * reliable provisional responses (100rel in Require header) or\n     * the user agent configuration has specified to not send an\n     * initial response, otherwise it is true. The provisional is sent by\n     * calling `progress()` without any options.\n     */\n    get autoSendAnInitialProvisionalResponse() {\n        return this.rel100 !== \"required\" && this.userAgent.configuration.sendInitialProvisionalResponse;\n    }\n    /**\n     * Initial incoming INVITE request message body.\n     */\n    get body() {\n        return this.incomingInviteRequest.message.body;\n    }\n    /**\n     * The identity of the local user.\n     */\n    get localIdentity() {\n        return this.request.to;\n    }\n    /**\n     * The identity of the remote user.\n     */\n    get remoteIdentity() {\n        return this.request.from;\n    }\n    /**\n     * Initial incoming INVITE request message.\n     */\n    get request() {\n        return this.incomingInviteRequest.message;\n    }\n    /**\n     * Accept the invitation.\n     *\n     * @remarks\n     * Accept the incoming INVITE request to start a Session.\n     * Replies to the INVITE request with a 200 Ok response.\n     * Resolves once the response sent, otherwise rejects.\n     *\n     * This method may reject for a variety of reasons including\n     * the receipt of a CANCEL request before `accept` is able\n     * to construct a response.\n     * @param options - Options bucket.\n     */\n    accept(options = {}) {\n        this.logger.log(\"Invitation.accept\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Initial) {\n            const error = new Error(`Invalid session state ${this.state}`);\n            this.logger.error(error.message);\n            return Promise.reject(error);\n        }\n        // Modifiers and options for initial INVITE transaction\n        if (options.sessionDescriptionHandlerModifiers) {\n            this.sessionDescriptionHandlerModifiers = options.sessionDescriptionHandlerModifiers;\n        }\n        if (options.sessionDescriptionHandlerOptions) {\n            this.sessionDescriptionHandlerOptions = options.sessionDescriptionHandlerOptions;\n        }\n        // transition state\n        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Establishing);\n        return (this.sendAccept(options)\n            // eslint-disable-next-line @typescript-eslint/no-unused-vars\n            .then(({ message, session }) => {\n            session.delegate = {\n                onAck: (ackRequest) => this.onAckRequest(ackRequest),\n                onAckTimeout: () => this.onAckTimeout(),\n                onBye: (byeRequest) => this.onByeRequest(byeRequest),\n                onInfo: (infoRequest) => this.onInfoRequest(infoRequest),\n                onInvite: (inviteRequest) => this.onInviteRequest(inviteRequest),\n                onMessage: (messageRequest) => this.onMessageRequest(messageRequest),\n                onNotify: (notifyRequest) => this.onNotifyRequest(notifyRequest),\n                onPrack: (prackRequest) => this.onPrackRequest(prackRequest),\n                onRefer: (referRequest) => this.onReferRequest(referRequest)\n            };\n            this._dialog = session;\n            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Established);\n            // TODO: Reconsider this \"automagic\" send of a BYE to replacee behavior.\n            // This behavior has been ported forward from legacy versions.\n            if (this._replacee) {\n                this._replacee._bye();\n            }\n        })\n            .catch((error) => this.handleResponseError(error)));\n    }\n    /**\n     * Indicate progress processing the invitation.\n     *\n     * @remarks\n     * Report progress to the the caller.\n     * Replies to the INVITE request with a 1xx provisional response.\n     * Resolves once the response sent, otherwise rejects.\n     * @param options - Options bucket.\n     */\n    progress(options = {}) {\n        this.logger.log(\"Invitation.progress\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Initial) {\n            const error = new Error(`Invalid session state ${this.state}`);\n            this.logger.error(error.message);\n            return Promise.reject(error);\n        }\n        // Ported\n        const statusCode = options.statusCode || 180;\n        if (statusCode < 100 || statusCode > 199) {\n            throw new TypeError(\"Invalid statusCode: \" + statusCode);\n        }\n        // Modifiers and options for initial INVITE transaction\n        if (options.sessionDescriptionHandlerModifiers) {\n            this.sessionDescriptionHandlerModifiers = options.sessionDescriptionHandlerModifiers;\n        }\n        if (options.sessionDescriptionHandlerOptions) {\n            this.sessionDescriptionHandlerOptions = options.sessionDescriptionHandlerOptions;\n        }\n        // After the first reliable provisional response for a request has been\n        // acknowledged, the UAS MAY send additional reliable provisional\n        // responses.  The UAS MUST NOT send a second reliable provisional\n        // response until the first is acknowledged.  After the first, it is\n        // RECOMMENDED that the UAS not send an additional reliable provisional\n        // response until the previous is acknowledged.  The first reliable\n        // provisional response receives special treatment because it conveys\n        // the initial sequence number.  If additional reliable provisional\n        // responses were sent before the first was acknowledged, the UAS could\n        // not be certain these were received in order.\n        // https://tools.ietf.org/html/rfc3262#section-3\n        if (this.waitingForPrack) {\n            this.logger.warn(\"Unexpected call for progress while waiting for prack, ignoring\");\n            return Promise.resolve();\n        }\n        // Trying provisional response\n        if (options.statusCode === 100) {\n            return this.sendProgressTrying()\n                .then(() => {\n                return;\n            })\n                .catch((error) => this.handleResponseError(error));\n        }\n        // Standard provisional response\n        if (!(this.rel100 === \"required\") &&\n            !(this.rel100 === \"supported\" && options.rel100) &&\n            !(this.rel100 === \"supported\" && this.userAgent.configuration.sipExtension100rel === _user_agent_options_js__WEBPACK_IMPORTED_MODULE_3__.SIPExtension.Required)) {\n            return this.sendProgress(options)\n                .then(() => {\n                return;\n            })\n                .catch((error) => this.handleResponseError(error));\n        }\n        // Reliable provisional response\n        return this.sendProgressReliableWaitForPrack(options)\n            .then(() => {\n            return;\n        })\n            .catch((error) => this.handleResponseError(error));\n    }\n    /**\n     * Reject the invitation.\n     *\n     * @remarks\n     * Replies to the INVITE request with a 4xx, 5xx, or 6xx final response.\n     * Resolves once the response sent, otherwise rejects.\n     *\n     * The expectation is that this method is used to reject an INVITE request.\n     * That is indeed the case - a call to `progress` followed by `reject` is\n     * a typical way to \"decline\" an incoming INVITE request. However it may\n     * also be called after calling `accept` (but only before it completes)\n     * which will reject the call and cause `accept` to reject.\n     * @param options - Options bucket.\n     */\n    reject(options = {}) {\n        this.logger.log(\"Invitation.reject\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Initial && this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Establishing) {\n            const error = new Error(`Invalid session state ${this.state}`);\n            this.logger.error(error.message);\n            return Promise.reject(error);\n        }\n        const statusCode = options.statusCode || 480;\n        const reasonPhrase = options.reasonPhrase ? options.reasonPhrase : (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_4__.getReasonPhrase)(statusCode);\n        const extraHeaders = options.extraHeaders || [];\n        if (statusCode < 300 || statusCode > 699) {\n            throw new TypeError(\"Invalid statusCode: \" + statusCode);\n        }\n        const body = options.body ? (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_5__.fromBodyLegacy)(options.body) : undefined;\n        // FIXME: Need to redirect to someplace\n        statusCode < 400\n            ? this.incomingInviteRequest.redirect([], { statusCode, reasonPhrase, extraHeaders, body })\n            : this.incomingInviteRequest.reject({ statusCode, reasonPhrase, extraHeaders, body });\n        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminated);\n        return Promise.resolve();\n    }\n    /**\n     * Handle CANCEL request.\n     *\n     * @param message - CANCEL message.\n     * @internal\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    _onCancel(message) {\n        this.logger.log(\"Invitation._onCancel\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Initial && this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Establishing) {\n            this.logger.error(`CANCEL received while in state ${this.state}, dropping request`);\n            return;\n        }\n        if (this.delegate && this.delegate.onCancel) {\n            const cancel = new _cancel_js__WEBPACK_IMPORTED_MODULE_6__.Cancel(message);\n            this.delegate.onCancel(cancel);\n        }\n        // flag canceled\n        this.isCanceled = true;\n        // reject INVITE with 487 status code\n        this.incomingInviteRequest.reject({ statusCode: 487 });\n        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminated);\n    }\n    /**\n     * Helper function to handle offer/answer in a PRACK.\n     */\n    handlePrackOfferAnswer(request) {\n        if (!this.dialog) {\n            throw new Error(\"Dialog undefined.\");\n        }\n        // If the PRACK doesn't have an offer/answer, nothing to be done.\n        const body = (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_5__.getBody)(request.message);\n        if (!body || body.contentDisposition !== \"session\") {\n            return Promise.resolve(undefined);\n        }\n        const options = {\n            sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptions,\n            sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiers\n        };\n        // If the UAC receives a reliable provisional response with an offer\n        // (this would occur if the UAC sent an INVITE without an offer, in\n        // which case the first reliable provisional response will contain the\n        // offer), it MUST generate an answer in the PRACK.  If the UAC receives\n        // a reliable provisional response with an answer, it MAY generate an\n        // additional offer in the PRACK.  If the UAS receives a PRACK with an\n        // offer, it MUST place the answer in the 2xx to the PRACK.\n        // https://tools.ietf.org/html/rfc3262#section-5\n        switch (this.dialog.signalingState) {\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_7__.SignalingState.Initial:\n                // State should never be reached as first reliable provisional response must have answer/offer.\n                throw new Error(`Invalid signaling state ${this.dialog.signalingState}.`);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_7__.SignalingState.Stable:\n                // Receved answer.\n                return this.setAnswer(body, options).then(() => undefined);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_7__.SignalingState.HaveLocalOffer:\n                // State should never be reached as local offer would be answered by this PRACK\n                throw new Error(`Invalid signaling state ${this.dialog.signalingState}.`);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_7__.SignalingState.HaveRemoteOffer:\n                // Received offer, generate answer.\n                return this.setOfferAndGetAnswer(body, options);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_7__.SignalingState.Closed:\n                throw new Error(`Invalid signaling state ${this.dialog.signalingState}.`);\n            default:\n                throw new Error(`Invalid signaling state ${this.dialog.signalingState}.`);\n        }\n    }\n    /**\n     * A handler for errors which occur while attempting to send 1xx and 2xx responses.\n     * In all cases, an attempt is made to reject the request if it is still outstanding.\n     * And while there are a variety of things which can go wrong and we log something here\n     * for all errors, there are a handful of common exceptions we pay some extra attention to.\n     * @param error - The error which occurred.\n     */\n    handleResponseError(error) {\n        let statusCode = 480; // \"Temporarily Unavailable\"\n        // Log Error message\n        if (error instanceof Error) {\n            this.logger.error(error.message);\n        }\n        else {\n            // We don't actually know what a session description handler implementation might throw our way,\n            // and more generally as a last resort catch all, just assume we are getting an \"unknown\" and log it.\n            this.logger.error(error);\n        }\n        // Log Exception message\n        if (error instanceof _exceptions_content_type_unsupported_js__WEBPACK_IMPORTED_MODULE_8__.ContentTypeUnsupportedError) {\n            this.logger.error(\"A session description handler occurred while sending response (content type unsupported\");\n            statusCode = 415; // \"Unsupported Media Type\"\n        }\n        else if (error instanceof _exceptions_session_description_handler_js__WEBPACK_IMPORTED_MODULE_9__.SessionDescriptionHandlerError) {\n            this.logger.error(\"A session description handler occurred while sending response\");\n        }\n        else if (error instanceof _exceptions_session_terminated_js__WEBPACK_IMPORTED_MODULE_10__.SessionTerminatedError) {\n            this.logger.error(\"Session ended before response could be formulated and sent (while waiting for PRACK)\");\n        }\n        else if (error instanceof _core_exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_11__.TransactionStateError) {\n            this.logger.error(\"Session changed state before response could be formulated and sent\");\n        }\n        // Reject if still in \"initial\" or \"establishing\" state.\n        if (this.state === _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Initial || this.state === _session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Establishing) {\n            try {\n                this.incomingInviteRequest.reject({ statusCode });\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminated);\n            }\n            catch (e) {\n                this.logger.error(\"An error occurred attempting to reject the request while handling another error\");\n                throw e; // This is not a good place to be...\n            }\n        }\n        // FIXME: TODO:\n        // Here we are squelching the throwing of errors due to an race condition.\n        // We have an internal race between calling `accept()` and handling an incoming\n        // CANCEL request. As there is no good way currently to delegate the handling of\n        // these race errors to the caller of `accept()`, we are squelching the throwing\n        // of ALL errors when/if they occur after receiving a CANCEL to catch the ONE we know\n        // is a \"normal\" exceptional condition. While this is a completely reasonable approach,\n        // the decision should be left up to the library user. Furthermore, as we are eating\n        // ALL errors in this case, we are potentially (likely) hiding \"real\" errors which occur.\n        //\n        // Only rethrow error if the session has not been canceled.\n        if (this.isCanceled) {\n            this.logger.warn(\"An error occurred while attempting to formulate and send a response to an incoming INVITE.\" +\n                \" However a CANCEL was received and processed while doing so which can (and often does) result\" +\n                \" in errors occurring as the session terminates in the meantime. Said error is being ignored.\");\n            return;\n        }\n        throw error;\n    }\n    /**\n     * Callback for when ACK for a 2xx response is never received.\n     * @param session - Session the ACK never arrived for.\n     */\n    onAckTimeout() {\n        this.logger.log(\"Invitation.onAckTimeout\");\n        if (!this.dialog) {\n            throw new Error(\"Dialog undefined.\");\n        }\n        this.logger.log(\"No ACK received for an extended period of time, terminating session\");\n        this.dialog.bye();\n        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminated);\n    }\n    /**\n     * A version of `accept` which resolves a session when the 200 Ok response is sent.\n     * @param options - Options bucket.\n     */\n    sendAccept(options = {}) {\n        const responseOptions = {\n            sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptions,\n            sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiers\n        };\n        const extraHeaders = options.extraHeaders || [];\n        // The UAS MAY send a final response to the initial request before\n        // having received PRACKs for all unacknowledged reliable provisional\n        // responses, unless the final response is 2xx and any of the\n        // unacknowledged reliable provisional responses contained a session\n        // description.  In that case, it MUST NOT send a final response until\n        // those provisional responses are acknowledged.  If the UAS does send a\n        // final response when reliable responses are still unacknowledged, it\n        // SHOULD NOT continue to retransmit the unacknowledged reliable\n        // provisional responses, but it MUST be prepared to process PRACK\n        // requests for those outstanding responses.  A UAS MUST NOT send new\n        // reliable provisional responses (as opposed to retransmissions of\n        // unacknowledged ones) after sending a final response to a request.\n        // https://tools.ietf.org/html/rfc3262#section-3\n        if (this.waitingForPrack) {\n            return this.waitForArrivalOfPrack()\n                .then(() => clearTimeout(this.userNoAnswerTimer)) // Ported\n                .then(() => this.generateResponseOfferAnswer(this.incomingInviteRequest, responseOptions))\n                .then((body) => this.incomingInviteRequest.accept({ statusCode: 200, body, extraHeaders }));\n        }\n        clearTimeout(this.userNoAnswerTimer); // Ported\n        return this.generateResponseOfferAnswer(this.incomingInviteRequest, responseOptions).then((body) => this.incomingInviteRequest.accept({ statusCode: 200, body, extraHeaders }));\n    }\n    /**\n     * A version of `progress` which resolves when the provisional response is sent.\n     * @param options - Options bucket.\n     */\n    sendProgress(options = {}) {\n        const statusCode = options.statusCode || 180;\n        const reasonPhrase = options.reasonPhrase;\n        const extraHeaders = (options.extraHeaders || []).slice();\n        const body = options.body ? (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_5__.fromBodyLegacy)(options.body) : undefined;\n        // The 183 (Session Progress) response is used to convey information\n        // about the progress of the call that is not otherwise classified.  The\n        // Reason-Phrase, header fields, or message body MAY be used to convey\n        // more details about the call progress.\n        // https://tools.ietf.org/html/rfc3261#section-21.1.5\n        // It is the de facto industry standard to utilize 183 with SDP to provide \"early media\".\n        // While it is unlikely someone would want to send a 183 without SDP, so it should be an option.\n        if (statusCode === 183 && !body) {\n            return this.sendProgressWithSDP(options);\n        }\n        try {\n            const progressResponse = this.incomingInviteRequest.progress({ statusCode, reasonPhrase, extraHeaders, body });\n            this._dialog = progressResponse.session;\n            return Promise.resolve(progressResponse);\n        }\n        catch (error) {\n            return Promise.reject(error);\n        }\n    }\n    /**\n     * A version of `progress` which resolves when the provisional response with sdp is sent.\n     * @param options - Options bucket.\n     */\n    sendProgressWithSDP(options = {}) {\n        const responseOptions = {\n            sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptions,\n            sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiers\n        };\n        const statusCode = options.statusCode || 183;\n        const reasonPhrase = options.reasonPhrase;\n        const extraHeaders = (options.extraHeaders || []).slice();\n        // Get an offer/answer and send a reply.\n        return this.generateResponseOfferAnswer(this.incomingInviteRequest, responseOptions)\n            .then((body) => this.incomingInviteRequest.progress({ statusCode, reasonPhrase, extraHeaders, body }))\n            .then((progressResponse) => {\n            this._dialog = progressResponse.session;\n            return progressResponse;\n        });\n    }\n    /**\n     * A version of `progress` which resolves when the reliable provisional response is sent.\n     * @param options - Options bucket.\n     */\n    sendProgressReliable(options = {}) {\n        options.extraHeaders = (options.extraHeaders || []).slice();\n        options.extraHeaders.push(\"Require: 100rel\");\n        options.extraHeaders.push(\"RSeq: \" + Math.floor(Math.random() * 10000));\n        return this.sendProgressWithSDP(options);\n    }\n    /**\n     * A version of `progress` which resolves when the reliable provisional response is acknowledged.\n     * @param options - Options bucket.\n     */\n    sendProgressReliableWaitForPrack(options = {}) {\n        const responseOptions = {\n            sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptions,\n            sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiers\n        };\n        const statusCode = options.statusCode || 183;\n        const reasonPhrase = options.reasonPhrase;\n        const extraHeaders = (options.extraHeaders || []).slice();\n        extraHeaders.push(\"Require: 100rel\");\n        extraHeaders.push(\"RSeq: \" + this.rseq++);\n        let body;\n        return new Promise((resolve, reject) => {\n            this.waitingForPrack = true;\n            this.generateResponseOfferAnswer(this.incomingInviteRequest, responseOptions)\n                .then((offerAnswer) => {\n                body = offerAnswer;\n                return this.incomingInviteRequest.progress({ statusCode, reasonPhrase, extraHeaders, body });\n            })\n                .then((progressResponse) => {\n                this._dialog = progressResponse.session;\n                let prackRequest;\n                let prackResponse;\n                progressResponse.session.delegate = {\n                    onPrack: (request) => {\n                        prackRequest = request;\n                        // eslint-disable-next-line @typescript-eslint/no-use-before-define\n                        clearTimeout(prackWaitTimeoutTimer);\n                        // eslint-disable-next-line @typescript-eslint/no-use-before-define\n                        clearTimeout(rel1xxRetransmissionTimer);\n                        if (!this.waitingForPrack) {\n                            return;\n                        }\n                        this.waitingForPrack = false;\n                        this.handlePrackOfferAnswer(prackRequest)\n                            .then((prackResponseBody) => {\n                            try {\n                                prackResponse = prackRequest.accept({ statusCode: 200, body: prackResponseBody });\n                                this.prackArrived();\n                                resolve({ prackRequest, prackResponse, progressResponse });\n                            }\n                            catch (error) {\n                                reject(error);\n                            }\n                        })\n                            .catch((error) => reject(error));\n                    }\n                };\n                // https://tools.ietf.org/html/rfc3262#section-3\n                const prackWaitTimeout = () => {\n                    if (!this.waitingForPrack) {\n                        return;\n                    }\n                    this.waitingForPrack = false;\n                    this.logger.warn(\"No PRACK received, rejecting INVITE.\");\n                    // eslint-disable-next-line @typescript-eslint/no-use-before-define\n                    clearTimeout(rel1xxRetransmissionTimer);\n                    this.reject({ statusCode: 504 })\n                        .then(() => reject(new _exceptions_session_terminated_js__WEBPACK_IMPORTED_MODULE_10__.SessionTerminatedError()))\n                        .catch((error) => reject(error));\n                };\n                const prackWaitTimeoutTimer = setTimeout(prackWaitTimeout, _core_timers_js__WEBPACK_IMPORTED_MODULE_12__.Timers.T1 * 64);\n                // https://tools.ietf.org/html/rfc3262#section-3\n                const rel1xxRetransmission = () => {\n                    try {\n                        this.incomingInviteRequest.progress({ statusCode, reasonPhrase, extraHeaders, body });\n                    }\n                    catch (error) {\n                        this.waitingForPrack = false;\n                        reject(error);\n                        return;\n                    }\n                    // eslint-disable-next-line @typescript-eslint/no-use-before-define\n                    rel1xxRetransmissionTimer = setTimeout(rel1xxRetransmission, (timeout *= 2));\n                };\n                let timeout = _core_timers_js__WEBPACK_IMPORTED_MODULE_12__.Timers.T1;\n                let rel1xxRetransmissionTimer = setTimeout(rel1xxRetransmission, timeout);\n            })\n                .catch((error) => {\n                this.waitingForPrack = false;\n                reject(error);\n            });\n        });\n    }\n    /**\n     * A version of `progress` which resolves when a 100 Trying provisional response is sent.\n     */\n    sendProgressTrying() {\n        try {\n            const progressResponse = this.incomingInviteRequest.trying();\n            return Promise.resolve(progressResponse);\n        }\n        catch (error) {\n            return Promise.reject(error);\n        }\n    }\n    /**\n     * When attempting to accept the INVITE, an invitation waits\n     * for any outstanding PRACK to arrive before sending the 200 Ok.\n     * It will be waiting on this Promise to resolve which lets it know\n     * the PRACK has arrived and it may proceed to send the 200 Ok.\n     */\n    waitForArrivalOfPrack() {\n        if (this.waitingForPrackPromise) {\n            throw new Error(\"Already waiting for PRACK\");\n        }\n        this.waitingForPrackPromise = new Promise((resolve, reject) => {\n            this.waitingForPrackResolve = resolve;\n            this.waitingForPrackReject = reject;\n        });\n        return this.waitingForPrackPromise;\n    }\n    /**\n     * Here we are resolving the promise which in turn will cause\n     * the accept to proceed (it may still fail for other reasons, but...).\n     */\n    prackArrived() {\n        if (this.waitingForPrackResolve) {\n            this.waitingForPrackResolve();\n        }\n        this.waitingForPrackPromise = undefined;\n        this.waitingForPrackResolve = undefined;\n        this.waitingForPrackReject = undefined;\n    }\n    /**\n     * Here we are rejecting the promise which in turn will cause\n     * the accept to fail and the session to transition to \"terminated\".\n     */\n    prackNeverArrived() {\n        if (this.waitingForPrackReject) {\n            this.waitingForPrackReject(new _exceptions_session_terminated_js__WEBPACK_IMPORTED_MODULE_10__.SessionTerminatedError());\n        }\n        this.waitingForPrackPromise = undefined;\n        this.waitingForPrackResolve = undefined;\n        this.waitingForPrackReject = undefined;\n    }\n}\n\n\n/***/ }),\n/* 16 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Session\": () => (/* binding */ Session)\n/* harmony export */ });\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(22);\n/* harmony import */ var _grammar_uri_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(24);\n/* harmony import */ var _core_messages_body_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(18);\n/* harmony import */ var _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(31);\n/* harmony import */ var _core_messages_utils_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(21);\n/* harmony import */ var _core_user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(29);\n/* harmony import */ var _ack_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(10);\n/* harmony import */ var _bye_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(11);\n/* harmony import */ var _emitter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(13);\n/* harmony import */ var _exceptions_content_type_unsupported_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(4);\n/* harmony import */ var _exceptions_request_pending_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);\n/* harmony import */ var _info_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(14);\n/* harmony import */ var _message_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(32);\n/* harmony import */ var _notification_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(33);\n/* harmony import */ var _referral_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(34);\n/* harmony import */ var _session_state_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(17);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * A session provides real time communication between one or more participants.\n *\n * @remarks\n * The transport behaves in a deterministic manner according to the\n * the state defined in {@link SessionState}.\n * @public\n */\nclass Session {\n    /**\n     * Constructor.\n     * @param userAgent - User agent. See {@link UserAgent} for details.\n     * @internal\n     */\n    constructor(userAgent, options = {}) {\n        /** True if there is an outgoing re-INVITE request outstanding. */\n        this.pendingReinvite = false;\n        /** True if there is an incoming re-INVITE ACK request outstanding. */\n        this.pendingReinviteAck = false;\n        /** Session state. */\n        this._state = _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Initial;\n        this.delegate = options.delegate;\n        this._stateEventEmitter = new _emitter_js__WEBPACK_IMPORTED_MODULE_1__.EmitterImpl();\n        this._userAgent = userAgent;\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        this.logger.log(`Session ${this.id} in state ${this._state} is being disposed`);\n        // Remove from the user agent's session collection\n        delete this.userAgent._sessions[this.id];\n        // Dispose of dialog media\n        if (this._sessionDescriptionHandler) {\n            this._sessionDescriptionHandler.close();\n            // TODO: The SDH needs to remain defined as it will be called after it is closed in cases\n            // where an answer/offer arrives while the session is being torn down. There are a variety\n            // of circumstances where this can happen - sending a BYE during a re-INVITE for example.\n            // The code is currently written such that it lazily makes a new SDH when it needs one\n            // and one is not yet defined. Thus if we undefined it here, it will currently make a\n            // new one which is out of sync and then never gets cleaned up.\n            //\n            // The downside of leaving it defined are that calls this closed SDH will continue to be\n            // made (think setDescription) and those should/will fail. These failures are handled, but\n            // it would be nice to have it all coded up in a way where having an undefined SDH where\n            // one is expected throws an error.\n            //\n            // this._sessionDescriptionHandler = undefined;\n        }\n        switch (this.state) {\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Initial:\n                break; // the Inviter/Invitation sub class dispose method handles this case\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Establishing:\n                break; // the Inviter/Invitation sub class dispose method handles this case\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established:\n                return new Promise((resolve) => {\n                    this._bye({\n                        // wait for the response to the BYE before resolving\n                        onAccept: () => resolve(),\n                        onRedirect: () => resolve(),\n                        onReject: () => resolve()\n                    });\n                });\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminating:\n                break; // nothing to be done\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated:\n                break; // nothing to be done\n            default:\n                throw new Error(\"Unknown state.\");\n        }\n        return Promise.resolve();\n    }\n    /**\n     * The asserted identity of the remote user.\n     */\n    get assertedIdentity() {\n        return this._assertedIdentity;\n    }\n    /**\n     * The confirmed session dialog.\n     */\n    get dialog() {\n        return this._dialog;\n    }\n    /**\n     * A unique identifier for this session.\n     */\n    get id() {\n        return this._id;\n    }\n    /**\n     * The session being replace by this one.\n     */\n    get replacee() {\n        return this._replacee;\n    }\n    /**\n     * Session description handler.\n     * @remarks\n     * If `this` is an instance of `Invitation`,\n     * `sessionDescriptionHandler` will be defined when the session state changes to \"established\".\n     * If `this` is an instance of `Inviter` and an offer was sent in the INVITE,\n     * `sessionDescriptionHandler` will be defined when the session state changes to \"establishing\".\n     * If `this` is an instance of `Inviter` and an offer was not sent in the INVITE,\n     * `sessionDescriptionHandler` will be defined when the session state changes to \"established\".\n     * Otherwise `undefined`.\n     */\n    get sessionDescriptionHandler() {\n        return this._sessionDescriptionHandler;\n    }\n    /**\n     * Session description handler factory.\n     */\n    get sessionDescriptionHandlerFactory() {\n        return this.userAgent.configuration.sessionDescriptionHandlerFactory;\n    }\n    /**\n     * SDH modifiers for the initial INVITE transaction.\n     * @remarks\n     * Used in all cases when handling the initial INVITE transaction as either UAC or UAS.\n     * May be set directly at anytime.\n     * May optionally be set via constructor option.\n     * May optionally be set via options passed to Inviter.invite() or Invitation.accept().\n     */\n    get sessionDescriptionHandlerModifiers() {\n        return this._sessionDescriptionHandlerModifiers || [];\n    }\n    set sessionDescriptionHandlerModifiers(modifiers) {\n        this._sessionDescriptionHandlerModifiers = modifiers.slice();\n    }\n    /**\n     * SDH options for the initial INVITE transaction.\n     * @remarks\n     * Used in all cases when handling the initial INVITE transaction as either UAC or UAS.\n     * May be set directly at anytime.\n     * May optionally be set via constructor option.\n     * May optionally be set via options passed to Inviter.invite() or Invitation.accept().\n     */\n    get sessionDescriptionHandlerOptions() {\n        return this._sessionDescriptionHandlerOptions || {};\n    }\n    set sessionDescriptionHandlerOptions(options) {\n        this._sessionDescriptionHandlerOptions = Object.assign({}, options);\n    }\n    /**\n     * SDH modifiers for re-INVITE transactions.\n     * @remarks\n     * Used in all cases when handling a re-INVITE transaction as either UAC or UAS.\n     * May be set directly at anytime.\n     * May optionally be set via constructor option.\n     * May optionally be set via options passed to Session.invite().\n     */\n    get sessionDescriptionHandlerModifiersReInvite() {\n        return this._sessionDescriptionHandlerModifiersReInvite || [];\n    }\n    set sessionDescriptionHandlerModifiersReInvite(modifiers) {\n        this._sessionDescriptionHandlerModifiersReInvite = modifiers.slice();\n    }\n    /**\n     * SDH options for re-INVITE transactions.\n     * @remarks\n     * Used in all cases when handling a re-INVITE transaction as either UAC or UAS.\n     * May be set directly at anytime.\n     * May optionally be set via constructor option.\n     * May optionally be set via options passed to Session.invite().\n     */\n    get sessionDescriptionHandlerOptionsReInvite() {\n        return this._sessionDescriptionHandlerOptionsReInvite || {};\n    }\n    set sessionDescriptionHandlerOptionsReInvite(options) {\n        this._sessionDescriptionHandlerOptionsReInvite = Object.assign({}, options);\n    }\n    /**\n     * Session state.\n     */\n    get state() {\n        return this._state;\n    }\n    /**\n     * Session state change emitter.\n     */\n    get stateChange() {\n        return this._stateEventEmitter;\n    }\n    /**\n     * The user agent.\n     */\n    get userAgent() {\n        return this._userAgent;\n    }\n    /**\n     * End the {@link Session}. Sends a BYE.\n     * @param options - Options bucket. See {@link SessionByeOptions} for details.\n     */\n    bye(options = {}) {\n        let message = \"Session.bye() may only be called if established session.\";\n        switch (this.state) {\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Initial:\n                // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                if (typeof this.cancel === \"function\") {\n                    message += \" However Inviter.invite() has not yet been called.\";\n                    message += \" Perhaps you should have called Inviter.cancel()?\";\n                    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                }\n                else if (typeof this.reject === \"function\") {\n                    message += \" However Invitation.accept() has not yet been called.\";\n                    message += \" Perhaps you should have called Invitation.reject()?\";\n                }\n                break;\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Establishing:\n                // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                if (typeof this.cancel === \"function\") {\n                    message += \" However a dialog does not yet exist.\";\n                    message += \" Perhaps you should have called Inviter.cancel()?\";\n                    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                }\n                else if (typeof this.reject === \"function\") {\n                    message += \" However Invitation.accept() has not yet been called (or not yet resolved).\";\n                    message += \" Perhaps you should have called Invitation.reject()?\";\n                }\n                break;\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established: {\n                const requestDelegate = options.requestDelegate;\n                const requestOptions = this.copyRequestOptions(options.requestOptions);\n                return this._bye(requestDelegate, requestOptions);\n            }\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminating:\n                message += \" However this session is already terminating.\";\n                // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                if (typeof this.cancel === \"function\") {\n                    message += \" Perhaps you have already called Inviter.cancel()?\";\n                    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                }\n                else if (typeof this.reject === \"function\") {\n                    message += \" Perhaps you have already called Session.bye()?\";\n                }\n                break;\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated:\n                message += \" However this session is already terminated.\";\n                break;\n            default:\n                throw new Error(\"Unknown state\");\n        }\n        this.logger.error(message);\n        return Promise.reject(new Error(`Invalid session state ${this.state}`));\n    }\n    /**\n     * Share {@link Info} with peer. Sends an INFO.\n     * @param options - Options bucket. See {@link SessionInfoOptions} for details.\n     */\n    info(options = {}) {\n        // guard session state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            const message = \"Session.info() may only be called if established session.\";\n            this.logger.error(message);\n            return Promise.reject(new Error(`Invalid session state ${this.state}`));\n        }\n        const requestDelegate = options.requestDelegate;\n        const requestOptions = this.copyRequestOptions(options.requestOptions);\n        return this._info(requestDelegate, requestOptions);\n    }\n    /**\n     * Renegotiate the session. Sends a re-INVITE.\n     * @param options - Options bucket. See {@link SessionInviteOptions} for details.\n     */\n    invite(options = {}) {\n        this.logger.log(\"Session.invite\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            return Promise.reject(new Error(`Invalid session state ${this.state}`));\n        }\n        if (this.pendingReinvite) {\n            return Promise.reject(new _exceptions_request_pending_js__WEBPACK_IMPORTED_MODULE_2__.RequestPendingError(\"Reinvite in progress. Please wait until complete, then try again.\"));\n        }\n        this.pendingReinvite = true;\n        // Modifiers and options for initial INVITE transaction\n        if (options.sessionDescriptionHandlerModifiers) {\n            this.sessionDescriptionHandlerModifiersReInvite = options.sessionDescriptionHandlerModifiers;\n        }\n        if (options.sessionDescriptionHandlerOptions) {\n            this.sessionDescriptionHandlerOptionsReInvite = options.sessionDescriptionHandlerOptions;\n        }\n        const delegate = {\n            onAccept: (response) => {\n                // A re-INVITE transaction has an offer/answer [RFC3264] exchange\n                // associated with it.  The UAC (User Agent Client) generating a given\n                // re-INVITE can act as the offerer or as the answerer.  A UAC willing\n                // to act as the offerer includes an offer in the re-INVITE.  The UAS\n                // (User Agent Server) then provides an answer in a response to the\n                // re-INVITE.  A UAC willing to act as answerer does not include an\n                // offer in the re-INVITE.  The UAS then provides an offer in a response\n                // to the re-INVITE becoming, thus, the offerer.\n                // https://tools.ietf.org/html/rfc6141#section-1\n                const body = (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_3__.getBody)(response.message);\n                if (!body) {\n                    // No way to recover, so terminate session and mark as failed.\n                    this.logger.error(\"Received 2xx response to re-INVITE without a session description\");\n                    this.ackAndBye(response, 400, \"Missing session description\");\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                    this.pendingReinvite = false;\n                    return;\n                }\n                if (options.withoutSdp) {\n                    // INVITE without SDP - set remote offer and send an answer in the ACK\n                    const answerOptions = {\n                        sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptionsReInvite,\n                        sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiersReInvite\n                    };\n                    this.setOfferAndGetAnswer(body, answerOptions)\n                        .then((answerBody) => {\n                        response.ack({ body: answerBody });\n                    })\n                        .catch((error) => {\n                        // No way to recover, so terminate session and mark as failed.\n                        this.logger.error(\"Failed to handle offer in 2xx response to re-INVITE\");\n                        this.logger.error(error.message);\n                        if (this.state === _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n                            // A BYE should not be sent if already terminated.\n                            // For example, a BYE may be sent/received while re-INVITE is outstanding.\n                            response.ack();\n                        }\n                        else {\n                            this.ackAndBye(response, 488, \"Bad Media Description\");\n                            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                        }\n                    })\n                        .then(() => {\n                        this.pendingReinvite = false;\n                        if (options.requestDelegate && options.requestDelegate.onAccept) {\n                            options.requestDelegate.onAccept(response);\n                        }\n                    });\n                }\n                else {\n                    // INVITE with SDP - set remote answer and send an ACK\n                    const answerOptions = {\n                        sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptionsReInvite,\n                        sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiersReInvite\n                    };\n                    this.setAnswer(body, answerOptions)\n                        .then(() => {\n                        response.ack();\n                    })\n                        .catch((error) => {\n                        // No way to recover, so terminate session and mark as failed.\n                        this.logger.error(\"Failed to handle answer in 2xx response to re-INVITE\");\n                        this.logger.error(error.message);\n                        // A BYE should only be sent if session is not already terminated.\n                        // For example, a BYE may be sent/received while re-INVITE is outstanding.\n                        // The ACK needs to be sent regardless as it was not handled by the transaction.\n                        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n                            this.ackAndBye(response, 488, \"Bad Media Description\");\n                            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                        }\n                        else {\n                            response.ack();\n                        }\n                    })\n                        .then(() => {\n                        this.pendingReinvite = false;\n                        if (options.requestDelegate && options.requestDelegate.onAccept) {\n                            options.requestDelegate.onAccept(response);\n                        }\n                    });\n                }\n            },\n            // eslint-disable-next-line @typescript-eslint/no-unused-vars\n            onProgress: (response) => {\n                return;\n            },\n            // eslint-disable-next-line @typescript-eslint/no-unused-vars\n            onRedirect: (response) => {\n                return;\n            },\n            onReject: (response) => {\n                this.logger.warn(\"Received a non-2xx response to re-INVITE\");\n                this.pendingReinvite = false;\n                if (options.withoutSdp) {\n                    if (options.requestDelegate && options.requestDelegate.onReject) {\n                        options.requestDelegate.onReject(response);\n                    }\n                }\n                else {\n                    this.rollbackOffer()\n                        .catch((error) => {\n                        // No way to recover, so terminate session and mark as failed.\n                        this.logger.error(\"Failed to rollback offer on non-2xx response to re-INVITE\");\n                        this.logger.error(error.message);\n                        // A BYE should only be sent if session is not already terminated.\n                        // For example, a BYE may be sent/received while re-INVITE is outstanding.\n                        // Note that the ACK was already sent by the transaction, so just need to send BYE.\n                        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n                            if (!this.dialog) {\n                                throw new Error(\"Dialog undefined.\");\n                            }\n                            const extraHeaders = [];\n                            extraHeaders.push(\"Reason: \" + this.getReasonHeaderValue(500, \"Internal Server Error\"));\n                            this.dialog.bye(undefined, { extraHeaders });\n                            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                        }\n                    })\n                        .then(() => {\n                        if (options.requestDelegate && options.requestDelegate.onReject) {\n                            options.requestDelegate.onReject(response);\n                        }\n                    });\n                }\n            },\n            // eslint-disable-next-line @typescript-eslint/no-unused-vars\n            onTrying: (response) => {\n                return;\n            }\n        };\n        const requestOptions = options.requestOptions || {};\n        requestOptions.extraHeaders = (requestOptions.extraHeaders || []).slice();\n        requestOptions.extraHeaders.push(\"Allow: \" + _core_user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_4__.AllowedMethods.toString());\n        requestOptions.extraHeaders.push(\"Contact: \" + this._contact);\n        // Just send an INVITE with no sdp...\n        if (options.withoutSdp) {\n            if (!this.dialog) {\n                this.pendingReinvite = false;\n                throw new Error(\"Dialog undefined.\");\n            }\n            return Promise.resolve(this.dialog.invite(delegate, requestOptions));\n        }\n        // Get an offer and send it in an INVITE\n        const offerOptions = {\n            sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptionsReInvite,\n            sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiersReInvite\n        };\n        return this.getOffer(offerOptions)\n            .then((offerBody) => {\n            if (!this.dialog) {\n                this.pendingReinvite = false;\n                throw new Error(\"Dialog undefined.\");\n            }\n            requestOptions.body = offerBody;\n            return this.dialog.invite(delegate, requestOptions);\n        })\n            .catch((error) => {\n            this.logger.error(error.message);\n            this.logger.error(\"Failed to send re-INVITE\");\n            this.pendingReinvite = false;\n            throw error;\n        });\n    }\n    /**\n     * Deliver a {@link Message}. Sends a MESSAGE.\n     * @param options - Options bucket. See {@link SessionMessageOptions} for details.\n     */\n    message(options = {}) {\n        // guard session state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            const message = \"Session.message() may only be called if established session.\";\n            this.logger.error(message);\n            return Promise.reject(new Error(`Invalid session state ${this.state}`));\n        }\n        const requestDelegate = options.requestDelegate;\n        const requestOptions = this.copyRequestOptions(options.requestOptions);\n        return this._message(requestDelegate, requestOptions);\n    }\n    /**\n     * Proffer a {@link Referral}. Send a REFER.\n     * @param referTo - The referral target. If a `Session`, a REFER w/Replaces is sent.\n     * @param options - Options bucket. See {@link SessionReferOptions} for details.\n     */\n    refer(referTo, options = {}) {\n        // guard session state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            const message = \"Session.refer() may only be called if established session.\";\n            this.logger.error(message);\n            return Promise.reject(new Error(`Invalid session state ${this.state}`));\n        }\n        // REFER with Replaces (Attended Transfer) only supported with established sessions.\n        if (referTo instanceof Session && !referTo.dialog) {\n            const message = \"Session.refer() may only be called with session which is established. \" +\n                \"You are perhaps attempting to attended transfer to a target for which \" +\n                \"there is not dialog yet established. Perhaps you are attempting a \" +\n                \"'semi-attended' tansfer? Regardless, this is not supported. The recommended \" +\n                \"approached is to check to see if the target Session is in the Established \" +\n                \"state before calling refer(); if the state is not Established you may \" +\n                \"proceed by falling back using a URI as the target (blind transfer).\";\n            this.logger.error(message);\n            return Promise.reject(new Error(`Invalid session state ${this.state}`));\n        }\n        const requestDelegate = options.requestDelegate;\n        const requestOptions = this.copyRequestOptions(options.requestOptions);\n        requestOptions.extraHeaders = requestOptions.extraHeaders\n            ? requestOptions.extraHeaders.concat(this.referExtraHeaders(this.referToString(referTo)))\n            : this.referExtraHeaders(this.referToString(referTo));\n        return this._refer(options.onNotify, requestDelegate, requestOptions);\n    }\n    /**\n     * Send BYE.\n     * @param delegate - Request delegate.\n     * @param options - Request options bucket.\n     * @internal\n     */\n    _bye(delegate, options) {\n        // Using core session dialog\n        if (!this.dialog) {\n            return Promise.reject(new Error(\"Session dialog undefined.\"));\n        }\n        const dialog = this.dialog;\n        // The caller's UA MAY send a BYE for either confirmed or early dialogs,\n        // and the callee's UA MAY send a BYE on confirmed dialogs, but MUST NOT\n        // send a BYE on early dialogs. However, the callee's UA MUST NOT send a\n        // BYE on a confirmed dialog until it has received an ACK for its 2xx\n        // response or until the server transaction times out.\n        // https://tools.ietf.org/html/rfc3261#section-15\n        switch (dialog.sessionState) {\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Initial:\n                throw new Error(`Invalid dialog state ${dialog.sessionState}`);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Early: // Implementation choice - not sending BYE for early dialogs.\n                throw new Error(`Invalid dialog state ${dialog.sessionState}`);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.AckWait: {\n                // This state only occurs if we are the callee.\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminating); // We're terminating\n                return new Promise((resolve) => {\n                    dialog.delegate = {\n                        // When ACK shows up, say BYE.\n                        onAck: () => {\n                            const request = dialog.bye(delegate, options);\n                            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                            resolve(request);\n                            return Promise.resolve();\n                        },\n                        // Or the server transaction times out before the ACK arrives.\n                        onAckTimeout: () => {\n                            const request = dialog.bye(delegate, options);\n                            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                            resolve(request);\n                        }\n                    };\n                });\n            }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Confirmed: {\n                const request = dialog.bye(delegate, options);\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                return Promise.resolve(request);\n            }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated:\n                throw new Error(`Invalid dialog state ${dialog.sessionState}`);\n            default:\n                throw new Error(\"Unrecognized state.\");\n        }\n    }\n    /**\n     * Send INFO.\n     * @param delegate - Request delegate.\n     * @param options - Request options bucket.\n     * @internal\n     */\n    _info(delegate, options) {\n        // Using core session dialog\n        if (!this.dialog) {\n            return Promise.reject(new Error(\"Session dialog undefined.\"));\n        }\n        return Promise.resolve(this.dialog.info(delegate, options));\n    }\n    /**\n     * Send MESSAGE.\n     * @param delegate - Request delegate.\n     * @param options - Request options bucket.\n     * @internal\n     */\n    _message(delegate, options) {\n        // Using core session dialog\n        if (!this.dialog) {\n            return Promise.reject(new Error(\"Session dialog undefined.\"));\n        }\n        return Promise.resolve(this.dialog.message(delegate, options));\n    }\n    /**\n     * Send REFER.\n     * @param onNotify - Notification callback.\n     * @param delegate - Request delegate.\n     * @param options - Request options bucket.\n     * @internal\n     */\n    _refer(onNotify, delegate, options) {\n        // Using core session dialog\n        if (!this.dialog) {\n            return Promise.reject(new Error(\"Session dialog undefined.\"));\n        }\n        // If set, deliver any in-dialog NOTIFY requests here...\n        this.onNotify = onNotify;\n        return Promise.resolve(this.dialog.refer(delegate, options));\n    }\n    /**\n     * Send ACK and then BYE. There are unrecoverable errors which can occur\n     * while handling dialog forming and in-dialog INVITE responses and when\n     * they occur we ACK the response and send a BYE.\n     * Note that the BYE is sent in the dialog associated with the response\n     * which is not necessarily `this.dialog`. And, accordingly, the\n     * session state is not transitioned to terminated and session is not closed.\n     * @param inviteResponse - The response causing the error.\n     * @param statusCode - Status code for he reason phrase.\n     * @param reasonPhrase - Reason phrase for the BYE.\n     * @internal\n     */\n    ackAndBye(response, statusCode, reasonPhrase) {\n        response.ack();\n        const extraHeaders = [];\n        if (statusCode) {\n            extraHeaders.push(\"Reason: \" + this.getReasonHeaderValue(statusCode, reasonPhrase));\n        }\n        // Using the dialog session associate with the response (which might not be this.dialog)\n        response.session.bye(undefined, { extraHeaders });\n    }\n    /**\n     * Handle in dialog ACK request.\n     * @internal\n     */\n    onAckRequest(request) {\n        this.logger.log(\"Session.onAckRequest\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established && this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminating) {\n            this.logger.error(`ACK received while in state ${this.state}, dropping request`);\n            return Promise.resolve();\n        }\n        const dialog = this.dialog;\n        if (!dialog) {\n            throw new Error(\"Dialog undefined.\");\n        }\n        // if received answer in ACK.\n        const answerOptions = {\n            sessionDescriptionHandlerOptions: this.pendingReinviteAck\n                ? this.sessionDescriptionHandlerOptionsReInvite\n                : this.sessionDescriptionHandlerOptions,\n            sessionDescriptionHandlerModifiers: this.pendingReinviteAck\n                ? this._sessionDescriptionHandlerModifiersReInvite\n                : this._sessionDescriptionHandlerModifiers\n        };\n        if (this.delegate && this.delegate.onAck) {\n            const ack = new _ack_js__WEBPACK_IMPORTED_MODULE_6__.Ack(request);\n            this.delegate.onAck(ack);\n        }\n        // reset pending ACK flag\n        this.pendingReinviteAck = false;\n        switch (dialog.signalingState) {\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Initial: {\n                // State should never be reached as first reliable response must have answer/offer.\n                // So we must have never has sent an offer.\n                this.logger.error(`Invalid signaling state ${dialog.signalingState}.`);\n                const extraHeaders = [\"Reason: \" + this.getReasonHeaderValue(488, \"Bad Media Description\")];\n                dialog.bye(undefined, { extraHeaders });\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                return Promise.resolve();\n            }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Stable: {\n                // State we should be in.\n                // Either the ACK has the answer that got us here, or we were in this state prior to the ACK.\n                const body = (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_3__.getBody)(request.message);\n                // If the ACK doesn't have an answer, nothing to be done.\n                if (!body) {\n                    return Promise.resolve();\n                }\n                if (body.contentDisposition === \"render\") {\n                    this._renderbody = body.content;\n                    this._rendertype = body.contentType;\n                    return Promise.resolve();\n                }\n                if (body.contentDisposition !== \"session\") {\n                    return Promise.resolve();\n                }\n                return this.setAnswer(body, answerOptions).catch((error) => {\n                    this.logger.error(error.message);\n                    const extraHeaders = [\"Reason: \" + this.getReasonHeaderValue(488, \"Bad Media Description\")];\n                    dialog.bye(undefined, { extraHeaders });\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                });\n            }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.HaveLocalOffer: {\n                // State should never be reached as local offer would be answered by this ACK.\n                // So we must have received an ACK without an answer.\n                this.logger.error(`Invalid signaling state ${dialog.signalingState}.`);\n                const extraHeaders = [\"Reason: \" + this.getReasonHeaderValue(488, \"Bad Media Description\")];\n                dialog.bye(undefined, { extraHeaders });\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                return Promise.resolve();\n            }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.HaveRemoteOffer: {\n                // State should never be reached as remote offer would be answered in first reliable response.\n                // So we must have never has sent an answer.\n                this.logger.error(`Invalid signaling state ${dialog.signalingState}.`);\n                const extraHeaders = [\"Reason: \" + this.getReasonHeaderValue(488, \"Bad Media Description\")];\n                dialog.bye(undefined, { extraHeaders });\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                return Promise.resolve();\n            }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Closed:\n                throw new Error(`Invalid signaling state ${dialog.signalingState}.`);\n            default:\n                throw new Error(`Invalid signaling state ${dialog.signalingState}.`);\n        }\n    }\n    /**\n     * Handle in dialog BYE request.\n     * @internal\n     */\n    onByeRequest(request) {\n        this.logger.log(\"Session.onByeRequest\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            this.logger.error(`BYE received while in state ${this.state}, dropping request`);\n            return;\n        }\n        if (this.delegate && this.delegate.onBye) {\n            const bye = new _bye_js__WEBPACK_IMPORTED_MODULE_7__.Bye(request);\n            this.delegate.onBye(bye);\n        }\n        else {\n            request.accept();\n        }\n        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n    }\n    /**\n     * Handle in dialog INFO request.\n     * @internal\n     */\n    onInfoRequest(request) {\n        this.logger.log(\"Session.onInfoRequest\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            this.logger.error(`INFO received while in state ${this.state}, dropping request`);\n            return;\n        }\n        if (this.delegate && this.delegate.onInfo) {\n            const info = new _info_js__WEBPACK_IMPORTED_MODULE_8__.Info(request);\n            this.delegate.onInfo(info);\n        }\n        else {\n            // FIXME: TODO: We should reject request...\n            //\n            // If a UA receives an INFO request associated with an Info Package that\n            // the UA has not indicated willingness to receive, the UA MUST send a\n            // 469 (Bad Info Package) response (see Section 11.6), which contains a\n            // Recv-Info header field with Info Packages for which the UA is willing\n            // to receive INFO requests.\n            // https://tools.ietf.org/html/rfc6086#section-4.2.2\n            request.accept();\n        }\n    }\n    /**\n     * Handle in dialog INVITE request.\n     * @internal\n     */\n    onInviteRequest(request) {\n        this.logger.log(\"Session.onInviteRequest\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            this.logger.error(`INVITE received while in state ${this.state}, dropping request`);\n            return;\n        }\n        // set pending ACK flag\n        this.pendingReinviteAck = true;\n        // TODO: would be nice to have core track and set the Contact header,\n        // but currently the session which is setting it is holding onto it.\n        const extraHeaders = [\"Contact: \" + this._contact];\n        // Handle P-Asserted-Identity\n        if (request.message.hasHeader(\"P-Asserted-Identity\")) {\n            const header = request.message.getHeader(\"P-Asserted-Identity\");\n            if (!header) {\n                throw new Error(\"Header undefined.\");\n            }\n            this._assertedIdentity = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_9__.Grammar.nameAddrHeaderParse(header);\n        }\n        const options = {\n            sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptionsReInvite,\n            sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiersReInvite\n        };\n        this.generateResponseOfferAnswerInDialog(options)\n            .then((body) => {\n            const outgoingResponse = request.accept({ statusCode: 200, extraHeaders, body });\n            if (this.delegate && this.delegate.onInvite) {\n                this.delegate.onInvite(request.message, outgoingResponse.message, 200);\n            }\n        })\n            .catch((error) => {\n            this.logger.error(error.message);\n            this.logger.error(\"Failed to handle to re-INVITE request\");\n            if (!this.dialog) {\n                throw new Error(\"Dialog undefined.\");\n            }\n            this.logger.error(this.dialog.signalingState);\n            // If we don't have a local/remote offer...\n            if (this.dialog.signalingState === _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Stable) {\n                const outgoingResponse = request.reject({ statusCode: 488 }); // Not Acceptable Here\n                if (this.delegate && this.delegate.onInvite) {\n                    this.delegate.onInvite(request.message, outgoingResponse.message, 488);\n                }\n                return;\n            }\n            // Otherwise rollback\n            this.rollbackOffer()\n                .then(() => {\n                const outgoingResponse = request.reject({ statusCode: 488 }); // Not Acceptable Here\n                if (this.delegate && this.delegate.onInvite) {\n                    this.delegate.onInvite(request.message, outgoingResponse.message, 488);\n                }\n            })\n                .catch((errorRollback) => {\n                // No way to recover, so terminate session and mark as failed.\n                this.logger.error(errorRollback.message);\n                this.logger.error(\"Failed to rollback offer on re-INVITE request\");\n                const outgoingResponse = request.reject({ statusCode: 488 }); // Not Acceptable Here\n                // A BYE should only be sent if session is not already terminated.\n                // For example, a BYE may be sent/received while re-INVITE is outstanding.\n                // Note that the ACK was already sent by the transaction, so just need to send BYE.\n                if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n                    if (!this.dialog) {\n                        throw new Error(\"Dialog undefined.\");\n                    }\n                    const extraHeadersBye = [];\n                    extraHeadersBye.push(\"Reason: \" + this.getReasonHeaderValue(500, \"Internal Server Error\"));\n                    this.dialog.bye(undefined, { extraHeaders: extraHeadersBye });\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated);\n                }\n                if (this.delegate && this.delegate.onInvite) {\n                    this.delegate.onInvite(request.message, outgoingResponse.message, 488);\n                }\n            });\n        });\n    }\n    /**\n     * Handle in dialog MESSAGE request.\n     * @internal\n     */\n    onMessageRequest(request) {\n        this.logger.log(\"Session.onMessageRequest\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            this.logger.error(`MESSAGE received while in state ${this.state}, dropping request`);\n            return;\n        }\n        if (this.delegate && this.delegate.onMessage) {\n            const message = new _message_js__WEBPACK_IMPORTED_MODULE_10__.Message(request);\n            this.delegate.onMessage(message);\n        }\n        else {\n            request.accept();\n        }\n    }\n    /**\n     * Handle in dialog NOTIFY request.\n     * @internal\n     */\n    onNotifyRequest(request) {\n        this.logger.log(\"Session.onNotifyRequest\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            this.logger.error(`NOTIFY received while in state ${this.state}, dropping request`);\n            return;\n        }\n        // If this a NOTIFY associated with the progress of a REFER,\n        // look to delegate handling to the associated callback.\n        if (this.onNotify) {\n            const notification = new _notification_js__WEBPACK_IMPORTED_MODULE_11__.Notification(request);\n            this.onNotify(notification);\n            return;\n        }\n        // Otherwise accept the NOTIFY.\n        if (this.delegate && this.delegate.onNotify) {\n            const notification = new _notification_js__WEBPACK_IMPORTED_MODULE_11__.Notification(request);\n            this.delegate.onNotify(notification);\n        }\n        else {\n            request.accept();\n        }\n    }\n    /**\n     * Handle in dialog PRACK request.\n     * @internal\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    onPrackRequest(request) {\n        this.logger.log(\"Session.onPrackRequest\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            this.logger.error(`PRACK received while in state ${this.state}, dropping request`);\n            return;\n        }\n        throw new Error(\"Unimplemented.\");\n    }\n    /**\n     * Handle in dialog REFER request.\n     * @internal\n     */\n    onReferRequest(request) {\n        this.logger.log(\"Session.onReferRequest\");\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n            this.logger.error(`REFER received while in state ${this.state}, dropping request`);\n            return;\n        }\n        // REFER is a SIP request and is constructed as defined in [1].  A REFER\n        // request MUST contain exactly one Refer-To header field value.\n        // https://tools.ietf.org/html/rfc3515#section-2.4.1\n        if (!request.message.hasHeader(\"refer-to\")) {\n            this.logger.warn(\"Invalid REFER packet. A refer-to header is required. Rejecting.\");\n            request.reject();\n            return;\n        }\n        const referral = new _referral_js__WEBPACK_IMPORTED_MODULE_12__.Referral(request, this);\n        if (this.delegate && this.delegate.onRefer) {\n            this.delegate.onRefer(referral);\n        }\n        else {\n            this.logger.log(\"No delegate available to handle REFER, automatically accepting and following.\");\n            referral\n                .accept()\n                .then(() => referral.makeInviter(this._referralInviterOptions).invite())\n                .catch((error) => {\n                // FIXME: logging and eating error...\n                this.logger.error(error.message);\n            });\n        }\n    }\n    /**\n     * Generate an offer or answer for a response to an INVITE request.\n     * If a remote offer was provided in the request, set the remote\n     * description and get a local answer. If a remote offer was not\n     * provided, generates a local offer.\n     * @internal\n     */\n    generateResponseOfferAnswer(request, options) {\n        if (this.dialog) {\n            return this.generateResponseOfferAnswerInDialog(options);\n        }\n        const body = (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_3__.getBody)(request.message);\n        if (!body || body.contentDisposition !== \"session\") {\n            return this.getOffer(options);\n        }\n        else {\n            return this.setOfferAndGetAnswer(body, options);\n        }\n    }\n    /**\n     * Generate an offer or answer for a response to an INVITE request\n     * when a dialog (early or otherwise) has already been established.\n     * This method may NOT be called if a dialog has yet to be established.\n     * @internal\n     */\n    generateResponseOfferAnswerInDialog(options) {\n        if (!this.dialog) {\n            throw new Error(\"Dialog undefined.\");\n        }\n        switch (this.dialog.signalingState) {\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Initial:\n                return this.getOffer(options);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.HaveLocalOffer:\n                // o  Once the UAS has sent or received an answer to the initial\n                // offer, it MUST NOT generate subsequent offers in any responses\n                // to the initial INVITE.  This means that a UAS based on this\n                // specification alone can never generate subsequent offers until\n                // completion of the initial transaction.\n                // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                return Promise.resolve(undefined);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.HaveRemoteOffer:\n                if (!this.dialog.offer) {\n                    throw new Error(`Session offer undefined in signaling state ${this.dialog.signalingState}.`);\n                }\n                return this.setOfferAndGetAnswer(this.dialog.offer, options);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Stable:\n                // o  Once the UAS has sent or received an answer to the initial\n                // offer, it MUST NOT generate subsequent offers in any responses\n                // to the initial INVITE.  This means that a UAS based on this\n                // specification alone can never generate subsequent offers until\n                // completion of the initial transaction.\n                // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established) {\n                    return Promise.resolve(undefined);\n                }\n                // In dialog INVITE without offer, get an offer for the response.\n                return this.getOffer(options);\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Closed:\n                throw new Error(`Invalid signaling state ${this.dialog.signalingState}.`);\n            default:\n                throw new Error(`Invalid signaling state ${this.dialog.signalingState}.`);\n        }\n    }\n    /**\n     * Get local offer.\n     * @internal\n     */\n    getOffer(options) {\n        const sdh = this.setupSessionDescriptionHandler();\n        const sdhOptions = options.sessionDescriptionHandlerOptions;\n        const sdhModifiers = options.sessionDescriptionHandlerModifiers;\n        // This is intentionally written very defensively. Don't trust SDH to behave.\n        try {\n            return sdh\n                .getDescription(sdhOptions, sdhModifiers)\n                .then((bodyAndContentType) => (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_3__.fromBodyLegacy)(bodyAndContentType))\n                .catch((error) => {\n                // don't trust SDH to reject with Error\n                this.logger.error(\"Session.getOffer: SDH getDescription rejected...\");\n                const e = error instanceof Error ? error : new Error(\"Session.getOffer unknown error.\");\n                this.logger.error(e.message);\n                throw e;\n            });\n        }\n        catch (error) {\n            // don't trust SDH to throw an Error\n            this.logger.error(\"Session.getOffer: SDH getDescription threw...\");\n            const e = error instanceof Error ? error : new Error(error);\n            this.logger.error(e.message);\n            return Promise.reject(e);\n        }\n    }\n    /**\n     * Rollback local/remote offer.\n     * @internal\n     */\n    rollbackOffer() {\n        const sdh = this.setupSessionDescriptionHandler();\n        if (sdh.rollbackDescription === undefined) {\n            return Promise.resolve();\n        }\n        // This is intentionally written very defensively. Don't trust SDH to behave.\n        try {\n            return sdh.rollbackDescription().catch((error) => {\n                // don't trust SDH to reject with Error\n                this.logger.error(\"Session.rollbackOffer: SDH rollbackDescription rejected...\");\n                const e = error instanceof Error ? error : new Error(\"Session.rollbackOffer unknown error.\");\n                this.logger.error(e.message);\n                throw e;\n            });\n        }\n        catch (error) {\n            // don't trust SDH to throw an Error\n            this.logger.error(\"Session.rollbackOffer: SDH rollbackDescription threw...\");\n            const e = error instanceof Error ? error : new Error(error);\n            this.logger.error(e.message);\n            return Promise.reject(e);\n        }\n    }\n    /**\n     * Set remote answer.\n     * @internal\n     */\n    setAnswer(answer, options) {\n        const sdh = this.setupSessionDescriptionHandler();\n        const sdhOptions = options.sessionDescriptionHandlerOptions;\n        const sdhModifiers = options.sessionDescriptionHandlerModifiers;\n        // This is intentionally written very defensively. Don't trust SDH to behave.\n        try {\n            if (!sdh.hasDescription(answer.contentType)) {\n                return Promise.reject(new _exceptions_content_type_unsupported_js__WEBPACK_IMPORTED_MODULE_13__.ContentTypeUnsupportedError());\n            }\n        }\n        catch (error) {\n            this.logger.error(\"Session.setAnswer: SDH hasDescription threw...\");\n            const e = error instanceof Error ? error : new Error(error);\n            this.logger.error(e.message);\n            return Promise.reject(e);\n        }\n        try {\n            return sdh.setDescription(answer.content, sdhOptions, sdhModifiers).catch((error) => {\n                // don't trust SDH to reject with Error\n                this.logger.error(\"Session.setAnswer: SDH setDescription rejected...\");\n                const e = error instanceof Error ? error : new Error(\"Session.setAnswer unknown error.\");\n                this.logger.error(e.message);\n                throw e;\n            });\n        }\n        catch (error) {\n            // don't trust SDH to throw an Error\n            this.logger.error(\"Session.setAnswer: SDH setDescription threw...\");\n            const e = error instanceof Error ? error : new Error(error);\n            this.logger.error(e.message);\n            return Promise.reject(e);\n        }\n    }\n    /**\n     * Set remote offer and get local answer.\n     * @internal\n     */\n    setOfferAndGetAnswer(offer, options) {\n        const sdh = this.setupSessionDescriptionHandler();\n        const sdhOptions = options.sessionDescriptionHandlerOptions;\n        const sdhModifiers = options.sessionDescriptionHandlerModifiers;\n        // This is intentionally written very defensively. Don't trust SDH to behave.\n        try {\n            if (!sdh.hasDescription(offer.contentType)) {\n                return Promise.reject(new _exceptions_content_type_unsupported_js__WEBPACK_IMPORTED_MODULE_13__.ContentTypeUnsupportedError());\n            }\n        }\n        catch (error) {\n            this.logger.error(\"Session.setOfferAndGetAnswer: SDH hasDescription threw...\");\n            const e = error instanceof Error ? error : new Error(error);\n            this.logger.error(e.message);\n            return Promise.reject(e);\n        }\n        try {\n            return sdh\n                .setDescription(offer.content, sdhOptions, sdhModifiers)\n                .then(() => sdh.getDescription(sdhOptions, sdhModifiers))\n                .then((bodyAndContentType) => (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_3__.fromBodyLegacy)(bodyAndContentType))\n                .catch((error) => {\n                // don't trust SDH to reject with Error\n                this.logger.error(\"Session.setOfferAndGetAnswer: SDH setDescription or getDescription rejected...\");\n                const e = error instanceof Error ? error : new Error(\"Session.setOfferAndGetAnswer unknown error.\");\n                this.logger.error(e.message);\n                throw e;\n            });\n        }\n        catch (error) {\n            // don't trust SDH to throw an Error\n            this.logger.error(\"Session.setOfferAndGetAnswer: SDH setDescription or getDescription threw...\");\n            const e = error instanceof Error ? error : new Error(error);\n            this.logger.error(e.message);\n            return Promise.reject(e);\n        }\n    }\n    /**\n     * SDH for confirmed dialog.\n     * @internal\n     */\n    setSessionDescriptionHandler(sdh) {\n        if (this._sessionDescriptionHandler) {\n            throw new Error(\"Session description handler defined.\");\n        }\n        this._sessionDescriptionHandler = sdh;\n    }\n    /**\n     * SDH for confirmed dialog.\n     * @internal\n     */\n    setupSessionDescriptionHandler() {\n        var _a;\n        if (this._sessionDescriptionHandler) {\n            return this._sessionDescriptionHandler;\n        }\n        this._sessionDescriptionHandler = this.sessionDescriptionHandlerFactory(this, this.userAgent.configuration.sessionDescriptionHandlerFactoryOptions);\n        if ((_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onSessionDescriptionHandler) {\n            this.delegate.onSessionDescriptionHandler(this._sessionDescriptionHandler, false);\n        }\n        return this._sessionDescriptionHandler;\n    }\n    /**\n     * Transition session state.\n     * @internal\n     */\n    stateTransition(newState) {\n        const invalidTransition = () => {\n            throw new Error(`Invalid state transition from ${this._state} to ${newState}`);\n        };\n        // Validate transition\n        switch (this._state) {\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Initial:\n                if (newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Establishing &&\n                    newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established &&\n                    newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminating &&\n                    newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Establishing:\n                if (newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established &&\n                    newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminating &&\n                    newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Established:\n                if (newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminating && newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminating:\n                if (newState !== _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated:\n                invalidTransition();\n                break;\n            default:\n                throw new Error(\"Unrecognized state.\");\n        }\n        // Transition\n        this._state = newState;\n        this.logger.log(`Session ${this.id} transitioned to state ${this._state}`);\n        this._stateEventEmitter.emit(this._state);\n        // Dispose\n        if (newState === _session_state_js__WEBPACK_IMPORTED_MODULE_0__.SessionState.Terminated) {\n            this.dispose();\n        }\n    }\n    copyRequestOptions(requestOptions = {}) {\n        const extraHeaders = requestOptions.extraHeaders ? requestOptions.extraHeaders.slice() : undefined;\n        const body = requestOptions.body\n            ? {\n                contentDisposition: requestOptions.body.contentDisposition || \"render\",\n                contentType: requestOptions.body.contentType || \"text/plain\",\n                content: requestOptions.body.content || \"\"\n            }\n            : undefined;\n        return {\n            extraHeaders,\n            body\n        };\n    }\n    getReasonHeaderValue(code, reason) {\n        const cause = code;\n        let text = (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_14__.getReasonPhrase)(code);\n        if (!text && reason) {\n            text = reason;\n        }\n        return \"SIP;cause=\" + cause + ';text=\"' + text + '\"';\n    }\n    referExtraHeaders(referTo) {\n        const extraHeaders = [];\n        extraHeaders.push(\"Referred-By: <\" + this.userAgent.configuration.uri + \">\");\n        extraHeaders.push(\"Contact: \" + this._contact);\n        extraHeaders.push(\"Allow: \" + [\"ACK\", \"CANCEL\", \"INVITE\", \"MESSAGE\", \"BYE\", \"OPTIONS\", \"INFO\", \"NOTIFY\", \"REFER\"].toString());\n        extraHeaders.push(\"Refer-To: \" + referTo);\n        return extraHeaders;\n    }\n    referToString(target) {\n        let referTo;\n        if (target instanceof _grammar_uri_js__WEBPACK_IMPORTED_MODULE_15__.URI) {\n            // REFER without Replaces (Blind Transfer)\n            referTo = target.toString();\n        }\n        else {\n            // REFER with Replaces (Attended Transfer)\n            if (!target.dialog) {\n                throw new Error(\"Dialog undefined.\");\n            }\n            const displayName = target.remoteIdentity.friendlyName;\n            const remoteTarget = target.dialog.remoteTarget.toString();\n            const callId = target.dialog.callId;\n            const remoteTag = target.dialog.remoteTag;\n            const localTag = target.dialog.localTag;\n            const replaces = encodeURIComponent(`${callId};to-tag=${remoteTag};from-tag=${localTag}`);\n            referTo = `\"${displayName}\" <${remoteTarget}?Replaces=${replaces}>`;\n        }\n        return referTo;\n    }\n}\n\n\n/***/ }),\n/* 17 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionState\": () => (/* binding */ SessionState)\n/* harmony export */ });\n/**\n * {@link Session} state.\n *\n * @remarks\n * The {@link Session} behaves in a deterministic manner according to the following\n * Finite State Machine (FSM).\n * ```txt\n *                   ___________________________________________________________\n *                  |  ____________________________________________             |\n *                  | |            ____________________________    |            |\n * Session          | |           |                            v   v            v\n * Constructed -> Initial -> Establishing -> Established -> Terminating -> Terminated\n *                                |               |___________________________^   ^\n *                                |_______________________________________________|\n * ```\n * @public\n */\nvar SessionState;\n(function (SessionState) {\n    /**\n     * If `Inviter`, INVITE not sent yet.\n     * If `Invitation`, received INVITE (but no final response sent yet).\n     */\n    SessionState[\"Initial\"] = \"Initial\";\n    /**\n     * If `Inviter`, sent INVITE and waiting for a final response.\n     * If `Invitation`, received INVITE and attempting to send 200 final response (but has not sent it yet).\n     */\n    SessionState[\"Establishing\"] = \"Establishing\";\n    /**\n     * If `Inviter`, sent INVITE and received 200 final response and sent ACK.\n     * If `Invitation`, received INVITE and sent 200 final response.\n     */\n    SessionState[\"Established\"] = \"Established\";\n    /**\n     * If `Inviter`, sent INVITE, sent CANCEL and now waiting for 487 final response to ACK (or 200 to ACK & BYE).\n     * If `Invitation`, received INVITE, sent 200 final response and now waiting on ACK and upon receipt will attempt BYE\n     * (as the protocol specification requires, before sending a BYE we must receive the ACK - so we are waiting).\n     */\n    SessionState[\"Terminating\"] = \"Terminating\";\n    /**\n     * If `Inviter`, sent INVITE and received non-200 final response (or sent/received BYE after receiving 200).\n     * If `Invitation`, received INVITE and sent non-200 final response (or sent/received BYE after sending 200).\n     */\n    SessionState[\"Terminated\"] = \"Terminated\";\n})(SessionState = SessionState || (SessionState = {}));\n\n\n/***/ }),\n/* 18 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"fromBodyLegacy\": () => (/* binding */ fromBodyLegacy),\n/* harmony export */   \"getBody\": () => (/* binding */ getBody),\n/* harmony export */   \"isBody\": () => (/* binding */ isBody)\n/* harmony export */ });\n/* harmony import */ var _incoming_request_message_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(19);\n/* harmony import */ var _incoming_response_message_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);\n/* harmony import */ var _outgoing_request_message_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(28);\n\n\n\n// If the Content-Disposition header field is missing, bodies of\n// Content-Type application/sdp imply the disposition \"session\", while\n// other content types imply \"render\".\n// https://tools.ietf.org/html/rfc3261#section-13.2.1\nfunction contentTypeToContentDisposition(contentType) {\n    if (contentType === \"application/sdp\") {\n        return \"session\";\n    }\n    else {\n        return \"render\";\n    }\n}\n/**\n * Create a Body given a legacy body type.\n * @param bodyLegacy - Body Object\n * @internal\n */\nfunction fromBodyLegacy(bodyLegacy) {\n    const content = typeof bodyLegacy === \"string\" ? bodyLegacy : bodyLegacy.body;\n    const contentType = typeof bodyLegacy === \"string\" ? \"application/sdp\" : bodyLegacy.contentType;\n    const contentDisposition = contentTypeToContentDisposition(contentType);\n    const body = { contentDisposition, contentType, content };\n    return body;\n}\n/**\n * User-Defined Type Guard for Body.\n * @param body - Body to check.\n * @internal\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction isBody(body) {\n    return body &&\n        typeof body.content === \"string\" &&\n        typeof body.contentType === \"string\" &&\n        body.contentDisposition === undefined\n        ? true\n        : typeof body.contentDisposition === \"string\";\n}\n/**\n * Given a message, get a normalized body.\n * The content disposition is inferred if not set.\n * @param message - The message.\n * @internal\n */\nfunction getBody(message) {\n    let contentDisposition;\n    let contentType;\n    let content;\n    // We're in UAS role, receiving incoming request\n    if (message instanceof _incoming_request_message_js__WEBPACK_IMPORTED_MODULE_0__.IncomingRequestMessage) {\n        if (message.body) {\n            // FIXME: Parsing needs typing\n            const parse = message.parseHeader(\"Content-Disposition\");\n            contentDisposition = parse ? parse.type : undefined;\n            contentType = message.parseHeader(\"Content-Type\");\n            content = message.body;\n        }\n    }\n    // We're in UAC role, receiving incoming response\n    if (message instanceof _incoming_response_message_js__WEBPACK_IMPORTED_MODULE_1__.IncomingResponseMessage) {\n        if (message.body) {\n            // FIXME: Parsing needs typing\n            const parse = message.parseHeader(\"Content-Disposition\");\n            contentDisposition = parse ? parse.type : undefined;\n            contentType = message.parseHeader(\"Content-Type\");\n            content = message.body;\n        }\n    }\n    // We're in UAC role, sending outgoing request\n    if (message instanceof _outgoing_request_message_js__WEBPACK_IMPORTED_MODULE_2__.OutgoingRequestMessage) {\n        if (message.body) {\n            contentDisposition = message.getHeader(\"Content-Disposition\");\n            contentType = message.getHeader(\"Content-Type\");\n            if (typeof message.body === \"string\") {\n                // FIXME: OutgoingRequest should not allow a \"string\" body without a \"Content-Type\" header.\n                if (!contentType) {\n                    throw new Error(\"Header content type header does not equal body content type.\");\n                }\n                content = message.body;\n            }\n            else {\n                // FIXME: OutgoingRequest should not allow the \"Content-Type\" header not to match th body content type\n                if (contentType && contentType !== message.body.contentType) {\n                    throw new Error(\"Header content type header does not equal body content type.\");\n                }\n                contentType = message.body.contentType;\n                content = message.body.body;\n            }\n        }\n    }\n    // We're in UAS role, sending outgoing response\n    if (isBody(message)) {\n        contentDisposition = message.contentDisposition;\n        contentType = message.contentType;\n        content = message.content;\n    }\n    // No content, no body.\n    if (!content) {\n        return undefined;\n    }\n    if (contentType && !contentDisposition) {\n        contentDisposition = contentTypeToContentDisposition(contentType);\n    }\n    if (!contentDisposition) {\n        throw new Error(\"Content disposition undefined.\");\n    }\n    if (!contentType) {\n        throw new Error(\"Content type undefined.\");\n    }\n    return {\n        contentDisposition,\n        contentType,\n        content\n    };\n}\n\n\n/***/ }),\n/* 19 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"IncomingRequestMessage\": () => (/* binding */ IncomingRequestMessage)\n/* harmony export */ });\n/* harmony import */ var _incoming_message_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(20);\n\n/**\n * Incoming request message.\n * @public\n */\nclass IncomingRequestMessage extends _incoming_message_js__WEBPACK_IMPORTED_MODULE_0__.IncomingMessage {\n    constructor() {\n        super();\n    }\n}\n\n\n/***/ }),\n/* 20 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"IncomingMessage\": () => (/* binding */ IncomingMessage)\n/* harmony export */ });\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(22);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(21);\n\n\n/**\n * Incoming message.\n * @public\n */\nclass IncomingMessage {\n    constructor() {\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        this.headers = {};\n    }\n    /**\n     * Insert a header of the given name and value into the last position of the\n     * header array.\n     * @param name - header name\n     * @param value - header value\n     */\n    addHeader(name, value) {\n        const header = { raw: value };\n        name = (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name);\n        if (this.headers[name]) {\n            this.headers[name].push(header);\n        }\n        else {\n            this.headers[name] = [header];\n        }\n    }\n    /**\n     * Get the value of the given header name at the given position.\n     * @param name - header name\n     * @returns Returns the specified header, undefined if header doesn't exist.\n     */\n    getHeader(name) {\n        const header = this.headers[(0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name)];\n        if (header) {\n            if (header[0]) {\n                return header[0].raw;\n            }\n        }\n        else {\n            return;\n        }\n    }\n    /**\n     * Get the header/s of the given name.\n     * @param name - header name\n     * @returns Array - with all the headers of the specified name.\n     */\n    getHeaders(name) {\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        const header = this.headers[(0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name)];\n        const result = [];\n        if (!header) {\n            return [];\n        }\n        for (const headerPart of header) {\n            result.push(headerPart.raw);\n        }\n        return result;\n    }\n    /**\n     * Verify the existence of the given header.\n     * @param name - header name\n     * @returns true if header with given name exists, false otherwise\n     */\n    hasHeader(name) {\n        return !!this.headers[(0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name)];\n    }\n    /**\n     * Parse the given header on the given index.\n     * @param name - header name\n     * @param idx - header index\n     * @returns Parsed header object, undefined if the\n     *   header is not present or in case of a parsing error.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    parseHeader(name, idx = 0) {\n        name = (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name);\n        if (!this.headers[name]) {\n            // this.logger.log(\"header '\" + name + \"' not present\");\n            return;\n        }\n        else if (idx >= this.headers[name].length) {\n            // this.logger.log(\"not so many '\" + name + \"' headers present\");\n            return;\n        }\n        const header = this.headers[name][idx];\n        const value = header.raw;\n        if (header.parsed) {\n            return header.parsed;\n        }\n        // substitute '-' by '_' for grammar rule matching.\n        const parsed = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_1__.Grammar.parse(value, name.replace(/-/g, \"_\"));\n        if (parsed === -1) {\n            this.headers[name].splice(idx, 1); // delete from headers\n            // this.logger.warn('error parsing \"' + name + '\" header field with value \"' + value + '\"');\n            return;\n        }\n        else {\n            header.parsed = parsed;\n            return parsed;\n        }\n    }\n    /**\n     * Message Header attribute selector. Alias of parseHeader.\n     * @param name - header name\n     * @param idx - header index\n     * @returns Parsed header object, undefined if the\n     *   header is not present or in case of a parsing error.\n     *\n     * @example\n     * message.s('via',3).port\n     */\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    s(name, idx = 0) {\n        return this.parseHeader(name, idx);\n    }\n    /**\n     * Replace the value of the given header by the value.\n     * @param name - header name\n     * @param value - header value\n     */\n    setHeader(name, value) {\n        this.headers[(0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name)] = [{ raw: value }];\n    }\n    toString() {\n        return this.data;\n    }\n}\n\n\n/***/ }),\n/* 21 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"createRandomToken\": () => (/* binding */ createRandomToken),\n/* harmony export */   \"getReasonPhrase\": () => (/* binding */ getReasonPhrase),\n/* harmony export */   \"headerize\": () => (/* binding */ headerize),\n/* harmony export */   \"newTag\": () => (/* binding */ newTag),\n/* harmony export */   \"utf8Length\": () => (/* binding */ utf8Length)\n/* harmony export */ });\n/**\n * SIP Response Reasons\n * DOC: http://www.iana.org/assignments/sip-parameters\n * @internal\n */\nconst REASON_PHRASE = {\n    100: \"Trying\",\n    180: \"Ringing\",\n    181: \"Call Is Being Forwarded\",\n    182: \"Queued\",\n    183: \"Session Progress\",\n    199: \"Early Dialog Terminated\",\n    200: \"OK\",\n    202: \"Accepted\",\n    204: \"No Notification\",\n    300: \"Multiple Choices\",\n    301: \"Moved Permanently\",\n    302: \"Moved Temporarily\",\n    305: \"Use Proxy\",\n    380: \"Alternative Service\",\n    400: \"Bad Request\",\n    401: \"Unauthorized\",\n    402: \"Payment Required\",\n    403: \"Forbidden\",\n    404: \"Not Found\",\n    405: \"Method Not Allowed\",\n    406: \"Not Acceptable\",\n    407: \"Proxy Authentication Required\",\n    408: \"Request Timeout\",\n    410: \"Gone\",\n    412: \"Conditional Request Failed\",\n    413: \"Request Entity Too Large\",\n    414: \"Request-URI Too Long\",\n    415: \"Unsupported Media Type\",\n    416: \"Unsupported URI Scheme\",\n    417: \"Unknown Resource-Priority\",\n    420: \"Bad Extension\",\n    421: \"Extension Required\",\n    422: \"Session Interval Too Small\",\n    423: \"Interval Too Brief\",\n    428: \"Use Identity Header\",\n    429: \"Provide Referrer Identity\",\n    430: \"Flow Failed\",\n    433: \"Anonymity Disallowed\",\n    436: \"Bad Identity-Info\",\n    437: \"Unsupported Certificate\",\n    438: \"Invalid Identity Header\",\n    439: \"First Hop Lacks Outbound Support\",\n    440: \"Max-Breadth Exceeded\",\n    469: \"Bad Info Package\",\n    470: \"Consent Needed\",\n    478: \"Unresolvable Destination\",\n    480: \"Temporarily Unavailable\",\n    481: \"Call/Transaction Does Not Exist\",\n    482: \"Loop Detected\",\n    483: \"Too Many Hops\",\n    484: \"Address Incomplete\",\n    485: \"Ambiguous\",\n    486: \"Busy Here\",\n    487: \"Request Terminated\",\n    488: \"Not Acceptable Here\",\n    489: \"Bad Event\",\n    491: \"Request Pending\",\n    493: \"Undecipherable\",\n    494: \"Security Agreement Required\",\n    500: \"Internal Server Error\",\n    501: \"Not Implemented\",\n    502: \"Bad Gateway\",\n    503: \"Service Unavailable\",\n    504: \"Server Time-out\",\n    505: \"Version Not Supported\",\n    513: \"Message Too Large\",\n    580: \"Precondition Failure\",\n    600: \"Busy Everywhere\",\n    603: \"Decline\",\n    604: \"Does Not Exist Anywhere\",\n    606: \"Not Acceptable\"\n};\n/**\n * @param size -\n * @param base -\n * @internal\n */\nfunction createRandomToken(size, base = 32) {\n    let token = \"\";\n    for (let i = 0; i < size; i++) {\n        const r = Math.floor(Math.random() * base);\n        token += r.toString(base);\n    }\n    return token;\n}\n/**\n * @internal\n */\nfunction getReasonPhrase(code) {\n    return REASON_PHRASE[code] || \"\";\n}\n/**\n * @internal\n */\nfunction newTag() {\n    return createRandomToken(10);\n}\n/**\n * @param str -\n * @internal\n */\nfunction headerize(str) {\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    const exceptions = {\n        \"Call-Id\": \"Call-ID\",\n        Cseq: \"CSeq\",\n        \"Min-Se\": \"Min-SE\",\n        Rack: \"RAck\",\n        Rseq: \"RSeq\",\n        \"Www-Authenticate\": \"WWW-Authenticate\"\n    };\n    const name = str.toLowerCase().replace(/_/g, \"-\").split(\"-\");\n    const parts = name.length;\n    let hname = \"\";\n    for (let part = 0; part < parts; part++) {\n        if (part !== 0) {\n            hname += \"-\";\n        }\n        hname += name[part].charAt(0).toUpperCase() + name[part].substring(1);\n    }\n    if (exceptions[hname]) {\n        hname = exceptions[hname];\n    }\n    return hname;\n}\n/**\n * @param str -\n * @internal\n */\nfunction utf8Length(str) {\n    return encodeURIComponent(str).replace(/%[A-F\\d]{2}/g, \"U\").length;\n}\n\n\n/***/ }),\n/* 22 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Grammar\": () => (/* binding */ Grammar)\n/* harmony export */ });\n/* harmony import */ var _pegjs_dist_grammar_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(23);\n/* eslint-disable @typescript-eslint/no-namespace */\n/* eslint-disable no-inner-declarations */\n\n/**\n * Grammar.\n * @internal\n */\nvar Grammar;\n(function (Grammar) {\n    /**\n     * Parse.\n     * @param input -\n     * @param startRule -\n     */\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    function parse(input, startRule) {\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        const options = { startRule };\n        try {\n            _pegjs_dist_grammar_js__WEBPACK_IMPORTED_MODULE_0__.parse(input, options);\n        }\n        catch (e) {\n            options.data = -1;\n        }\n        return options.data;\n    }\n    Grammar.parse = parse;\n    /**\n     * Parse the given string and returns a SIP.NameAddrHeader instance or undefined if\n     * it is an invalid NameAddrHeader.\n     * @param name_addr_header -\n     */\n    function nameAddrHeaderParse(nameAddrHeader) {\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        const parsedNameAddrHeader = Grammar.parse(nameAddrHeader, \"Name_Addr_Header\");\n        return parsedNameAddrHeader !== -1 ? parsedNameAddrHeader : undefined;\n    }\n    Grammar.nameAddrHeaderParse = nameAddrHeaderParse;\n    /**\n     * Parse the given string and returns a SIP.URI instance or undefined if\n     * it is an invalid URI.\n     * @param uri -\n     */\n    function URIParse(uri) {\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        const parsedUri = Grammar.parse(uri, \"SIP_URI\");\n        return parsedUri !== -1 ? parsedUri : undefined;\n    }\n    Grammar.URIParse = URIParse;\n})(Grammar = Grammar || (Grammar = {}));\n\n\n/***/ }),\n/* 23 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SyntaxError\": () => (/* binding */ SyntaxError),\n/* harmony export */   \"parse\": () => (/* binding */ parse)\n/* harmony export */ });\n/* harmony import */ var _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(26);\n/* harmony import */ var _uri_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(24);\n\n\nfunction peg$padEnd(str, targetLength, padString) {\n    padString = padString || ' ';\n    if (str.length > targetLength) {\n        return str;\n    }\n    targetLength -= str.length;\n    padString += padString.repeat(targetLength);\n    return str + padString.slice(0, targetLength);\n}\nclass SyntaxError extends Error {\n    constructor(message, expected, found, location) {\n        super();\n        this.message = message;\n        this.expected = expected;\n        this.found = found;\n        this.location = location;\n        this.name = \"SyntaxError\";\n        if (typeof Object.setPrototypeOf === \"function\") {\n            Object.setPrototypeOf(this, SyntaxError.prototype);\n        }\n        else {\n            this.__proto__ = SyntaxError.prototype;\n        }\n        if (typeof Error.captureStackTrace === \"function\") {\n            Error.captureStackTrace(this, SyntaxError);\n        }\n    }\n    static buildMessage(expected, found) {\n        function hex(ch) {\n            return ch.charCodeAt(0).toString(16).toUpperCase();\n        }\n        function literalEscape(s) {\n            return s\n                .replace(/\\\\/g, \"\\\\\\\\\")\n                .replace(/\"/g, \"\\\\\\\"\")\n                .replace(/\\0/g, \"\\\\0\")\n                .replace(/\\t/g, \"\\\\t\")\n                .replace(/\\n/g, \"\\\\n\")\n                .replace(/\\r/g, \"\\\\r\")\n                .replace(/[\\x00-\\x0F]/g, (ch) => \"\\\\x0\" + hex(ch))\n                .replace(/[\\x10-\\x1F\\x7F-\\x9F]/g, (ch) => \"\\\\x\" + hex(ch));\n        }\n        function classEscape(s) {\n            return s\n                .replace(/\\\\/g, \"\\\\\\\\\")\n                .replace(/\\]/g, \"\\\\]\")\n                .replace(/\\^/g, \"\\\\^\")\n                .replace(/-/g, \"\\\\-\")\n                .replace(/\\0/g, \"\\\\0\")\n                .replace(/\\t/g, \"\\\\t\")\n                .replace(/\\n/g, \"\\\\n\")\n                .replace(/\\r/g, \"\\\\r\")\n                .replace(/[\\x00-\\x0F]/g, (ch) => \"\\\\x0\" + hex(ch))\n                .replace(/[\\x10-\\x1F\\x7F-\\x9F]/g, (ch) => \"\\\\x\" + hex(ch));\n        }\n        function describeExpectation(expectation) {\n            switch (expectation.type) {\n                case \"literal\":\n                    return \"\\\"\" + literalEscape(expectation.text) + \"\\\"\";\n                case \"class\":\n                    const escapedParts = expectation.parts.map((part) => {\n                        return Array.isArray(part)\n                            ? classEscape(part[0]) + \"-\" + classEscape(part[1])\n                            : classEscape(part);\n                    });\n                    return \"[\" + (expectation.inverted ? \"^\" : \"\") + escapedParts + \"]\";\n                case \"any\":\n                    return \"any character\";\n                case \"end\":\n                    return \"end of input\";\n                case \"other\":\n                    return expectation.description;\n            }\n        }\n        function describeExpected(expected1) {\n            const descriptions = expected1.map(describeExpectation);\n            let i;\n            let j;\n            descriptions.sort();\n            if (descriptions.length > 0) {\n                for (i = 1, j = 1; i < descriptions.length; i++) {\n                    if (descriptions[i - 1] !== descriptions[i]) {\n                        descriptions[j] = descriptions[i];\n                        j++;\n                    }\n                }\n                descriptions.length = j;\n            }\n            switch (descriptions.length) {\n                case 1:\n                    return descriptions[0];\n                case 2:\n                    return descriptions[0] + \" or \" + descriptions[1];\n                default:\n                    return descriptions.slice(0, -1).join(\", \")\n                        + \", or \"\n                        + descriptions[descriptions.length - 1];\n            }\n        }\n        function describeFound(found1) {\n            return found1 ? \"\\\"\" + literalEscape(found1) + \"\\\"\" : \"end of input\";\n        }\n        return \"Expected \" + describeExpected(expected) + \" but \" + describeFound(found) + \" found.\";\n    }\n    format(sources) {\n        let str = 'Error: ' + this.message;\n        if (this.location) {\n            let src = null;\n            let k;\n            for (k = 0; k < sources.length; k++) {\n                if (sources[k].source === this.location.source) {\n                    src = sources[k].text.split(/\\r\\n|\\n|\\r/g);\n                    break;\n                }\n            }\n            let s = this.location.start;\n            let loc = this.location.source + ':' + s.line + ':' + s.column;\n            if (src) {\n                let e = this.location.end;\n                let filler = peg$padEnd('', s.line.toString().length, ' ');\n                let line = src[s.line - 1];\n                let last = s.line === e.line ? e.column : line.length + 1;\n                str += '\\n --> ' + loc + '\\n' + filler + ' |\\n' + s.line + ' | ' + line + '\\n' + filler + ' | ' +\n                    peg$padEnd('', s.column - 1, ' ') +\n                    peg$padEnd('', last - s.column, '^');\n            }\n            else {\n                str += '\\n at ' + loc;\n            }\n        }\n        return str;\n    }\n}\nfunction peg$parse(input, options) {\n    options = options !== undefined ? options : {};\n    const peg$FAILED = {};\n    const peg$source = options.grammarSource;\n    const peg$startRuleIndices = { Contact: 119, Name_Addr_Header: 156, Record_Route: 176, Request_Response: 81, SIP_URI: 45, Subscription_State: 186, Supported: 191, Require: 182, Via: 194, absoluteURI: 84, Call_ID: 118, Content_Disposition: 130, Content_Length: 135, Content_Type: 136, CSeq: 146, displayName: 122, Event: 149, From: 151, host: 52, Max_Forwards: 154, Min_SE: 213, Proxy_Authenticate: 157, quoted_string: 40, Refer_To: 178, Replaces: 179, Session_Expires: 210, stun_URI: 217, To: 192, turn_URI: 223, uuid: 226, WWW_Authenticate: 209, challenge: 158, sipfrag: 230, Referred_By: 231 };\n    let peg$startRuleIndex = 119;\n    const peg$consts = [\n        \"\\r\\n\",\n        peg$literalExpectation(\"\\r\\n\", false),\n        /^[0-9]/,\n        peg$classExpectation([[\"0\", \"9\"]], false, false),\n        /^[a-zA-Z]/,\n        peg$classExpectation([[\"a\", \"z\"], [\"A\", \"Z\"]], false, false),\n        /^[0-9a-fA-F]/,\n        peg$classExpectation([[\"0\", \"9\"], [\"a\", \"f\"], [\"A\", \"F\"]], false, false),\n        /^[\\0-\\xFF]/,\n        peg$classExpectation([[\"\\0\", \"\\xFF\"]], false, false),\n        /^[\"]/,\n        peg$classExpectation([\"\\\"\"], false, false),\n        \" \",\n        peg$literalExpectation(\" \", false),\n        \"\\t\",\n        peg$literalExpectation(\"\\t\", false),\n        /^[a-zA-Z0-9]/,\n        peg$classExpectation([[\"a\", \"z\"], [\"A\", \"Z\"], [\"0\", \"9\"]], false, false),\n        \";\",\n        peg$literalExpectation(\";\", false),\n        \"/\",\n        peg$literalExpectation(\"/\", false),\n        \"?\",\n        peg$literalExpectation(\"?\", false),\n        \":\",\n        peg$literalExpectation(\":\", false),\n        \"@\",\n        peg$literalExpectation(\"@\", false),\n        \"&\",\n        peg$literalExpectation(\"&\", false),\n        \"=\",\n        peg$literalExpectation(\"=\", false),\n        \"+\",\n        peg$literalExpectation(\"+\", false),\n        \"$\",\n        peg$literalExpectation(\"$\", false),\n        \",\",\n        peg$literalExpectation(\",\", false),\n        \"-\",\n        peg$literalExpectation(\"-\", false),\n        \"_\",\n        peg$literalExpectation(\"_\", false),\n        \".\",\n        peg$literalExpectation(\".\", false),\n        \"!\",\n        peg$literalExpectation(\"!\", false),\n        \"~\",\n        peg$literalExpectation(\"~\", false),\n        \"*\",\n        peg$literalExpectation(\"*\", false),\n        \"'\",\n        peg$literalExpectation(\"'\", false),\n        \"(\",\n        peg$literalExpectation(\"(\", false),\n        \")\",\n        peg$literalExpectation(\")\", false),\n        \"%\",\n        peg$literalExpectation(\"%\", false),\n        function () { return \" \"; },\n        function () { return ':'; },\n        /^[!-~]/,\n        peg$classExpectation([[\"!\", \"~\"]], false, false),\n        /^[\\x80-\\uFFFF]/,\n        peg$classExpectation([[\"\\x80\", \"\\uFFFF\"]], false, false),\n        /^[\\x80-\\xBF]/,\n        peg$classExpectation([[\"\\x80\", \"\\xBF\"]], false, false),\n        /^[a-f]/,\n        peg$classExpectation([[\"a\", \"f\"]], false, false),\n        \"`\",\n        peg$literalExpectation(\"`\", false),\n        \"<\",\n        peg$literalExpectation(\"<\", false),\n        \">\",\n        peg$literalExpectation(\">\", false),\n        \"\\\\\",\n        peg$literalExpectation(\"\\\\\", false),\n        \"[\",\n        peg$literalExpectation(\"[\", false),\n        \"]\",\n        peg$literalExpectation(\"]\", false),\n        \"{\",\n        peg$literalExpectation(\"{\", false),\n        \"}\",\n        peg$literalExpectation(\"}\", false),\n        function () { return \"*\"; },\n        function () { return \"/\"; },\n        function () { return \"=\"; },\n        function () { return \"(\"; },\n        function () { return \")\"; },\n        function () { return \">\"; },\n        function () { return \"<\"; },\n        function () { return \",\"; },\n        function () { return \";\"; },\n        function () { return \":\"; },\n        function () { return \"\\\"\"; },\n        /^[!-']/,\n        peg$classExpectation([[\"!\", \"'\"]], false, false),\n        /^[*-[]/,\n        peg$classExpectation([[\"*\", \"[\"]], false, false),\n        /^[\\]-~]/,\n        peg$classExpectation([[\"]\", \"~\"]], false, false),\n        function (contents) {\n            return contents;\n        },\n        /^[#-[]/,\n        peg$classExpectation([[\"#\", \"[\"]], false, false),\n        /^[\\0-\\t]/,\n        peg$classExpectation([[\"\\0\", \"\\t\"]], false, false),\n        /^[\\v-\\f]/,\n        peg$classExpectation([[\"\\v\", \"\\f\"]], false, false),\n        /^[\\x0E-\\x7F]/,\n        peg$classExpectation([[\"\\x0E\", \"\\x7F\"]], false, false),\n        function () {\n            options = options || { data: {} };\n            options.data.uri = new _uri_js__WEBPACK_IMPORTED_MODULE_0__.URI(options.data.scheme, options.data.user, options.data.host, options.data.port);\n            delete options.data.scheme;\n            delete options.data.user;\n            delete options.data.host;\n            delete options.data.host_type;\n            delete options.data.port;\n        },\n        function () {\n            options = options || { data: {} };\n            options.data.uri = new _uri_js__WEBPACK_IMPORTED_MODULE_0__.URI(options.data.scheme, options.data.user, options.data.host, options.data.port, options.data.uri_params, options.data.uri_headers);\n            delete options.data.scheme;\n            delete options.data.user;\n            delete options.data.host;\n            delete options.data.host_type;\n            delete options.data.port;\n            delete options.data.uri_params;\n            if (options.startRule === 'SIP_URI') {\n                options.data = options.data.uri;\n            }\n        },\n        \"sips\",\n        peg$literalExpectation(\"sips\", true),\n        \"sip\",\n        peg$literalExpectation(\"sip\", true),\n        function (uri_scheme) {\n            options = options || { data: {} };\n            options.data.scheme = uri_scheme;\n        },\n        function () {\n            options = options || { data: {} };\n            options.data.user = decodeURIComponent(text().slice(0, -1));\n        },\n        function () {\n            options = options || { data: {} };\n            options.data.password = text();\n        },\n        function () {\n            options = options || { data: {} };\n            options.data.host = text();\n            return options.data.host;\n        },\n        function () {\n            options = options || { data: {} };\n            options.data.host_type = 'domain';\n            return text();\n        },\n        /^[a-zA-Z0-9_\\-]/,\n        peg$classExpectation([[\"a\", \"z\"], [\"A\", \"Z\"], [\"0\", \"9\"], \"_\", \"-\"], false, false),\n        /^[a-zA-Z0-9\\-]/,\n        peg$classExpectation([[\"a\", \"z\"], [\"A\", \"Z\"], [\"0\", \"9\"], \"-\"], false, false),\n        function () {\n            options = options || { data: {} };\n            options.data.host_type = 'IPv6';\n            return text();\n        },\n        \"::\",\n        peg$literalExpectation(\"::\", false),\n        function () {\n            options = options || { data: {} };\n            options.data.host_type = 'IPv6';\n            return text();\n        },\n        function () {\n            options = options || { data: {} };\n            options.data.host_type = 'IPv4';\n            return text();\n        },\n        \"25\",\n        peg$literalExpectation(\"25\", false),\n        /^[0-5]/,\n        peg$classExpectation([[\"0\", \"5\"]], false, false),\n        \"2\",\n        peg$literalExpectation(\"2\", false),\n        /^[0-4]/,\n        peg$classExpectation([[\"0\", \"4\"]], false, false),\n        \"1\",\n        peg$literalExpectation(\"1\", false),\n        /^[1-9]/,\n        peg$classExpectation([[\"1\", \"9\"]], false, false),\n        function (port) {\n            options = options || { data: {} };\n            port = parseInt(port.join(''));\n            options.data.port = port;\n            return port;\n        },\n        \"transport=\",\n        peg$literalExpectation(\"transport=\", true),\n        \"udp\",\n        peg$literalExpectation(\"udp\", true),\n        \"tcp\",\n        peg$literalExpectation(\"tcp\", true),\n        \"sctp\",\n        peg$literalExpectation(\"sctp\", true),\n        \"tls\",\n        peg$literalExpectation(\"tls\", true),\n        function (transport) {\n            options = options || { data: {} };\n            if (!options.data.uri_params)\n                options.data.uri_params = {};\n            options.data.uri_params['transport'] = transport.toLowerCase();\n        },\n        \"user=\",\n        peg$literalExpectation(\"user=\", true),\n        \"phone\",\n        peg$literalExpectation(\"phone\", true),\n        \"ip\",\n        peg$literalExpectation(\"ip\", true),\n        function (user) {\n            options = options || { data: {} };\n            if (!options.data.uri_params)\n                options.data.uri_params = {};\n            options.data.uri_params['user'] = user.toLowerCase();\n        },\n        \"method=\",\n        peg$literalExpectation(\"method=\", true),\n        function (method) {\n            options = options || { data: {} };\n            if (!options.data.uri_params)\n                options.data.uri_params = {};\n            options.data.uri_params['method'] = method;\n        },\n        \"ttl=\",\n        peg$literalExpectation(\"ttl=\", true),\n        function (ttl) {\n            options = options || { data: {} };\n            if (!options.data.params)\n                options.data.params = {};\n            options.data.params['ttl'] = ttl;\n        },\n        \"maddr=\",\n        peg$literalExpectation(\"maddr=\", true),\n        function (maddr) {\n            options = options || { data: {} };\n            if (!options.data.uri_params)\n                options.data.uri_params = {};\n            options.data.uri_params['maddr'] = maddr;\n        },\n        \"lr\",\n        peg$literalExpectation(\"lr\", true),\n        function () {\n            options = options || { data: {} };\n            if (!options.data.uri_params)\n                options.data.uri_params = {};\n            options.data.uri_params['lr'] = undefined;\n        },\n        function (param, value) {\n            options = options || { data: {} };\n            if (!options.data.uri_params)\n                options.data.uri_params = {};\n            if (value === null) {\n                value = undefined;\n            }\n            else {\n                value = value[1];\n            }\n            options.data.uri_params[param.toLowerCase()] = value;\n        },\n        function (hname, hvalue) {\n            hname = hname.join('').toLowerCase();\n            hvalue = hvalue.join('');\n            options = options || { data: {} };\n            if (!options.data.uri_headers)\n                options.data.uri_headers = {};\n            if (!options.data.uri_headers[hname]) {\n                options.data.uri_headers[hname] = [hvalue];\n            }\n            else {\n                options.data.uri_headers[hname].push(hvalue);\n            }\n        },\n        function () {\n            options = options || { data: {} };\n            // lots of tests fail if this isn't guarded...\n            if (options.startRule === 'Refer_To') {\n                options.data.uri = new _uri_js__WEBPACK_IMPORTED_MODULE_0__.URI(options.data.scheme, options.data.user, options.data.host, options.data.port, options.data.uri_params, options.data.uri_headers);\n                delete options.data.scheme;\n                delete options.data.user;\n                delete options.data.host;\n                delete options.data.host_type;\n                delete options.data.port;\n                delete options.data.uri_params;\n            }\n        },\n        \"//\",\n        peg$literalExpectation(\"//\", false),\n        function () {\n            options = options || { data: {} };\n            options.data.scheme = text();\n        },\n        peg$literalExpectation(\"SIP\", true),\n        function () {\n            options = options || { data: {} };\n            options.data.sip_version = text();\n        },\n        \"INVITE\",\n        peg$literalExpectation(\"INVITE\", false),\n        \"ACK\",\n        peg$literalExpectation(\"ACK\", false),\n        \"VXACH\",\n        peg$literalExpectation(\"VXACH\", false),\n        \"OPTIONS\",\n        peg$literalExpectation(\"OPTIONS\", false),\n        \"BYE\",\n        peg$literalExpectation(\"BYE\", false),\n        \"CANCEL\",\n        peg$literalExpectation(\"CANCEL\", false),\n        \"REGISTER\",\n        peg$literalExpectation(\"REGISTER\", false),\n        \"SUBSCRIBE\",\n        peg$literalExpectation(\"SUBSCRIBE\", false),\n        \"NOTIFY\",\n        peg$literalExpectation(\"NOTIFY\", false),\n        \"REFER\",\n        peg$literalExpectation(\"REFER\", false),\n        \"PUBLISH\",\n        peg$literalExpectation(\"PUBLISH\", false),\n        function () {\n            options = options || { data: {} };\n            options.data.method = text();\n            return options.data.method;\n        },\n        function (status_code) {\n            options = options || { data: {} };\n            options.data.status_code = parseInt(status_code.join(''));\n        },\n        function () {\n            options = options || { data: {} };\n            options.data.reason_phrase = text();\n        },\n        function () {\n            options = options || { data: {} };\n            options.data = text();\n        },\n        function () {\n            var idx, length;\n            options = options || { data: {} };\n            length = options.data.multi_header.length;\n            for (idx = 0; idx < length; idx++) {\n                if (options.data.multi_header[idx].parsed === null) {\n                    options.data = null;\n                    break;\n                }\n            }\n            if (options.data !== null) {\n                options.data = options.data.multi_header;\n            }\n            else {\n                options.data = -1;\n            }\n        },\n        function () {\n            var header;\n            options = options || { data: {} };\n            if (!options.data.multi_header)\n                options.data.multi_header = [];\n            try {\n                header = new _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader(options.data.uri, options.data.displayName, options.data.params);\n                delete options.data.uri;\n                delete options.data.displayName;\n                delete options.data.params;\n            }\n            catch (e) {\n                header = null;\n            }\n            options.data.multi_header.push({ 'position': peg$currPos,\n                'offset': location().start.offset,\n                'parsed': header\n            });\n        },\n        function (displayName) {\n            displayName = text().trim();\n            if (displayName[0] === '\\\"') {\n                displayName = displayName.substring(1, displayName.length - 1);\n            }\n            options = options || { data: {} };\n            options.data.displayName = displayName;\n        },\n        \"q\",\n        peg$literalExpectation(\"q\", true),\n        function (q) {\n            options = options || { data: {} };\n            if (!options.data.params)\n                options.data.params = {};\n            options.data.params['q'] = q;\n        },\n        \"expires\",\n        peg$literalExpectation(\"expires\", true),\n        function (expires) {\n            options = options || { data: {} };\n            if (!options.data.params)\n                options.data.params = {};\n            options.data.params['expires'] = expires;\n        },\n        function (delta_seconds) {\n            return parseInt(delta_seconds.join(''));\n        },\n        \"0\",\n        peg$literalExpectation(\"0\", false),\n        function () {\n            return parseFloat(text());\n        },\n        function (param, value) {\n            options = options || { data: {} };\n            if (!options.data.params)\n                options.data.params = {};\n            if (value === null) {\n                value = undefined;\n            }\n            else {\n                value = value[1];\n            }\n            options.data.params[param.toLowerCase()] = value;\n        },\n        \"render\",\n        peg$literalExpectation(\"render\", true),\n        \"session\",\n        peg$literalExpectation(\"session\", true),\n        \"icon\",\n        peg$literalExpectation(\"icon\", true),\n        \"alert\",\n        peg$literalExpectation(\"alert\", true),\n        function () {\n            options = options || { data: {} };\n            if (options.startRule === 'Content_Disposition') {\n                options.data.type = text().toLowerCase();\n            }\n        },\n        \"handling\",\n        peg$literalExpectation(\"handling\", true),\n        \"optional\",\n        peg$literalExpectation(\"optional\", true),\n        \"required\",\n        peg$literalExpectation(\"required\", true),\n        function (length) {\n            options = options || { data: {} };\n            options.data = parseInt(length.join(''));\n        },\n        function () {\n            options = options || { data: {} };\n            options.data = text();\n        },\n        \"text\",\n        peg$literalExpectation(\"text\", true),\n        \"image\",\n        peg$literalExpectation(\"image\", true),\n        \"audio\",\n        peg$literalExpectation(\"audio\", true),\n        \"video\",\n        peg$literalExpectation(\"video\", true),\n        \"application\",\n        peg$literalExpectation(\"application\", true),\n        \"message\",\n        peg$literalExpectation(\"message\", true),\n        \"multipart\",\n        peg$literalExpectation(\"multipart\", true),\n        \"x-\",\n        peg$literalExpectation(\"x-\", true),\n        function (cseq_value) {\n            options = options || { data: {} };\n            options.data.value = parseInt(cseq_value.join(''));\n        },\n        function (expires) { options = options || { data: {} }; options.data = expires; },\n        function (event_type) {\n            options = options || { data: {} };\n            options.data.event = event_type.toLowerCase();\n        },\n        function () {\n            options = options || { data: {} };\n            var tag = options.data.tag;\n            options.data = new _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader(options.data.uri, options.data.displayName, options.data.params);\n            if (tag) {\n                options.data.setParam('tag', tag);\n            }\n        },\n        \"tag\",\n        peg$literalExpectation(\"tag\", true),\n        function (tag) { options = options || { data: {} }; options.data.tag = tag; },\n        function (forwards) {\n            options = options || { data: {} };\n            options.data = parseInt(forwards.join(''));\n        },\n        function (min_expires) { options = options || { data: {} }; options.data = min_expires; },\n        function () {\n            options = options || { data: {} };\n            options.data = new _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader(options.data.uri, options.data.displayName, options.data.params);\n        },\n        \"digest\",\n        peg$literalExpectation(\"Digest\", true),\n        \"realm\",\n        peg$literalExpectation(\"realm\", true),\n        function (realm) { options = options || { data: {} }; options.data.realm = realm; },\n        \"domain\",\n        peg$literalExpectation(\"domain\", true),\n        \"nonce\",\n        peg$literalExpectation(\"nonce\", true),\n        function (nonce) { options = options || { data: {} }; options.data.nonce = nonce; },\n        \"opaque\",\n        peg$literalExpectation(\"opaque\", true),\n        function (opaque) { options = options || { data: {} }; options.data.opaque = opaque; },\n        \"stale\",\n        peg$literalExpectation(\"stale\", true),\n        \"true\",\n        peg$literalExpectation(\"true\", true),\n        function () { options = options || { data: {} }; options.data.stale = true; },\n        \"false\",\n        peg$literalExpectation(\"false\", true),\n        function () { options = options || { data: {} }; options.data.stale = false; },\n        \"algorithm\",\n        peg$literalExpectation(\"algorithm\", true),\n        \"md5\",\n        peg$literalExpectation(\"MD5\", true),\n        \"md5-sess\",\n        peg$literalExpectation(\"MD5-sess\", true),\n        function (algorithm) {\n            options = options || { data: {} };\n            options.data.algorithm = algorithm.toUpperCase();\n        },\n        \"qop\",\n        peg$literalExpectation(\"qop\", true),\n        \"auth-int\",\n        peg$literalExpectation(\"auth-int\", true),\n        \"auth\",\n        peg$literalExpectation(\"auth\", true),\n        function (qop_value) {\n            options = options || { data: {} };\n            options.data.qop || (options.data.qop = []);\n            options.data.qop.push(qop_value.toLowerCase());\n        },\n        function (rack_value) {\n            options = options || { data: {} };\n            options.data.value = parseInt(rack_value.join(''));\n        },\n        function () {\n            var idx, length;\n            options = options || { data: {} };\n            length = options.data.multi_header.length;\n            for (idx = 0; idx < length; idx++) {\n                if (options.data.multi_header[idx].parsed === null) {\n                    options.data = null;\n                    break;\n                }\n            }\n            if (options.data !== null) {\n                options.data = options.data.multi_header;\n            }\n            else {\n                options.data = -1;\n            }\n        },\n        function () {\n            var header;\n            options = options || { data: {} };\n            if (!options.data.multi_header)\n                options.data.multi_header = [];\n            try {\n                header = new _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader(options.data.uri, options.data.displayName, options.data.params);\n                delete options.data.uri;\n                delete options.data.displayName;\n                delete options.data.params;\n            }\n            catch (e) {\n                header = null;\n            }\n            options.data.multi_header.push({ 'position': peg$currPos,\n                'offset': location().start.offset,\n                'parsed': header\n            });\n        },\n        function () {\n            options = options || { data: {} };\n            options.data = new _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader(options.data.uri, options.data.displayName, options.data.params);\n        },\n        function () {\n            options = options || { data: {} };\n            if (!(options.data.replaces_from_tag && options.data.replaces_to_tag)) {\n                options.data = -1;\n            }\n        },\n        function () {\n            options = options || { data: {} };\n            options.data = {\n                call_id: options.data\n            };\n        },\n        \"from-tag\",\n        peg$literalExpectation(\"from-tag\", true),\n        function (from_tag) {\n            options = options || { data: {} };\n            options.data.replaces_from_tag = from_tag;\n        },\n        \"to-tag\",\n        peg$literalExpectation(\"to-tag\", true),\n        function (to_tag) {\n            options = options || { data: {} };\n            options.data.replaces_to_tag = to_tag;\n        },\n        \"early-only\",\n        peg$literalExpectation(\"early-only\", true),\n        function () {\n            options = options || { data: {} };\n            options.data.early_only = true;\n        },\n        function (head, r) { return r; },\n        function (head, tail) { return list(head, tail); },\n        function (value) {\n            options = options || { data: {} };\n            if (options.startRule === 'Require') {\n                options.data = value || [];\n            }\n        },\n        function (rseq_value) {\n            options = options || { data: {} };\n            options.data.value = parseInt(rseq_value.join(''));\n        },\n        \"active\",\n        peg$literalExpectation(\"active\", true),\n        \"pending\",\n        peg$literalExpectation(\"pending\", true),\n        \"terminated\",\n        peg$literalExpectation(\"terminated\", true),\n        function () {\n            options = options || { data: {} };\n            options.data.state = text();\n        },\n        \"reason\",\n        peg$literalExpectation(\"reason\", true),\n        function (reason) {\n            options = options || { data: {} };\n            if (typeof reason !== 'undefined')\n                options.data.reason = reason;\n        },\n        function (expires) {\n            options = options || { data: {} };\n            if (typeof expires !== 'undefined')\n                options.data.expires = expires;\n        },\n        \"retry_after\",\n        peg$literalExpectation(\"retry_after\", true),\n        function (retry_after) {\n            options = options || { data: {} };\n            if (typeof retry_after !== 'undefined')\n                options.data.retry_after = retry_after;\n        },\n        \"deactivated\",\n        peg$literalExpectation(\"deactivated\", true),\n        \"probation\",\n        peg$literalExpectation(\"probation\", true),\n        \"rejected\",\n        peg$literalExpectation(\"rejected\", true),\n        \"timeout\",\n        peg$literalExpectation(\"timeout\", true),\n        \"giveup\",\n        peg$literalExpectation(\"giveup\", true),\n        \"noresource\",\n        peg$literalExpectation(\"noresource\", true),\n        \"invariant\",\n        peg$literalExpectation(\"invariant\", true),\n        function (value) {\n            options = options || { data: {} };\n            if (options.startRule === 'Supported') {\n                options.data = value || [];\n            }\n        },\n        function () {\n            options = options || { data: {} };\n            var tag = options.data.tag;\n            options.data = new _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader(options.data.uri, options.data.displayName, options.data.params);\n            if (tag) {\n                options.data.setParam('tag', tag);\n            }\n        },\n        \"ttl\",\n        peg$literalExpectation(\"ttl\", true),\n        function (via_ttl_value) {\n            options = options || { data: {} };\n            options.data.ttl = via_ttl_value;\n        },\n        \"maddr\",\n        peg$literalExpectation(\"maddr\", true),\n        function (via_maddr) {\n            options = options || { data: {} };\n            options.data.maddr = via_maddr;\n        },\n        \"received\",\n        peg$literalExpectation(\"received\", true),\n        function (via_received) {\n            options = options || { data: {} };\n            options.data.received = via_received;\n        },\n        \"branch\",\n        peg$literalExpectation(\"branch\", true),\n        function (via_branch) {\n            options = options || { data: {} };\n            options.data.branch = via_branch;\n        },\n        \"rport\",\n        peg$literalExpectation(\"rport\", true),\n        function (response_port) {\n            options = options || { data: {} };\n            if (typeof response_port !== 'undefined')\n                options.data.rport = response_port.join('');\n        },\n        function (via_protocol) {\n            options = options || { data: {} };\n            options.data.protocol = via_protocol;\n        },\n        peg$literalExpectation(\"UDP\", true),\n        peg$literalExpectation(\"TCP\", true),\n        peg$literalExpectation(\"TLS\", true),\n        peg$literalExpectation(\"SCTP\", true),\n        function (via_transport) {\n            options = options || { data: {} };\n            options.data.transport = via_transport;\n        },\n        function () {\n            options = options || { data: {} };\n            options.data.host = text();\n        },\n        function (via_sent_by_port) {\n            options = options || { data: {} };\n            options.data.port = parseInt(via_sent_by_port.join(''));\n        },\n        function (ttl) {\n            return parseInt(ttl.join(''));\n        },\n        function (deltaSeconds) {\n            options = options || { data: {} };\n            if (options.startRule === 'Session_Expires') {\n                options.data.deltaSeconds = deltaSeconds;\n            }\n        },\n        \"refresher\",\n        peg$literalExpectation(\"refresher\", false),\n        \"uas\",\n        peg$literalExpectation(\"uas\", false),\n        \"uac\",\n        peg$literalExpectation(\"uac\", false),\n        function (endpoint) {\n            options = options || { data: {} };\n            if (options.startRule === 'Session_Expires') {\n                options.data.refresher = endpoint;\n            }\n        },\n        function (deltaSeconds) {\n            options = options || { data: {} };\n            if (options.startRule === 'Min_SE') {\n                options.data = deltaSeconds;\n            }\n        },\n        \"stuns\",\n        peg$literalExpectation(\"stuns\", true),\n        \"stun\",\n        peg$literalExpectation(\"stun\", true),\n        function (scheme) {\n            options = options || { data: {} };\n            options.data.scheme = scheme;\n        },\n        function (host) {\n            options = options || { data: {} };\n            options.data.host = host;\n        },\n        \"?transport=\",\n        peg$literalExpectation(\"?transport=\", false),\n        \"turns\",\n        peg$literalExpectation(\"turns\", true),\n        \"turn\",\n        peg$literalExpectation(\"turn\", true),\n        function (transport) {\n            options = options || { data: {} };\n            options.data.transport = transport;\n        },\n        function () {\n            options = options || { data: {} };\n            options.data = text();\n        },\n        \"Referred-By\",\n        peg$literalExpectation(\"Referred-By\", false),\n        \"b\",\n        peg$literalExpectation(\"b\", false),\n        \"cid\",\n        peg$literalExpectation(\"cid\", false)\n    ];\n    const peg$bytecode = [\n        peg$decode(\"2 \\\"\\\"6 7!\"),\n        peg$decode(\"4\\\"\\\"\\\"5!7#\"),\n        peg$decode(\"4$\\\"\\\"5!7%\"),\n        peg$decode(\"4&\\\"\\\"5!7'\"),\n        peg$decode(\";'.# &;(\"),\n        peg$decode(\"4(\\\"\\\"5!7)\"),\n        peg$decode(\"4*\\\"\\\"5!7+\"),\n        peg$decode(\"2,\\\"\\\"6,7-\"),\n        peg$decode(\"2.\\\"\\\"6.7/\"),\n        peg$decode(\"40\\\"\\\"5!71\"),\n        peg$decode(\"22\\\"\\\"6273.\\x89 &24\\\"\\\"6475.} &26\\\"\\\"6677.q &28\\\"\\\"6879.e &2:\\\"\\\"6:7;.Y &2<\\\"\\\"6<7=.M &2>\\\"\\\"6>7?.A &2@\\\"\\\"6@7A.5 &2B\\\"\\\"6B7C.) &2D\\\"\\\"6D7E\"),\n        peg$decode(\";).# &;,\"),\n        peg$decode(\"2F\\\"\\\"6F7G.} &2H\\\"\\\"6H7I.q &2J\\\"\\\"6J7K.e &2L\\\"\\\"6L7M.Y &2N\\\"\\\"6N7O.M &2P\\\"\\\"6P7Q.A &2R\\\"\\\"6R7S.5 &2T\\\"\\\"6T7U.) &2V\\\"\\\"6V7W\"),\n        peg$decode(\"%%2X\\\"\\\"6X7Y/5#;#/,$;#/#$+#)(#'#(\\\"'#&'#/\\\"!&,)\"),\n        peg$decode(\"%%$;$0#*;$&/,#; /#$+\\\")(\\\"'#&'#.\\\" &\\\"/=#$;$/&#0#*;$&&&#/'$8\\\":Z\\\" )(\\\"'#&'#\"),\n        peg$decode(\";..\\\" &\\\"\"),\n        peg$decode(\"%$;'.# &;(0)*;'.# &;(&/?#28\\\"\\\"6879/0$;//'$8#:[# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%%$;2/&#0#*;2&&&#/g#$%$;.0#*;.&/,#;2/#$+\\\")(\\\"'#&'#0=*%$;.0#*;.&/,#;2/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#/\\\"!&,)\"),\n        peg$decode(\"4\\\\\\\"\\\"5!7].# &;3\"),\n        peg$decode(\"4^\\\"\\\"5!7_\"),\n        peg$decode(\"4`\\\"\\\"5!7a\"),\n        peg$decode(\";!.) &4b\\\"\\\"5!7c\"),\n        peg$decode(\"%$;).\\x95 &2F\\\"\\\"6F7G.\\x89 &2J\\\"\\\"6J7K.} &2L\\\"\\\"6L7M.q &2X\\\"\\\"6X7Y.e &2P\\\"\\\"6P7Q.Y &2H\\\"\\\"6H7I.M &2@\\\"\\\"6@7A.A &2d\\\"\\\"6d7e.5 &2R\\\"\\\"6R7S.) &2N\\\"\\\"6N7O/\\x9E#0\\x9B*;).\\x95 &2F\\\"\\\"6F7G.\\x89 &2J\\\"\\\"6J7K.} &2L\\\"\\\"6L7M.q &2X\\\"\\\"6X7Y.e &2P\\\"\\\"6P7Q.Y &2H\\\"\\\"6H7I.M &2@\\\"\\\"6@7A.A &2d\\\"\\\"6d7e.5 &2R\\\"\\\"6R7S.) &2N\\\"\\\"6N7O&&&#/\\\"!&,)\"),\n        peg$decode(\"%$;).\\x89 &2F\\\"\\\"6F7G.} &2L\\\"\\\"6L7M.q &2X\\\"\\\"6X7Y.e &2P\\\"\\\"6P7Q.Y &2H\\\"\\\"6H7I.M &2@\\\"\\\"6@7A.A &2d\\\"\\\"6d7e.5 &2R\\\"\\\"6R7S.) &2N\\\"\\\"6N7O/\\x92#0\\x8F*;).\\x89 &2F\\\"\\\"6F7G.} &2L\\\"\\\"6L7M.q &2X\\\"\\\"6X7Y.e &2P\\\"\\\"6P7Q.Y &2H\\\"\\\"6H7I.M &2@\\\"\\\"6@7A.A &2d\\\"\\\"6d7e.5 &2R\\\"\\\"6R7S.) &2N\\\"\\\"6N7O&&&#/\\\"!&,)\"),\n        peg$decode(\"2T\\\"\\\"6T7U.\\xE3 &2V\\\"\\\"6V7W.\\xD7 &2f\\\"\\\"6f7g.\\xCB &2h\\\"\\\"6h7i.\\xBF &2:\\\"\\\"6:7;.\\xB3 &2D\\\"\\\"6D7E.\\xA7 &22\\\"\\\"6273.\\x9B &28\\\"\\\"6879.\\x8F &2j\\\"\\\"6j7k.\\x83 &;&.} &24\\\"\\\"6475.q &2l\\\"\\\"6l7m.e &2n\\\"\\\"6n7o.Y &26\\\"\\\"6677.M &2>\\\"\\\"6>7?.A &2p\\\"\\\"6p7q.5 &2r\\\"\\\"6r7s.) &;'.# &;(\"),\n        peg$decode(\"%$;).\\u012B &2F\\\"\\\"6F7G.\\u011F &2J\\\"\\\"6J7K.\\u0113 &2L\\\"\\\"6L7M.\\u0107 &2X\\\"\\\"6X7Y.\\xFB &2P\\\"\\\"6P7Q.\\xEF &2H\\\"\\\"6H7I.\\xE3 &2@\\\"\\\"6@7A.\\xD7 &2d\\\"\\\"6d7e.\\xCB &2R\\\"\\\"6R7S.\\xBF &2N\\\"\\\"6N7O.\\xB3 &2T\\\"\\\"6T7U.\\xA7 &2V\\\"\\\"6V7W.\\x9B &2f\\\"\\\"6f7g.\\x8F &2h\\\"\\\"6h7i.\\x83 &28\\\"\\\"6879.w &2j\\\"\\\"6j7k.k &;&.e &24\\\"\\\"6475.Y &2l\\\"\\\"6l7m.M &2n\\\"\\\"6n7o.A &26\\\"\\\"6677.5 &2p\\\"\\\"6p7q.) &2r\\\"\\\"6r7s/\\u0134#0\\u0131*;).\\u012B &2F\\\"\\\"6F7G.\\u011F &2J\\\"\\\"6J7K.\\u0113 &2L\\\"\\\"6L7M.\\u0107 &2X\\\"\\\"6X7Y.\\xFB &2P\\\"\\\"6P7Q.\\xEF &2H\\\"\\\"6H7I.\\xE3 &2@\\\"\\\"6@7A.\\xD7 &2d\\\"\\\"6d7e.\\xCB &2R\\\"\\\"6R7S.\\xBF &2N\\\"\\\"6N7O.\\xB3 &2T\\\"\\\"6T7U.\\xA7 &2V\\\"\\\"6V7W.\\x9B &2f\\\"\\\"6f7g.\\x8F &2h\\\"\\\"6h7i.\\x83 &28\\\"\\\"6879.w &2j\\\"\\\"6j7k.k &;&.e &24\\\"\\\"6475.Y &2l\\\"\\\"6l7m.M &2n\\\"\\\"6n7o.A &26\\\"\\\"6677.5 &2p\\\"\\\"6p7q.) &2r\\\"\\\"6r7s&&&#/\\\"!&,)\"),\n        peg$decode(\"%;//?#2P\\\"\\\"6P7Q/0$;//'$8#:t# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;//?#24\\\"\\\"6475/0$;//'$8#:u# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;//?#2>\\\"\\\"6>7?/0$;//'$8#:v# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;//?#2T\\\"\\\"6T7U/0$;//'$8#:w# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;//?#2V\\\"\\\"6V7W/0$;//'$8#:x# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%2h\\\"\\\"6h7i/0#;//'$8\\\":y\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;//6#2f\\\"\\\"6f7g/'$8\\\":z\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;//?#2D\\\"\\\"6D7E/0$;//'$8#:{# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;//?#22\\\"\\\"6273/0$;//'$8#:|# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;//?#28\\\"\\\"6879/0$;//'$8#:}# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;//0#;&/'$8\\\":~\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;&/0#;//'$8\\\":~\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;=/T#$;G.) &;K.# &;F0/*;G.) &;K.# &;F&/,$;>/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"4\\x7F\\\"\\\"5!7\\x80.A &4\\x81\\\"\\\"5!7\\x82.5 &4\\x83\\\"\\\"5!7\\x84.) &;3.# &;.\"),\n        peg$decode(\"%%;//Q#;&/H$$;J.# &;K0)*;J.# &;K&/,$;&/#$+$)($'#(#'#(\\\"'#&'#/\\\"!&,)\"),\n        peg$decode(\"%;//]#;&/T$%$;J.# &;K0)*;J.# &;K&/\\\"!&,)/1$;&/($8$:\\x85$!!)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\";..G &2L\\\"\\\"6L7M.; &4\\x86\\\"\\\"5!7\\x87./ &4\\x83\\\"\\\"5!7\\x84.# &;3\"),\n        peg$decode(\"%2j\\\"\\\"6j7k/J#4\\x88\\\"\\\"5!7\\x89.5 &4\\x8A\\\"\\\"5!7\\x8B.) &4\\x8C\\\"\\\"5!7\\x8D/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;N/M#28\\\"\\\"6879/>$;O.\\\" &\\\"/0$;S/'$8$:\\x8E$ )($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;N/d#28\\\"\\\"6879/U$;O.\\\" &\\\"/G$;S/>$;_/5$;l.\\\" &\\\"/'$8&:\\x8F& )(&'#(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\x90\\\"\\\"5$7\\x91.) &3\\x92\\\"\\\"5#7\\x93/' 8!:\\x94!! )\"),\n        peg$decode(\"%;P/]#%28\\\"\\\"6879/,#;R/#$+\\\")(\\\"'#&'#.\\\" &\\\"/6$2:\\\"\\\"6:7;/'$8#:\\x95# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"$;+.) &;-.# &;Q/2#0/*;+.) &;-.# &;Q&&&#\"),\n        peg$decode(\"2<\\\"\\\"6<7=.q &2>\\\"\\\"6>7?.e &2@\\\"\\\"6@7A.Y &2B\\\"\\\"6B7C.M &2D\\\"\\\"6D7E.A &22\\\"\\\"6273.5 &26\\\"\\\"6677.) &24\\\"\\\"6475\"),\n        peg$decode(\"%$;+._ &;-.Y &2<\\\"\\\"6<7=.M &2>\\\"\\\"6>7?.A &2@\\\"\\\"6@7A.5 &2B\\\"\\\"6B7C.) &2D\\\"\\\"6D7E0e*;+._ &;-.Y &2<\\\"\\\"6<7=.M &2>\\\"\\\"6>7?.A &2@\\\"\\\"6@7A.5 &2B\\\"\\\"6B7C.) &2D\\\"\\\"6D7E&/& 8!:\\x96! )\"),\n        peg$decode(\"%;T/J#%28\\\"\\\"6879/,#;^/#$+\\\")(\\\"'#&'#.\\\" &\\\"/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;U.) &;\\\\.# &;X/& 8!:\\x97! )\"),\n        peg$decode(\"%$%;V/2#2J\\\"\\\"6J7K/#$+\\\")(\\\"'#&'#0<*%;V/2#2J\\\"\\\"6J7K/#$+\\\")(\\\"'#&'#&/D#;W/;$2J\\\"\\\"6J7K.\\\" &\\\"/'$8#:\\x98# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"$4\\x99\\\"\\\"5!7\\x9A/,#0)*4\\x99\\\"\\\"5!7\\x9A&&&#\"),\n        peg$decode(\"%4$\\\"\\\"5!7%/?#$4\\x9B\\\"\\\"5!7\\x9C0)*4\\x9B\\\"\\\"5!7\\x9C&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%2l\\\"\\\"6l7m/?#;Y/6$2n\\\"\\\"6n7o/'$8#:\\x9D# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%%;Z/\\xB3#28\\\"\\\"6879/\\xA4$;Z/\\x9B$28\\\"\\\"6879/\\x8C$;Z/\\x83$28\\\"\\\"6879/t$;Z/k$28\\\"\\\"6879/\\\\$;Z/S$28\\\"\\\"6879/D$;Z/;$28\\\"\\\"6879/,$;[/#$+-)(-'#(,'#(+'#(*'#()'#(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u0790 &%2\\x9E\\\"\\\"6\\x9E7\\x9F/\\xA4#;Z/\\x9B$28\\\"\\\"6879/\\x8C$;Z/\\x83$28\\\"\\\"6879/t$;Z/k$28\\\"\\\"6879/\\\\$;Z/S$28\\\"\\\"6879/D$;Z/;$28\\\"\\\"6879/,$;[/#$+,)(,'#(+'#(*'#()'#(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u06F9 &%2\\x9E\\\"\\\"6\\x9E7\\x9F/\\x8C#;Z/\\x83$28\\\"\\\"6879/t$;Z/k$28\\\"\\\"6879/\\\\$;Z/S$28\\\"\\\"6879/D$;Z/;$28\\\"\\\"6879/,$;[/#$+*)(*'#()'#(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u067A &%2\\x9E\\\"\\\"6\\x9E7\\x9F/t#;Z/k$28\\\"\\\"6879/\\\\$;Z/S$28\\\"\\\"6879/D$;Z/;$28\\\"\\\"6879/,$;[/#$+()(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u0613 &%2\\x9E\\\"\\\"6\\x9E7\\x9F/\\\\#;Z/S$28\\\"\\\"6879/D$;Z/;$28\\\"\\\"6879/,$;[/#$+&)(&'#(%'#($'#(#'#(\\\"'#&'#.\\u05C4 &%2\\x9E\\\"\\\"6\\x9E7\\x9F/D#;Z/;$28\\\"\\\"6879/,$;[/#$+$)($'#(#'#(\\\"'#&'#.\\u058D &%2\\x9E\\\"\\\"6\\x9E7\\x9F/,#;[/#$+\\\")(\\\"'#&'#.\\u056E &%2\\x9E\\\"\\\"6\\x9E7\\x9F/,#;Z/#$+\\\")(\\\"'#&'#.\\u054F &%;Z/\\x9B#2\\x9E\\\"\\\"6\\x9E7\\x9F/\\x8C$;Z/\\x83$28\\\"\\\"6879/t$;Z/k$28\\\"\\\"6879/\\\\$;Z/S$28\\\"\\\"6879/D$;Z/;$28\\\"\\\"6879/,$;[/#$++)(+'#(*'#()'#(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u04C7 &%;Z/\\xAA#%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\x83$2\\x9E\\\"\\\"6\\x9E7\\x9F/t$;Z/k$28\\\"\\\"6879/\\\\$;Z/S$28\\\"\\\"6879/D$;Z/;$28\\\"\\\"6879/,$;[/#$+*)(*'#()'#(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u0430 &%;Z/\\xB9#%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\x92$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/k$2\\x9E\\\"\\\"6\\x9E7\\x9F/\\\\$;Z/S$28\\\"\\\"6879/D$;Z/;$28\\\"\\\"6879/,$;[/#$+))()'#(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u038A &%;Z/\\xC8#%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\xA1$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/z$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/S$2\\x9E\\\"\\\"6\\x9E7\\x9F/D$;Z/;$28\\\"\\\"6879/,$;[/#$+()(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u02D5 &%;Z/\\xD7#%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\xB0$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\x89$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/b$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/;$2\\x9E\\\"\\\"6\\x9E7\\x9F/,$;[/#$+')(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u0211 &%;Z/\\xFE#%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\xD7$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\xB0$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\x89$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/b$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/;$2\\x9E\\\"\\\"6\\x9E7\\x9F/,$;Z/#$+()(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#.\\u0126 &%;Z/\\u011C#%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\xF5$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\xCE$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\xA7$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/\\x80$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/Y$%28\\\"\\\"6879/,#;Z/#$+\\\")(\\\"'#&'#.\\\" &\\\"/2$2\\x9E\\\"\\\"6\\x9E7\\x9F/#$+()(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#/& 8!:\\xA0! )\"),\n        peg$decode(\"%;#/M#;#.\\\" &\\\"/?$;#.\\\" &\\\"/1$;#.\\\" &\\\"/#$+$)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;Z/;#28\\\"\\\"6879/,$;Z/#$+#)(#'#(\\\"'#&'#.# &;\\\\\"),\n        peg$decode(\"%;]/o#2J\\\"\\\"6J7K/`$;]/W$2J\\\"\\\"6J7K/H$;]/?$2J\\\"\\\"6J7K/0$;]/'$8':\\xA1' )(''#(&'#(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%2\\xA2\\\"\\\"6\\xA27\\xA3/2#4\\xA4\\\"\\\"5!7\\xA5/#$+\\\")(\\\"'#&'#.\\x98 &%2\\xA6\\\"\\\"6\\xA67\\xA7/;#4\\xA8\\\"\\\"5!7\\xA9/,$;!/#$+#)(#'#(\\\"'#&'#.j &%2\\xAA\\\"\\\"6\\xAA7\\xAB/5#;!/,$;!/#$+#)(#'#(\\\"'#&'#.B &%4\\xAC\\\"\\\"5!7\\xAD/,#;!/#$+\\\")(\\\"'#&'#.# &;!\"),\n        peg$decode(\"%%;!.\\\" &\\\"/[#;!.\\\" &\\\"/M$;!.\\\" &\\\"/?$;!.\\\" &\\\"/1$;!.\\\" &\\\"/#$+%)(%'#($'#(#'#(\\\"'#&'#/' 8!:\\xAE!! )\"),\n        peg$decode(\"$%22\\\"\\\"6273/,#;`/#$+\\\")(\\\"'#&'#0<*%22\\\"\\\"6273/,#;`/#$+\\\")(\\\"'#&'#&\"),\n        peg$decode(\";a.A &;b.; &;c.5 &;d./ &;e.) &;f.# &;g\"),\n        peg$decode(\"%3\\xAF\\\"\\\"5*7\\xB0/a#3\\xB1\\\"\\\"5#7\\xB2.G &3\\xB3\\\"\\\"5#7\\xB4.; &3\\xB5\\\"\\\"5$7\\xB6./ &3\\xB7\\\"\\\"5#7\\xB8.# &;6/($8\\\":\\xB9\\\"! )(\\\"'#&'#\"),\n        peg$decode(\"%3\\xBA\\\"\\\"5%7\\xBB/I#3\\xBC\\\"\\\"5%7\\xBD./ &3\\xBE\\\"\\\"5\\\"7\\xBF.# &;6/($8\\\":\\xC0\\\"! )(\\\"'#&'#\"),\n        peg$decode(\"%3\\xC1\\\"\\\"5'7\\xC2/1#;\\x90/($8\\\":\\xC3\\\"! )(\\\"'#&'#\"),\n        peg$decode(\"%3\\xC4\\\"\\\"5$7\\xC5/1#;\\xF0/($8\\\":\\xC6\\\"! )(\\\"'#&'#\"),\n        peg$decode(\"%3\\xC7\\\"\\\"5&7\\xC8/1#;T/($8\\\":\\xC9\\\"! )(\\\"'#&'#\"),\n        peg$decode(\"%3\\xCA\\\"\\\"5\\\"7\\xCB/N#%2>\\\"\\\"6>7?/,#;6/#$+\\\")(\\\"'#&'#.\\\" &\\\"/'$8\\\":\\xCC\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;h/P#%2>\\\"\\\"6>7?/,#;i/#$+\\\")(\\\"'#&'#.\\\" &\\\"/)$8\\\":\\xCD\\\"\\\"! )(\\\"'#&'#\"),\n        peg$decode(\"%$;j/&#0#*;j&&&#/\\\"!&,)\"),\n        peg$decode(\"%$;j/&#0#*;j&&&#/\\\"!&,)\"),\n        peg$decode(\";k.) &;+.# &;-\"),\n        peg$decode(\"2l\\\"\\\"6l7m.e &2n\\\"\\\"6n7o.Y &24\\\"\\\"6475.M &28\\\"\\\"6879.A &2<\\\"\\\"6<7=.5 &2@\\\"\\\"6@7A.) &2B\\\"\\\"6B7C\"),\n        peg$decode(\"%26\\\"\\\"6677/n#;m/e$$%2<\\\"\\\"6<7=/,#;m/#$+\\\")(\\\"'#&'#0<*%2<\\\"\\\"6<7=/,#;m/#$+\\\")(\\\"'#&'#&/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;n/A#2>\\\"\\\"6>7?/2$;o/)$8#:\\xCE#\\\"\\\" )(#'#(\\\"'#&'#\"),\n        peg$decode(\"$;p.) &;+.# &;-/2#0/*;p.) &;+.# &;-&&&#\"),\n        peg$decode(\"$;p.) &;+.# &;-0/*;p.) &;+.# &;-&\"),\n        peg$decode(\"2l\\\"\\\"6l7m.e &2n\\\"\\\"6n7o.Y &24\\\"\\\"6475.M &26\\\"\\\"6677.A &28\\\"\\\"6879.5 &2@\\\"\\\"6@7A.) &2B\\\"\\\"6B7C\"),\n        peg$decode(\";\\x91.# &;r\"),\n        peg$decode(\"%;\\x90/G#;'/>$;s/5$;'/,$;\\x84/#$+%)(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\";M.# &;t\"),\n        peg$decode(\"%;\\x7F/E#28\\\"\\\"6879/6$;u.# &;x/'$8#:\\xCF# )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;v.# &;w/J#%26\\\"\\\"6677/,#;\\x83/#$+\\\")(\\\"'#&'#.\\\" &\\\"/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%2\\xD0\\\"\\\"6\\xD07\\xD1/:#;\\x80/1$;w.\\\" &\\\"/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%24\\\"\\\"6475/,#;{/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;z/3#$;y0#*;y&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\";*.) &;+.# &;-\"),\n        peg$decode(\";+.\\x8F &;-.\\x89 &22\\\"\\\"6273.} &26\\\"\\\"6677.q &28\\\"\\\"6879.e &2:\\\"\\\"6:7;.Y &2<\\\"\\\"6<7=.M &2>\\\"\\\"6>7?.A &2@\\\"\\\"6@7A.5 &2B\\\"\\\"6B7C.) &2D\\\"\\\"6D7E\"),\n        peg$decode(\"%;|/e#$%24\\\"\\\"6475/,#;|/#$+\\\")(\\\"'#&'#0<*%24\\\"\\\"6475/,#;|/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%$;~0#*;~&/e#$%22\\\"\\\"6273/,#;}/#$+\\\")(\\\"'#&'#0<*%22\\\"\\\"6273/,#;}/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"$;~0#*;~&\"),\n        peg$decode(\";+.w &;-.q &28\\\"\\\"6879.e &2:\\\"\\\"6:7;.Y &2<\\\"\\\"6<7=.M &2>\\\"\\\"6>7?.A &2@\\\"\\\"6@7A.5 &2B\\\"\\\"6B7C.) &2D\\\"\\\"6D7E\"),\n        peg$decode(\"%%;\\\"/\\x87#$;\\\".G &;!.A &2@\\\"\\\"6@7A.5 &2F\\\"\\\"6F7G.) &2J\\\"\\\"6J7K0M*;\\\".G &;!.A &2@\\\"\\\"6@7A.5 &2F\\\"\\\"6F7G.) &2J\\\"\\\"6J7K&/#$+\\\")(\\\"'#&'#/& 8!:\\xD2! )\"),\n        peg$decode(\";\\x81.# &;\\x82\"),\n        peg$decode(\"%%;O/2#2:\\\"\\\"6:7;/#$+\\\")(\\\"'#&'#.\\\" &\\\"/,#;S/#$+\\\")(\\\"'#&'#.\\\" &\\\"\"),\n        peg$decode(\"$;+.\\x83 &;-.} &2B\\\"\\\"6B7C.q &2D\\\"\\\"6D7E.e &22\\\"\\\"6273.Y &28\\\"\\\"6879.M &2:\\\"\\\"6:7;.A &2<\\\"\\\"6<7=.5 &2>\\\"\\\"6>7?.) &2@\\\"\\\"6@7A/\\x8C#0\\x89*;+.\\x83 &;-.} &2B\\\"\\\"6B7C.q &2D\\\"\\\"6D7E.e &22\\\"\\\"6273.Y &28\\\"\\\"6879.M &2:\\\"\\\"6:7;.A &2<\\\"\\\"6<7=.5 &2>\\\"\\\"6>7?.) &2@\\\"\\\"6@7A&&&#\"),\n        peg$decode(\"$;y0#*;y&\"),\n        peg$decode(\"%3\\x92\\\"\\\"5#7\\xD3/q#24\\\"\\\"6475/b$$;!/&#0#*;!&&&#/L$2J\\\"\\\"6J7K/=$$;!/&#0#*;!&&&#/'$8%:\\xD4% )(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"2\\xD5\\\"\\\"6\\xD57\\xD6\"),\n        peg$decode(\"2\\xD7\\\"\\\"6\\xD77\\xD8\"),\n        peg$decode(\"2\\xD9\\\"\\\"6\\xD97\\xDA\"),\n        peg$decode(\"2\\xDB\\\"\\\"6\\xDB7\\xDC\"),\n        peg$decode(\"2\\xDD\\\"\\\"6\\xDD7\\xDE\"),\n        peg$decode(\"2\\xDF\\\"\\\"6\\xDF7\\xE0\"),\n        peg$decode(\"2\\xE1\\\"\\\"6\\xE17\\xE2\"),\n        peg$decode(\"2\\xE3\\\"\\\"6\\xE37\\xE4\"),\n        peg$decode(\"2\\xE5\\\"\\\"6\\xE57\\xE6\"),\n        peg$decode(\"2\\xE7\\\"\\\"6\\xE77\\xE8\"),\n        peg$decode(\"2\\xE9\\\"\\\"6\\xE97\\xEA\"),\n        peg$decode(\"%;\\x85.Y &;\\x86.S &;\\x88.M &;\\x89.G &;\\x8A.A &;\\x8B.; &;\\x8C.5 &;\\x8F./ &;\\x8D.) &;\\x8E.# &;6/& 8!:\\xEB! )\"),\n        peg$decode(\"%;\\x84/G#;'/>$;\\x92/5$;'/,$;\\x94/#$+%)(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;\\x93/' 8!:\\xEC!! )\"),\n        peg$decode(\"%;!/5#;!/,$;!/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%$;*.A &;+.; &;-.5 &;3./ &;4.) &;'.# &;(0G*;*.A &;+.; &;-.5 &;3./ &;4.) &;'.# &;(&/& 8!:\\xED! )\"),\n        peg$decode(\"%;\\xB6/Y#$%;A/,#;\\xB6/#$+\\\")(\\\"'#&'#06*%;A/,#;\\xB6/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;9/N#%2:\\\"\\\"6:7;/,#;9/#$+\\\")(\\\"'#&'#.\\\" &\\\"/'$8\\\":\\xEE\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;:.c &%;\\x98/Y#$%;A/,#;\\x98/#$+\\\")(\\\"'#&'#06*%;A/,#;\\x98/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#/& 8!:\\xEF! )\"),\n        peg$decode(\"%;L.# &;\\x99/]#$%;B/,#;\\x9B/#$+\\\")(\\\"'#&'#06*%;B/,#;\\x9B/#$+\\\")(\\\"'#&'#&/'$8\\\":\\xF0\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;\\x9A.\\\" &\\\"/>#;@/5$;M/,$;?/#$+$)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%%;6/Y#$%;./,#;6/#$+\\\")(\\\"'#&'#06*%;./,#;6/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#.# &;H/' 8!:\\xF1!! )\"),\n        peg$decode(\";\\x9C.) &;\\x9D.# &;\\xA0\"),\n        peg$decode(\"%3\\xF2\\\"\\\"5!7\\xF3/:#;</1$;\\x9F/($8#:\\xF4#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\xF5\\\"\\\"5'7\\xF6/:#;</1$;\\x9E/($8#:\\xF7#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%$;!/&#0#*;!&&&#/' 8!:\\xF8!! )\"),\n        peg$decode(\"%2\\xF9\\\"\\\"6\\xF97\\xFA/o#%2J\\\"\\\"6J7K/M#;!.\\\" &\\\"/?$;!.\\\" &\\\"/1$;!.\\\" &\\\"/#$+$)($'#(#'#(\\\"'#&'#.\\\" &\\\"/'$8\\\":\\xFB\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;6/J#%;</,#;\\xA1/#$+\\\")(\\\"'#&'#.\\\" &\\\"/)$8\\\":\\xFC\\\"\\\"! )(\\\"'#&'#\"),\n        peg$decode(\";6.) &;T.# &;H\"),\n        peg$decode(\"%;\\xA3/Y#$%;B/,#;\\xA4/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xA4/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%3\\xFD\\\"\\\"5&7\\xFE.G &3\\xFF\\\"\\\"5'7\\u0100.; &3\\u0101\\\"\\\"5$7\\u0102./ &3\\u0103\\\"\\\"5%7\\u0104.# &;6/& 8!:\\u0105! )\"),\n        peg$decode(\";\\xA5.# &;\\xA0\"),\n        peg$decode(\"%3\\u0106\\\"\\\"5(7\\u0107/M#;</D$3\\u0108\\\"\\\"5(7\\u0109./ &3\\u010A\\\"\\\"5(7\\u010B.# &;6/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;6/Y#$%;A/,#;6/#$+\\\")(\\\"'#&'#06*%;A/,#;6/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%$;!/&#0#*;!&&&#/' 8!:\\u010C!! )\"),\n        peg$decode(\"%;\\xA9/& 8!:\\u010D! )\"),\n        peg$decode(\"%;\\xAA/k#;;/b$;\\xAF/Y$$%;B/,#;\\xB0/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xB0/#$+\\\")(\\\"'#&'#&/#$+$)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\";\\xAB.# &;\\xAC\"),\n        peg$decode(\"3\\u010E\\\"\\\"5$7\\u010F.S &3\\u0110\\\"\\\"5%7\\u0111.G &3\\u0112\\\"\\\"5%7\\u0113.; &3\\u0114\\\"\\\"5%7\\u0115./ &3\\u0116\\\"\\\"5+7\\u0117.# &;\\xAD\"),\n        peg$decode(\"3\\u0118\\\"\\\"5'7\\u0119./ &3\\u011A\\\"\\\"5)7\\u011B.# &;\\xAD\"),\n        peg$decode(\";6.# &;\\xAE\"),\n        peg$decode(\"%3\\u011C\\\"\\\"5\\\"7\\u011D/,#;6/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\";\\xAD.# &;6\"),\n        peg$decode(\"%;6/5#;</,$;\\xB1/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\";6.# &;H\"),\n        peg$decode(\"%;\\xB3/5#;./,$;\\x90/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%$;!/&#0#*;!&&&#/' 8!:\\u011E!! )\"),\n        peg$decode(\"%;\\x9E/' 8!:\\u011F!! )\"),\n        peg$decode(\"%;\\xB6/^#$%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#&/($8\\\":\\u0120\\\"!!)(\\\"'#&'#\"),\n        peg$decode(\"%%;7/e#$%2J\\\"\\\"6J7K/,#;7/#$+\\\")(\\\"'#&'#0<*%2J\\\"\\\"6J7K/,#;7/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#/\\\"!&,)\"),\n        peg$decode(\"%;L.# &;\\x99/]#$%;B/,#;\\xB8/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xB8/#$+\\\")(\\\"'#&'#&/'$8\\\":\\u0121\\\" )(\\\"'#&'#\"),\n        peg$decode(\";\\xB9.# &;\\xA0\"),\n        peg$decode(\"%3\\u0122\\\"\\\"5#7\\u0123/:#;</1$;6/($8#:\\u0124#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%$;!/&#0#*;!&&&#/' 8!:\\u0125!! )\"),\n        peg$decode(\"%;\\x9E/' 8!:\\u0126!! )\"),\n        peg$decode(\"%$;\\x9A0#*;\\x9A&/x#;@/o$;M/f$;?/]$$%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#&/'$8%:\\u0127% )(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\";\\xBE\"),\n        peg$decode(\"%3\\u0128\\\"\\\"5&7\\u0129/k#;./b$;\\xC1/Y$$%;A/,#;\\xC1/#$+\\\")(\\\"'#&'#06*%;A/,#;\\xC1/#$+\\\")(\\\"'#&'#&/#$+$)($'#(#'#(\\\"'#&'#.# &;\\xBF\"),\n        peg$decode(\"%;6/k#;./b$;\\xC0/Y$$%;A/,#;\\xC0/#$+\\\")(\\\"'#&'#06*%;A/,#;\\xC0/#$+\\\")(\\\"'#&'#&/#$+$)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;6/;#;</2$;6.# &;H/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\";\\xC2.G &;\\xC4.A &;\\xC6.; &;\\xC8.5 &;\\xC9./ &;\\xCA.) &;\\xCB.# &;\\xC0\"),\n        peg$decode(\"%3\\u012A\\\"\\\"5%7\\u012B/5#;</,$;\\xC3/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;I/' 8!:\\u012C!! )\"),\n        peg$decode(\"%3\\u012D\\\"\\\"5&7\\u012E/\\x97#;</\\x8E$;D/\\x85$;\\xC5/|$$%$;'/&#0#*;'&&&#/,#;\\xC5/#$+\\\")(\\\"'#&'#0C*%$;'/&#0#*;'&&&#/,#;\\xC5/#$+\\\")(\\\"'#&'#&/,$;E/#$+&)(&'#(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\";t.# &;w\"),\n        peg$decode(\"%3\\u012F\\\"\\\"5%7\\u0130/5#;</,$;\\xC7/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;I/' 8!:\\u0131!! )\"),\n        peg$decode(\"%3\\u0132\\\"\\\"5&7\\u0133/:#;</1$;I/($8#:\\u0134#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u0135\\\"\\\"5%7\\u0136/]#;</T$%3\\u0137\\\"\\\"5$7\\u0138/& 8!:\\u0139! ).4 &%3\\u013A\\\"\\\"5%7\\u013B/& 8!:\\u013C! )/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u013D\\\"\\\"5)7\\u013E/R#;</I$3\\u013F\\\"\\\"5#7\\u0140./ &3\\u0141\\\"\\\"5(7\\u0142.# &;6/($8#:\\u0143#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u0144\\\"\\\"5#7\\u0145/\\x93#;</\\x8A$;D/\\x81$%;\\xCC/e#$%2D\\\"\\\"6D7E/,#;\\xCC/#$+\\\")(\\\"'#&'#0<*%2D\\\"\\\"6D7E/,#;\\xCC/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#/,$;E/#$+%)(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u0146\\\"\\\"5(7\\u0147./ &3\\u0148\\\"\\\"5$7\\u0149.# &;6/' 8!:\\u014A!! )\"),\n        peg$decode(\"%;6/Y#$%;A/,#;6/#$+\\\")(\\\"'#&'#06*%;A/,#;6/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;\\xCF/G#;./>$;\\xCF/5$;./,$;\\x90/#$+%)(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%$;!/&#0#*;!&&&#/' 8!:\\u014B!! )\"),\n        peg$decode(\"%;\\xD1/]#$%;A/,#;\\xD1/#$+\\\")(\\\"'#&'#06*%;A/,#;\\xD1/#$+\\\")(\\\"'#&'#&/'$8\\\":\\u014C\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;\\x99/]#$%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#&/'$8\\\":\\u014D\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;L.O &;\\x99.I &%;@.\\\" &\\\"/:#;t/1$;?.\\\" &\\\"/#$+#)(#'#(\\\"'#&'#/]#$%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#&/'$8\\\":\\u014E\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;\\xD4/]#$%;B/,#;\\xD5/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xD5/#$+\\\")(\\\"'#&'#&/'$8\\\":\\u014F\\\" )(\\\"'#&'#\"),\n        peg$decode(\"%;\\x96/& 8!:\\u0150! )\"),\n        peg$decode(\"%3\\u0151\\\"\\\"5(7\\u0152/:#;</1$;6/($8#:\\u0153#! )(#'#(\\\"'#&'#.g &%3\\u0154\\\"\\\"5&7\\u0155/:#;</1$;6/($8#:\\u0156#! )(#'#(\\\"'#&'#.: &%3\\u0157\\\"\\\"5*7\\u0158/& 8!:\\u0159! ).# &;\\xA0\"),\n        peg$decode(\"%%;6/k#$%;A/2#;6/)$8\\\":\\u015A\\\"\\\"$ )(\\\"'#&'#0<*%;A/2#;6/)$8\\\":\\u015A\\\"\\\"$ )(\\\"'#&'#&/)$8\\\":\\u015B\\\"\\\"! )(\\\"'#&'#.\\\" &\\\"/' 8!:\\u015C!! )\"),\n        peg$decode(\"%;\\xD8/Y#$%;A/,#;\\xD8/#$+\\\")(\\\"'#&'#06*%;A/,#;\\xD8/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;\\x99/Y#$%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%$;!/&#0#*;!&&&#/' 8!:\\u015D!! )\"),\n        peg$decode(\"%;\\xDB/Y#$%;B/,#;\\xDC/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xDC/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%3\\u015E\\\"\\\"5&7\\u015F.; &3\\u0160\\\"\\\"5'7\\u0161./ &3\\u0162\\\"\\\"5*7\\u0163.# &;6/& 8!:\\u0164! )\"),\n        peg$decode(\"%3\\u0165\\\"\\\"5&7\\u0166/:#;</1$;\\xDD/($8#:\\u0167#! )(#'#(\\\"'#&'#.} &%3\\xF5\\\"\\\"5'7\\xF6/:#;</1$;\\x9E/($8#:\\u0168#! )(#'#(\\\"'#&'#.P &%3\\u0169\\\"\\\"5+7\\u016A/:#;</1$;\\x9E/($8#:\\u016B#! )(#'#(\\\"'#&'#.# &;\\xA0\"),\n        peg$decode(\"3\\u016C\\\"\\\"5+7\\u016D.k &3\\u016E\\\"\\\"5)7\\u016F._ &3\\u0170\\\"\\\"5(7\\u0171.S &3\\u0172\\\"\\\"5'7\\u0173.G &3\\u0174\\\"\\\"5&7\\u0175.; &3\\u0176\\\"\\\"5*7\\u0177./ &3\\u0178\\\"\\\"5)7\\u0179.# &;6\"),\n        peg$decode(\";1.\\\" &\\\"\"),\n        peg$decode(\"%%;6/k#$%;A/2#;6/)$8\\\":\\u015A\\\"\\\"$ )(\\\"'#&'#0<*%;A/2#;6/)$8\\\":\\u015A\\\"\\\"$ )(\\\"'#&'#&/)$8\\\":\\u015B\\\"\\\"! )(\\\"'#&'#.\\\" &\\\"/' 8!:\\u017A!! )\"),\n        peg$decode(\"%;L.# &;\\x99/]#$%;B/,#;\\xE1/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xE1/#$+\\\")(\\\"'#&'#&/'$8\\\":\\u017B\\\" )(\\\"'#&'#\"),\n        peg$decode(\";\\xB9.# &;\\xA0\"),\n        peg$decode(\"%;\\xE3/Y#$%;A/,#;\\xE3/#$+\\\")(\\\"'#&'#06*%;A/,#;\\xE3/#$+\\\")(\\\"'#&'#&/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;\\xEA/k#;./b$;\\xED/Y$$%;B/,#;\\xE4/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xE4/#$+\\\")(\\\"'#&'#&/#$+$)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\";\\xE5.; &;\\xE6.5 &;\\xE7./ &;\\xE8.) &;\\xE9.# &;\\xA0\"),\n        peg$decode(\"%3\\u017C\\\"\\\"5#7\\u017D/:#;</1$;\\xF0/($8#:\\u017E#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u017F\\\"\\\"5%7\\u0180/:#;</1$;T/($8#:\\u0181#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u0182\\\"\\\"5(7\\u0183/F#;</=$;\\\\.) &;Y.# &;X/($8#:\\u0184#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u0185\\\"\\\"5&7\\u0186/:#;</1$;6/($8#:\\u0187#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u0188\\\"\\\"5%7\\u0189/A#;</8$$;!0#*;!&/($8#:\\u018A#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;\\xEB/G#;;/>$;6/5$;;/,$;\\xEC/#$+%)(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\x92\\\"\\\"5#7\\xD3.# &;6/' 8!:\\u018B!! )\"),\n        peg$decode(\"%3\\xB1\\\"\\\"5#7\\u018C.G &3\\xB3\\\"\\\"5#7\\u018D.; &3\\xB7\\\"\\\"5#7\\u018E./ &3\\xB5\\\"\\\"5$7\\u018F.# &;6/' 8!:\\u0190!! )\"),\n        peg$decode(\"%;\\xEE/D#%;C/,#;\\xEF/#$+\\\")(\\\"'#&'#.\\\" &\\\"/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;U.) &;\\\\.# &;X/& 8!:\\u0191! )\"),\n        peg$decode(\"%%;!.\\\" &\\\"/[#;!.\\\" &\\\"/M$;!.\\\" &\\\"/?$;!.\\\" &\\\"/1$;!.\\\" &\\\"/#$+%)(%'#($'#(#'#(\\\"'#&'#/' 8!:\\u0192!! )\"),\n        peg$decode(\"%%;!/?#;!.\\\" &\\\"/1$;!.\\\" &\\\"/#$+#)(#'#(\\\"'#&'#/' 8!:\\u0193!! )\"),\n        peg$decode(\";\\xBE\"),\n        peg$decode(\"%;\\x9E/^#$%;B/,#;\\xF3/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xF3/#$+\\\")(\\\"'#&'#&/($8\\\":\\u0194\\\"!!)(\\\"'#&'#\"),\n        peg$decode(\";\\xF4.# &;\\xA0\"),\n        peg$decode(\"%2\\u0195\\\"\\\"6\\u01957\\u0196/L#;</C$2\\u0197\\\"\\\"6\\u01977\\u0198.) &2\\u0199\\\"\\\"6\\u01997\\u019A/($8#:\\u019B#! )(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;\\x9E/^#$%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#06*%;B/,#;\\xA0/#$+\\\")(\\\"'#&'#&/($8\\\":\\u019C\\\"!!)(\\\"'#&'#\"),\n        peg$decode(\"%;6/5#;0/,$;\\xF7/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"$;2.) &;4.# &;.0/*;2.) &;4.# &;.&\"),\n        peg$decode(\"$;%0#*;%&\"),\n        peg$decode(\"%;\\xFA/;#28\\\"\\\"6879/,$;\\xFB/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u019D\\\"\\\"5%7\\u019E.) &3\\u019F\\\"\\\"5$7\\u01A0/' 8!:\\u01A1!! )\"),\n        peg$decode(\"%;\\xFC/J#%28\\\"\\\"6879/,#;^/#$+\\\")(\\\"'#&'#.\\\" &\\\"/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;\\\\.) &;X.# &;\\x82/' 8!:\\u01A2!! )\"),\n        peg$decode(\";\\\".S &;!.M &2F\\\"\\\"6F7G.A &2J\\\"\\\"6J7K.5 &2H\\\"\\\"6H7I.) &2N\\\"\\\"6N7O\"),\n        peg$decode(\"2L\\\"\\\"6L7M.\\x95 &2B\\\"\\\"6B7C.\\x89 &2<\\\"\\\"6<7=.} &2R\\\"\\\"6R7S.q &2T\\\"\\\"6T7U.e &2V\\\"\\\"6V7W.Y &2P\\\"\\\"6P7Q.M &2@\\\"\\\"6@7A.A &2D\\\"\\\"6D7E.5 &22\\\"\\\"6273.) &2>\\\"\\\"6>7?\"),\n        peg$decode(\"%;\\u0100/b#28\\\"\\\"6879/S$;\\xFB/J$%2\\u01A3\\\"\\\"6\\u01A37\\u01A4/,#;\\xEC/#$+\\\")(\\\"'#&'#.\\\" &\\\"/#$+$)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%3\\u01A5\\\"\\\"5%7\\u01A6.) &3\\u01A7\\\"\\\"5$7\\u01A8/' 8!:\\u01A1!! )\"),\n        peg$decode(\"%3\\xB1\\\"\\\"5#7\\xB2.6 &3\\xB3\\\"\\\"5#7\\xB4.* &$;+0#*;+&/' 8!:\\u01A9!! )\"),\n        peg$decode(\"%;\\u0104/\\x87#2F\\\"\\\"6F7G/x$;\\u0103/o$2F\\\"\\\"6F7G/`$;\\u0103/W$2F\\\"\\\"6F7G/H$;\\u0103/?$2F\\\"\\\"6F7G/0$;\\u0105/'$8):\\u01AA) )()'#(('#(''#(&'#(%'#($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;#/>#;#/5$;#/,$;#/#$+$)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;\\u0103/,#;\\u0103/#$+\\\")(\\\"'#&'#\"),\n        peg$decode(\"%;\\u0103/5#;\\u0103/,$;\\u0103/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;q/T#$;m0#*;m&/D$%; /,#;\\xF8/#$+\\\")(\\\"'#&'#.\\\" &\\\"/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%2\\u01AB\\\"\\\"6\\u01AB7\\u01AC.) &2\\u01AD\\\"\\\"6\\u01AD7\\u01AE/w#;0/n$;\\u0108/e$$%;B/2#;\\u0109.# &;\\xA0/#$+\\\")(\\\"'#&'#0<*%;B/2#;\\u0109.# &;\\xA0/#$+\\\")(\\\"'#&'#&/#$+$)($'#(#'#(\\\"'#&'#\"),\n        peg$decode(\";\\x99.# &;L\"),\n        peg$decode(\"%2\\u01AF\\\"\\\"6\\u01AF7\\u01B0/5#;</,$;\\u010A/#$+#)(#'#(\\\"'#&'#\"),\n        peg$decode(\"%;D/S#;,/J$2:\\\"\\\"6:7;/;$;,.# &;T/,$;E/#$+%)(%'#($'#(#'#(\\\"'#&'#\")\n    ];\n    let peg$currPos = 0;\n    let peg$savedPos = 0;\n    const peg$posDetailsCache = [{ line: 1, column: 1 }];\n    let peg$maxFailPos = 0;\n    let peg$maxFailExpected = [];\n    let peg$silentFails = 0;\n    let peg$result;\n    if (options.startRule !== undefined) {\n        if (!(options.startRule in peg$startRuleIndices)) {\n            throw new Error(\"Can't start parsing from rule \\\"\" + options.startRule + \"\\\".\");\n        }\n        peg$startRuleIndex = peg$startRuleIndices[options.startRule];\n    }\n    function text() {\n        return input.substring(peg$savedPos, peg$currPos);\n    }\n    function location() {\n        return peg$computeLocation(peg$savedPos, peg$currPos);\n    }\n    function expected(description, location1) {\n        location1 = location1 !== undefined\n            ? location1\n            : peg$computeLocation(peg$savedPos, peg$currPos);\n        throw peg$buildStructuredError([peg$otherExpectation(description)], input.substring(peg$savedPos, peg$currPos), location1);\n    }\n    function error(message, location1) {\n        location1 = location1 !== undefined\n            ? location1\n            : peg$computeLocation(peg$savedPos, peg$currPos);\n        throw peg$buildSimpleError(message, location1);\n    }\n    function peg$literalExpectation(text1, ignoreCase) {\n        return { type: \"literal\", text: text1, ignoreCase: ignoreCase };\n    }\n    function peg$classExpectation(parts, inverted, ignoreCase) {\n        return { type: \"class\", parts: parts, inverted: inverted, ignoreCase: ignoreCase };\n    }\n    function peg$anyExpectation() {\n        return { type: \"any\" };\n    }\n    function peg$endExpectation() {\n        return { type: \"end\" };\n    }\n    function peg$otherExpectation(description) {\n        return { type: \"other\", description: description };\n    }\n    function peg$computePosDetails(pos) {\n        let details = peg$posDetailsCache[pos];\n        let p;\n        if (details) {\n            return details;\n        }\n        else {\n            p = pos - 1;\n            while (!peg$posDetailsCache[p]) {\n                p--;\n            }\n            details = peg$posDetailsCache[p];\n            details = {\n                line: details.line,\n                column: details.column\n            };\n            while (p < pos) {\n                if (input.charCodeAt(p) === 10) {\n                    details.line++;\n                    details.column = 1;\n                }\n                else {\n                    details.column++;\n                }\n                p++;\n            }\n            peg$posDetailsCache[pos] = details;\n            return details;\n        }\n    }\n    function peg$computeLocation(startPos, endPos) {\n        const startPosDetails = peg$computePosDetails(startPos);\n        const endPosDetails = peg$computePosDetails(endPos);\n        return {\n            source: peg$source,\n            start: {\n                offset: startPos,\n                line: startPosDetails.line,\n                column: startPosDetails.column\n            },\n            end: {\n                offset: endPos,\n                line: endPosDetails.line,\n                column: endPosDetails.column\n            }\n        };\n    }\n    function peg$fail(expected1) {\n        if (peg$currPos < peg$maxFailPos) {\n            return;\n        }\n        if (peg$currPos > peg$maxFailPos) {\n            peg$maxFailPos = peg$currPos;\n            peg$maxFailExpected = [];\n        }\n        peg$maxFailExpected.push(expected1);\n    }\n    function peg$buildSimpleError(message, location1) {\n        return new SyntaxError(message, [], \"\", location1);\n    }\n    function peg$buildStructuredError(expected1, found, location1) {\n        return new SyntaxError(SyntaxError.buildMessage(expected1, found), expected1, found, location1);\n    }\n    function peg$decode(s) {\n        return s.split(\"\").map((ch) => ch.charCodeAt(0) - 32);\n    }\n    function peg$parseRule(index) {\n        const bc = peg$bytecode[index];\n        let ip = 0;\n        const ips = [];\n        let end = bc.length;\n        const ends = [];\n        const stack = [];\n        let params;\n        while (true) {\n            while (ip < end) {\n                switch (bc[ip]) {\n                    case 0:\n                        stack.push(peg$consts[bc[ip + 1]]);\n                        ip += 2;\n                        break;\n                    case 1:\n                        stack.push(undefined);\n                        ip++;\n                        break;\n                    case 2:\n                        stack.push(null);\n                        ip++;\n                        break;\n                    case 3:\n                        stack.push(peg$FAILED);\n                        ip++;\n                        break;\n                    case 4:\n                        stack.push([]);\n                        ip++;\n                        break;\n                    case 5:\n                        stack.push(peg$currPos);\n                        ip++;\n                        break;\n                    case 6:\n                        stack.pop();\n                        ip++;\n                        break;\n                    case 7:\n                        peg$currPos = stack.pop();\n                        ip++;\n                        break;\n                    case 8:\n                        stack.length -= bc[ip + 1];\n                        ip += 2;\n                        break;\n                    case 9:\n                        stack.splice(-2, 1);\n                        ip++;\n                        break;\n                    case 10:\n                        stack[stack.length - 2].push(stack.pop());\n                        ip++;\n                        break;\n                    case 11:\n                        stack.push(stack.splice(stack.length - bc[ip + 1], bc[ip + 1]));\n                        ip += 2;\n                        break;\n                    case 12:\n                        stack.push(input.substring(stack.pop(), peg$currPos));\n                        ip++;\n                        break;\n                    case 13:\n                        ends.push(end);\n                        ips.push(ip + 3 + bc[ip + 1] + bc[ip + 2]);\n                        if (stack[stack.length - 1]) {\n                            end = ip + 3 + bc[ip + 1];\n                            ip += 3;\n                        }\n                        else {\n                            end = ip + 3 + bc[ip + 1] + bc[ip + 2];\n                            ip += 3 + bc[ip + 1];\n                        }\n                        break;\n                    case 14:\n                        ends.push(end);\n                        ips.push(ip + 3 + bc[ip + 1] + bc[ip + 2]);\n                        if (stack[stack.length - 1] === peg$FAILED) {\n                            end = ip + 3 + bc[ip + 1];\n                            ip += 3;\n                        }\n                        else {\n                            end = ip + 3 + bc[ip + 1] + bc[ip + 2];\n                            ip += 3 + bc[ip + 1];\n                        }\n                        break;\n                    case 15:\n                        ends.push(end);\n                        ips.push(ip + 3 + bc[ip + 1] + bc[ip + 2]);\n                        if (stack[stack.length - 1] !== peg$FAILED) {\n                            end = ip + 3 + bc[ip + 1];\n                            ip += 3;\n                        }\n                        else {\n                            end = ip + 3 + bc[ip + 1] + bc[ip + 2];\n                            ip += 3 + bc[ip + 1];\n                        }\n                        break;\n                    case 16:\n                        if (stack[stack.length - 1] !== peg$FAILED) {\n                            ends.push(end);\n                            ips.push(ip);\n                            end = ip + 2 + bc[ip + 1];\n                            ip += 2;\n                        }\n                        else {\n                            ip += 2 + bc[ip + 1];\n                        }\n                        break;\n                    case 17:\n                        ends.push(end);\n                        ips.push(ip + 3 + bc[ip + 1] + bc[ip + 2]);\n                        if (input.length > peg$currPos) {\n                            end = ip + 3 + bc[ip + 1];\n                            ip += 3;\n                        }\n                        else {\n                            end = ip + 3 + bc[ip + 1] + bc[ip + 2];\n                            ip += 3 + bc[ip + 1];\n                        }\n                        break;\n                    case 18:\n                        ends.push(end);\n                        ips.push(ip + 4 + bc[ip + 2] + bc[ip + 3]);\n                        if (input.substr(peg$currPos, peg$consts[bc[ip + 1]].length) === peg$consts[bc[ip + 1]]) {\n                            end = ip + 4 + bc[ip + 2];\n                            ip += 4;\n                        }\n                        else {\n                            end = ip + 4 + bc[ip + 2] + bc[ip + 3];\n                            ip += 4 + bc[ip + 2];\n                        }\n                        break;\n                    case 19:\n                        ends.push(end);\n                        ips.push(ip + 4 + bc[ip + 2] + bc[ip + 3]);\n                        if (input.substr(peg$currPos, peg$consts[bc[ip + 1]].length).toLowerCase() === peg$consts[bc[ip + 1]]) {\n                            end = ip + 4 + bc[ip + 2];\n                            ip += 4;\n                        }\n                        else {\n                            end = ip + 4 + bc[ip + 2] + bc[ip + 3];\n                            ip += 4 + bc[ip + 2];\n                        }\n                        break;\n                    case 20:\n                        ends.push(end);\n                        ips.push(ip + 4 + bc[ip + 2] + bc[ip + 3]);\n                        if (peg$consts[bc[ip + 1]].test(input.charAt(peg$currPos))) {\n                            end = ip + 4 + bc[ip + 2];\n                            ip += 4;\n                        }\n                        else {\n                            end = ip + 4 + bc[ip + 2] + bc[ip + 3];\n                            ip += 4 + bc[ip + 2];\n                        }\n                        break;\n                    case 21:\n                        stack.push(input.substr(peg$currPos, bc[ip + 1]));\n                        peg$currPos += bc[ip + 1];\n                        ip += 2;\n                        break;\n                    case 22:\n                        stack.push(peg$consts[bc[ip + 1]]);\n                        peg$currPos += peg$consts[bc[ip + 1]].length;\n                        ip += 2;\n                        break;\n                    case 23:\n                        stack.push(peg$FAILED);\n                        if (peg$silentFails === 0) {\n                            peg$fail(peg$consts[bc[ip + 1]]);\n                        }\n                        ip += 2;\n                        break;\n                    case 24:\n                        peg$savedPos = stack[stack.length - 1 - bc[ip + 1]];\n                        ip += 2;\n                        break;\n                    case 25:\n                        peg$savedPos = peg$currPos;\n                        ip++;\n                        break;\n                    case 26:\n                        params = bc.slice(ip + 4, ip + 4 + bc[ip + 3])\n                            .map(function (p) { return stack[stack.length - 1 - p]; });\n                        stack.splice(stack.length - bc[ip + 2], bc[ip + 2], peg$consts[bc[ip + 1]].apply(null, params));\n                        ip += 4 + bc[ip + 3];\n                        break;\n                    case 27:\n                        stack.push(peg$parseRule(bc[ip + 1]));\n                        ip += 2;\n                        break;\n                    case 28:\n                        peg$silentFails++;\n                        ip++;\n                        break;\n                    case 29:\n                        peg$silentFails--;\n                        ip++;\n                        break;\n                    default:\n                        throw new Error(\"Invalid opcode: \" + bc[ip] + \".\");\n                }\n            }\n            if (ends.length > 0) {\n                end = ends.pop();\n                ip = ips.pop();\n            }\n            else {\n                break;\n            }\n        }\n        return stack[0];\n    }\n    options.data = {}; // Object to which header attributes will be assigned during parsing\n    function list(head, tail) {\n        return [head].concat(tail);\n    }\n    peg$result = peg$parseRule(peg$startRuleIndex);\n    if (peg$result !== peg$FAILED && peg$currPos === input.length) {\n        return peg$result;\n    }\n    else {\n        if (peg$result !== peg$FAILED && peg$currPos < input.length) {\n            peg$fail(peg$endExpectation());\n        }\n        throw peg$buildStructuredError(peg$maxFailExpected, peg$maxFailPos < input.length ? input.charAt(peg$maxFailPos) : null, peg$maxFailPos < input.length\n            ? peg$computeLocation(peg$maxFailPos, peg$maxFailPos + 1)\n            : peg$computeLocation(peg$maxFailPos, peg$maxFailPos));\n    }\n}\nconst parse = peg$parse;\n\n\n/***/ }),\n/* 24 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"URI\": () => (/* binding */ URI),\n/* harmony export */   \"equivalentURI\": () => (/* binding */ equivalentURI)\n/* harmony export */ });\n/* harmony import */ var _parameters_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25);\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\n/**\n * URI.\n * @public\n */\nclass URI extends _parameters_js__WEBPACK_IMPORTED_MODULE_0__.Parameters {\n    /**\n     * Constructor\n     * @param scheme -\n     * @param user -\n     * @param host -\n     * @param port -\n     * @param parameters -\n     * @param headers -\n     */\n    constructor(scheme = \"sip\", user, host, port, parameters, headers) {\n        super(parameters || {});\n        this.headers = {};\n        // Checks\n        if (!host) {\n            throw new TypeError('missing or invalid \"host\" parameter');\n        }\n        for (const header in headers) {\n            // eslint-disable-next-line no-prototype-builtins\n            if (headers.hasOwnProperty(header)) {\n                this.setHeader(header, headers[header]);\n            }\n        }\n        // Raw URI\n        this.raw = {\n            scheme,\n            user,\n            host,\n            port\n        };\n        // Normalized URI\n        this.normal = {\n            scheme: scheme.toLowerCase(),\n            user,\n            host: host.toLowerCase(),\n            port\n        };\n    }\n    get scheme() { return this.normal.scheme; }\n    set scheme(value) {\n        this.raw.scheme = value;\n        this.normal.scheme = value.toLowerCase();\n    }\n    get user() { return this.normal.user; }\n    set user(value) {\n        this.normal.user = this.raw.user = value;\n    }\n    get host() { return this.normal.host; }\n    set host(value) {\n        this.raw.host = value;\n        this.normal.host = value.toLowerCase();\n    }\n    get aor() { return this.normal.user + \"@\" + this.normal.host; }\n    get port() { return this.normal.port; }\n    set port(value) {\n        this.normal.port = this.raw.port = value === 0 ? value : value;\n    }\n    setHeader(name, value) {\n        this.headers[this.headerize(name)] = (value instanceof Array) ? value : [value];\n    }\n    getHeader(name) {\n        if (name) {\n            return this.headers[this.headerize(name)];\n        }\n    }\n    hasHeader(name) {\n        // eslint-disable-next-line no-prototype-builtins\n        return !!name && !!this.headers.hasOwnProperty(this.headerize(name));\n    }\n    deleteHeader(header) {\n        header = this.headerize(header);\n        // eslint-disable-next-line no-prototype-builtins\n        if (this.headers.hasOwnProperty(header)) {\n            const value = this.headers[header];\n            delete this.headers[header];\n            return value;\n        }\n    }\n    clearHeaders() {\n        this.headers = {};\n    }\n    clone() {\n        return new URI(this._raw.scheme, this._raw.user || \"\", this._raw.host, this._raw.port, JSON.parse(JSON.stringify(this.parameters)), JSON.parse(JSON.stringify(this.headers)));\n    }\n    toRaw() {\n        return this._toString(this._raw);\n    }\n    toString() {\n        return this._toString(this._normal);\n    }\n    get _normal() { return this.normal; }\n    get _raw() { return this.raw; }\n    _toString(uri) {\n        let uriString = uri.scheme + \":\";\n        // add slashes if it's not a sip(s) URI\n        if (!uri.scheme.toLowerCase().match(\"^sips?$\")) {\n            uriString += \"//\";\n        }\n        if (uri.user) {\n            uriString += this.escapeUser(uri.user) + \"@\";\n        }\n        uriString += uri.host;\n        if (uri.port || uri.port === 0) {\n            uriString += \":\" + uri.port;\n        }\n        for (const parameter in this.parameters) {\n            // eslint-disable-next-line no-prototype-builtins\n            if (this.parameters.hasOwnProperty(parameter)) {\n                uriString += \";\" + parameter;\n                if (this.parameters[parameter] !== null) {\n                    uriString += \"=\" + this.parameters[parameter];\n                }\n            }\n        }\n        const headers = [];\n        for (const header in this.headers) {\n            // eslint-disable-next-line no-prototype-builtins\n            if (this.headers.hasOwnProperty(header)) {\n                // eslint-disable-next-line @typescript-eslint/no-for-in-array\n                for (const idx in this.headers[header]) {\n                    // eslint-disable-next-line no-prototype-builtins\n                    if (this.headers[header].hasOwnProperty(idx)) {\n                        headers.push(header + \"=\" + this.headers[header][idx]);\n                    }\n                }\n            }\n        }\n        if (headers.length > 0) {\n            uriString += \"?\" + headers.join(\"&\");\n        }\n        return uriString;\n    }\n    /*\n     * Hex-escape a SIP URI user.\n     * @private\n     * @param {String} user\n     */\n    escapeUser(user) {\n        let decodedUser;\n        // FIXME: This is called by toString above which should never throw, but\n        // decodeURIComponent can throw and I've seen one case in production where\n        // it did throw resulting in a cascading failure. This class should be\n        // fixed so that decodeURIComponent is not called at this point (in toString).\n        // The user should be decoded when the URI is constructor or some other\n        // place where we can catch the error before the URI is created or somesuch.\n        // eslint-disable-next-line no-useless-catch\n        try {\n            decodedUser = decodeURIComponent(user);\n        }\n        catch (error) {\n            throw error;\n        }\n        // Don't hex-escape ':' (%3A), '+' (%2B), '?' (%3F\"), '/' (%2F).\n        return encodeURIComponent(decodedUser)\n            .replace(/%3A/ig, \":\")\n            .replace(/%2B/ig, \"+\")\n            .replace(/%3F/ig, \"?\")\n            .replace(/%2F/ig, \"/\");\n    }\n    headerize(str) {\n        const exceptions = {\n            \"Call-Id\": \"Call-ID\",\n            \"Cseq\": \"CSeq\",\n            \"Min-Se\": \"Min-SE\",\n            \"Rack\": \"RAck\",\n            \"Rseq\": \"RSeq\",\n            \"Www-Authenticate\": \"WWW-Authenticate\",\n        };\n        const name = str.toLowerCase().replace(/_/g, \"-\").split(\"-\");\n        const parts = name.length;\n        let hname = \"\";\n        for (let part = 0; part < parts; part++) {\n            if (part !== 0) {\n                hname += \"-\";\n            }\n            hname += name[part].charAt(0).toUpperCase() + name[part].substring(1);\n        }\n        if (exceptions[hname]) {\n            hname = exceptions[hname];\n        }\n        return hname;\n    }\n}\n/**\n * Returns true if URIs are equivalent per RFC 3261 Section 19.1.4.\n * @param a - URI to compare\n * @param b - URI to compare\n *\n * @remarks\n * 19.1.4 URI Comparison\n * Some operations in this specification require determining whether two\n * SIP or SIPS URIs are equivalent.\n *\n * https://tools.ietf.org/html/rfc3261#section-19.1.4\n * @internal\n */\nfunction equivalentURI(a, b) {\n    // o  A SIP and SIPS URI are never equivalent.\n    if (a.scheme !== b.scheme) {\n        return false;\n    }\n    // o  Comparison of the userinfo of SIP and SIPS URIs is case-\n    //    sensitive.  This includes userinfo containing passwords or\n    //    formatted as telephone-subscribers.  Comparison of all other\n    //    components of the URI is case-insensitive unless explicitly\n    //    defined otherwise.\n    //\n    // o  The ordering of parameters and header fields is not significant\n    //    in comparing SIP and SIPS URIs.\n    //\n    // o  Characters other than those in the \"reserved\" set (see RFC 2396\n    //    [5]) are equivalent to their \"\"%\" HEX HEX\" encoding.\n    //\n    // o  An IP address that is the result of a DNS lookup of a host name\n    //    does not match that host name.\n    //\n    // o  For two URIs to be equal, the user, password, host, and port\n    //    components must match.\n    //\n    // A URI omitting the user component will not match a URI that\n    // includes one.  A URI omitting the password component will not\n    // match a URI that includes one.\n    //\n    // A URI omitting any component with a default value will not\n    // match a URI explicitly containing that component with its\n    // default value.  For instance, a URI omitting the optional port\n    // component will not match a URI explicitly declaring port 5060.\n    // The same is true for the transport-parameter, ttl-parameter,\n    // user-parameter, and method components.\n    //\n    // Defining sip:user@host to not be equivalent to\n    // sip:user@host:5060 is a change from RFC 2543.  When deriving\n    // addresses from URIs, equivalent addresses are expected from\n    // equivalent URIs.  The URI sip:user@host:5060 will always\n    // resolve to port 5060.  The URI sip:user@host may resolve to\n    // other ports through the DNS SRV mechanisms detailed in [4].\n    // FIXME: TODO:\n    // - character compared to hex encoding is not handled\n    // - password does not exist on URI currently\n    if (a.user !== b.user || a.host !== b.host || a.port !== b.port) {\n        return false;\n    }\n    // o  URI uri-parameter components are compared as follows:\n    function compareParameters(a, b) {\n        //  -  Any uri-parameter appearing in both URIs must match.\n        const parameterKeysA = Object.keys(a.parameters);\n        const parameterKeysB = Object.keys(b.parameters);\n        const intersection = parameterKeysA.filter(x => parameterKeysB.includes(x));\n        if (!intersection.every(key => a.parameters[key] === b.parameters[key])) {\n            return false;\n        }\n        //  -  A user, ttl, or method uri-parameter appearing in only one\n        //     URI never matches, even if it contains the default value.\n        if (![\"user\", \"ttl\", \"method\", \"transport\"].every(key => a.hasParam(key) && b.hasParam(key) || !a.hasParam(key) && !b.hasParam(key))) {\n            return false;\n        }\n        //  -  A URI that includes an maddr parameter will not match a URI\n        //     that contains no maddr parameter.\n        if (![\"maddr\"].every(key => a.hasParam(key) && b.hasParam(key) || !a.hasParam(key) && !b.hasParam(key))) {\n            return false;\n        }\n        //  -  All other uri-parameters appearing in only one URI are\n        //     ignored when comparing the URIs.\n        return true;\n    }\n    if (!compareParameters(a, b)) {\n        return false;\n    }\n    // o  URI header components are never ignored.  Any present header\n    //    component MUST be present in both URIs and match for the URIs\n    //    to match.  The matching rules are defined for each header field\n    //    in Section 20.\n    const headerKeysA = Object.keys(a.headers);\n    const headerKeysB = Object.keys(b.headers);\n    // No need to check if no headers\n    if (headerKeysA.length !== 0 || headerKeysB.length !== 0) {\n        // Must have same number of headers\n        if (headerKeysA.length !== headerKeysB.length) {\n            return false;\n        }\n        // Must have same headers\n        const intersection = headerKeysA.filter(x => headerKeysB.includes(x));\n        if (intersection.length !== headerKeysB.length) {\n            return false;\n        }\n        // FIXME: Not to spec. But perhaps not worth fixing?\n        // Must have same header values\n        // It seems too much to consider multiple headers with same name.\n        // It seems too much to compare two header params according to the rule of each header.\n        // We'll assume a single header and compare them string to string...\n        if (!intersection.every(key => a.headers[key].length && b.headers[key].length && a.headers[key][0] === b.headers[key][0])) {\n            return false;\n        }\n    }\n    return true;\n}\n\n\n/***/ }),\n/* 25 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Parameters\": () => (/* binding */ Parameters)\n/* harmony export */ });\n/**\n * @internal\n */\nclass Parameters {\n    constructor(parameters) {\n        this.parameters = {};\n        // for in is required here as the Grammar parser is adding to the prototype chain\n        for (const param in parameters) {\n            // eslint-disable-next-line no-prototype-builtins\n            if (parameters.hasOwnProperty(param)) {\n                this.setParam(param, parameters[param]);\n            }\n        }\n    }\n    setParam(key, value) {\n        if (key) {\n            this.parameters[key.toLowerCase()] = (typeof value === \"undefined\" || value === null) ? null : value.toString();\n        }\n    }\n    getParam(key) {\n        if (key) {\n            return this.parameters[key.toLowerCase()];\n        }\n    }\n    hasParam(key) {\n        return !!(key && this.parameters[key.toLowerCase()] !== undefined);\n    }\n    deleteParam(key) {\n        key = key.toLowerCase();\n        if (this.hasParam(key)) {\n            const value = this.parameters[key];\n            delete this.parameters[key];\n            return value;\n        }\n    }\n    clearParams() {\n        this.parameters = {};\n    }\n}\n\n\n/***/ }),\n/* 26 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"NameAddrHeader\": () => (/* binding */ NameAddrHeader)\n/* harmony export */ });\n/* harmony import */ var _parameters_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25);\n\n/**\n * Name Address SIP header.\n * @public\n */\nclass NameAddrHeader extends _parameters_js__WEBPACK_IMPORTED_MODULE_0__.Parameters {\n    /**\n     * Constructor\n     * @param uri -\n     * @param displayName -\n     * @param parameters -\n     */\n    constructor(uri, displayName, parameters) {\n        super(parameters);\n        this.uri = uri;\n        this._displayName = displayName;\n    }\n    get friendlyName() {\n        return this.displayName || this.uri.aor;\n    }\n    get displayName() { return this._displayName; }\n    set displayName(value) {\n        this._displayName = value;\n    }\n    clone() {\n        return new NameAddrHeader(this.uri.clone(), this._displayName, JSON.parse(JSON.stringify(this.parameters)));\n    }\n    toString() {\n        let body = (this.displayName || this.displayName === \"0\") ? '\"' + this.displayName + '\" ' : \"\";\n        body += \"<\" + this.uri.toString() + \">\";\n        for (const parameter in this.parameters) {\n            // eslint-disable-next-line no-prototype-builtins\n            if (this.parameters.hasOwnProperty(parameter)) {\n                body += \";\" + parameter;\n                if (this.parameters[parameter] !== null) {\n                    body += \"=\" + this.parameters[parameter];\n                }\n            }\n        }\n        return body;\n    }\n}\n\n\n/***/ }),\n/* 27 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"IncomingResponseMessage\": () => (/* binding */ IncomingResponseMessage)\n/* harmony export */ });\n/* harmony import */ var _incoming_message_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(20);\n\n/**\n * Incoming response message.\n * @public\n */\nclass IncomingResponseMessage extends _incoming_message_js__WEBPACK_IMPORTED_MODULE_0__.IncomingMessage {\n    constructor() {\n        super();\n    }\n}\n\n\n/***/ }),\n/* 28 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"OutgoingRequestMessage\": () => (/* binding */ OutgoingRequestMessage)\n/* harmony export */ });\n/* harmony import */ var _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(26);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(21);\n\n\n/**\n * Outgoing SIP request message.\n * @public\n */\nclass OutgoingRequestMessage {\n    constructor(method, ruri, fromURI, toURI, options, extraHeaders, body) {\n        this.headers = {};\n        this.extraHeaders = [];\n        // Initialize default options\n        this.options = OutgoingRequestMessage.getDefaultOptions();\n        // Options - merge a deep copy\n        if (options) {\n            this.options = Object.assign(Object.assign({}, this.options), options);\n            if (this.options.optionTags && this.options.optionTags.length) {\n                this.options.optionTags = this.options.optionTags.slice();\n            }\n            if (this.options.routeSet && this.options.routeSet.length) {\n                this.options.routeSet = this.options.routeSet.slice();\n            }\n        }\n        // Extra headers - deep copy\n        if (extraHeaders && extraHeaders.length) {\n            this.extraHeaders = extraHeaders.slice();\n        }\n        // Body - deep copy\n        if (body) {\n            // TODO: internal representation should be Body\n            // this.body = { ...body };\n            this.body = {\n                body: body.content,\n                contentType: body.contentType\n            };\n        }\n        // Method\n        this.method = method;\n        // RURI\n        this.ruri = ruri.clone();\n        // From\n        this.fromURI = fromURI.clone();\n        this.fromTag = this.options.fromTag ? this.options.fromTag : (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.newTag)();\n        this.from = OutgoingRequestMessage.makeNameAddrHeader(this.fromURI, this.options.fromDisplayName, this.fromTag);\n        // To\n        this.toURI = toURI.clone();\n        this.toTag = this.options.toTag;\n        this.to = OutgoingRequestMessage.makeNameAddrHeader(this.toURI, this.options.toDisplayName, this.toTag);\n        // Call-ID\n        this.callId = this.options.callId ? this.options.callId : this.options.callIdPrefix + (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.createRandomToken)(15);\n        // CSeq\n        this.cseq = this.options.cseq;\n        // The relative order of header fields with different field names is not\n        // significant.  However, it is RECOMMENDED that header fields which are\n        // needed for proxy processing (Via, Route, Record-Route, Proxy-Require,\n        // Max-Forwards, and Proxy-Authorization, for example) appear towards\n        // the top of the message to facilitate rapid parsing.\n        // https://tools.ietf.org/html/rfc3261#section-7.3.1\n        this.setHeader(\"route\", this.options.routeSet);\n        this.setHeader(\"via\", \"\");\n        this.setHeader(\"to\", this.to.toString());\n        this.setHeader(\"from\", this.from.toString());\n        this.setHeader(\"cseq\", this.cseq + \" \" + this.method);\n        this.setHeader(\"call-id\", this.callId);\n        this.setHeader(\"max-forwards\", \"70\");\n    }\n    /** Get a copy of the default options. */\n    static getDefaultOptions() {\n        return {\n            callId: \"\",\n            callIdPrefix: \"\",\n            cseq: 1,\n            toDisplayName: \"\",\n            toTag: \"\",\n            fromDisplayName: \"\",\n            fromTag: \"\",\n            forceRport: false,\n            hackViaTcp: false,\n            optionTags: [\"outbound\"],\n            routeSet: [],\n            userAgentString: \"sip.js\",\n            viaHost: \"\"\n        };\n    }\n    static makeNameAddrHeader(uri, displayName, tag) {\n        const parameters = {};\n        if (tag) {\n            parameters.tag = tag;\n        }\n        return new _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader(uri, displayName, parameters);\n    }\n    /**\n     * Get the value of the given header name at the given position.\n     * @param name - header name\n     * @returns Returns the specified header, undefined if header doesn't exist.\n     */\n    getHeader(name) {\n        const header = this.headers[(0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name)];\n        if (header) {\n            if (header[0]) {\n                return header[0];\n            }\n        }\n        else {\n            const regexp = new RegExp(\"^\\\\s*\" + name + \"\\\\s*:\", \"i\");\n            for (const exHeader of this.extraHeaders) {\n                if (regexp.test(exHeader)) {\n                    return exHeader.substring(exHeader.indexOf(\":\") + 1).trim();\n                }\n            }\n        }\n        return;\n    }\n    /**\n     * Get the header/s of the given name.\n     * @param name - header name\n     * @returns Array with all the headers of the specified name.\n     */\n    getHeaders(name) {\n        const result = [];\n        const headerArray = this.headers[(0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name)];\n        if (headerArray) {\n            for (const headerPart of headerArray) {\n                result.push(headerPart);\n            }\n        }\n        else {\n            const regexp = new RegExp(\"^\\\\s*\" + name + \"\\\\s*:\", \"i\");\n            for (const exHeader of this.extraHeaders) {\n                if (regexp.test(exHeader)) {\n                    result.push(exHeader.substring(exHeader.indexOf(\":\") + 1).trim());\n                }\n            }\n        }\n        return result;\n    }\n    /**\n     * Verify the existence of the given header.\n     * @param name - header name\n     * @returns true if header with given name exists, false otherwise\n     */\n    hasHeader(name) {\n        if (this.headers[(0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name)]) {\n            return true;\n        }\n        else {\n            const regexp = new RegExp(\"^\\\\s*\" + name + \"\\\\s*:\", \"i\");\n            for (const extraHeader of this.extraHeaders) {\n                if (regexp.test(extraHeader)) {\n                    return true;\n                }\n            }\n        }\n        return false;\n    }\n    /**\n     * Replace the the given header by the given value.\n     * @param name - header name\n     * @param value - header value\n     */\n    setHeader(name, value) {\n        this.headers[(0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.headerize)(name)] = value instanceof Array ? value : [value];\n    }\n    /**\n     * The Via header field indicates the transport used for the transaction\n     * and identifies the location where the response is to be sent.  A Via\n     * header field value is added only after the transport that will be\n     * used to reach the next hop has been selected (which may involve the\n     * usage of the procedures in [4]).\n     *\n     * When the UAC creates a request, it MUST insert a Via into that\n     * request.  The protocol name and protocol version in the header field\n     * MUST be SIP and 2.0, respectively.  The Via header field value MUST\n     * contain a branch parameter.  This parameter is used to identify the\n     * transaction created by that request.  This parameter is used by both\n     * the client and the server.\n     * https://tools.ietf.org/html/rfc3261#section-8.1.1.7\n     * @param branchParameter - The branch parameter.\n     * @param transport - The sent protocol transport.\n     */\n    setViaHeader(branch, transport) {\n        // FIXME: Hack\n        if (this.options.hackViaTcp) {\n            transport = \"TCP\";\n        }\n        let via = \"SIP/2.0/\" + transport;\n        via += \" \" + this.options.viaHost + \";branch=\" + branch;\n        if (this.options.forceRport) {\n            via += \";rport\";\n        }\n        this.setHeader(\"via\", via);\n        this.branch = branch;\n    }\n    toString() {\n        let msg = \"\";\n        msg += this.method + \" \" + this.ruri.toRaw() + \" SIP/2.0\\r\\n\";\n        for (const header in this.headers) {\n            if (this.headers[header]) {\n                for (const headerPart of this.headers[header]) {\n                    msg += header + \": \" + headerPart + \"\\r\\n\";\n                }\n            }\n        }\n        for (const header of this.extraHeaders) {\n            msg += header.trim() + \"\\r\\n\";\n        }\n        msg += \"Supported: \" + this.options.optionTags.join(\", \") + \"\\r\\n\";\n        msg += \"User-Agent: \" + this.options.userAgentString + \"\\r\\n\";\n        if (this.body) {\n            if (typeof this.body === \"string\") {\n                msg += \"Content-Length: \" + (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.utf8Length)(this.body) + \"\\r\\n\\r\\n\";\n                msg += this.body;\n            }\n            else {\n                if (this.body.body && this.body.contentType) {\n                    msg += \"Content-Type: \" + this.body.contentType + \"\\r\\n\";\n                    msg += \"Content-Length: \" + (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.utf8Length)(this.body.body) + \"\\r\\n\\r\\n\";\n                    msg += this.body.body;\n                }\n                else {\n                    msg += \"Content-Length: \" + 0 + \"\\r\\n\\r\\n\";\n                }\n            }\n        }\n        else {\n            msg += \"Content-Length: \" + 0 + \"\\r\\n\\r\\n\";\n        }\n        return msg;\n    }\n}\n\n\n/***/ }),\n/* 29 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"AllowedMethods\": () => (/* binding */ AllowedMethods)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(30);\n\n/**\n * FIXME: TODO: Should be configurable/variable.\n */\nconst AllowedMethods = [\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.ACK,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.BYE,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.CANCEL,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.INFO,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.INVITE,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.MESSAGE,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.NOTIFY,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.OPTIONS,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.PRACK,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.REFER,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.REGISTER,\n    _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.SUBSCRIBE\n];\n\n\n/***/ }),\n/* 30 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"C\": () => (/* binding */ C)\n/* harmony export */ });\n/* eslint-disable @typescript-eslint/no-namespace */\n/**\n * SIP Methods\n * @internal\n */\nvar C;\n(function (C) {\n    C.ACK = \"ACK\";\n    C.BYE = \"BYE\";\n    C.CANCEL = \"CANCEL\";\n    C.INFO = \"INFO\";\n    C.INVITE = \"INVITE\";\n    C.MESSAGE = \"MESSAGE\";\n    C.NOTIFY = \"NOTIFY\";\n    C.OPTIONS = \"OPTIONS\";\n    C.REGISTER = \"REGISTER\";\n    C.UPDATE = \"UPDATE\";\n    C.SUBSCRIBE = \"SUBSCRIBE\";\n    C.PUBLISH = \"PUBLISH\";\n    C.REFER = \"REFER\";\n    C.PRACK = \"PRACK\";\n})(C = C || (C = {}));\n\n\n/***/ }),\n/* 31 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionState\": () => (/* binding */ SessionState),\n/* harmony export */   \"SignalingState\": () => (/* binding */ SignalingState)\n/* harmony export */ });\n/**\n * Session state.\n * @remarks\n * https://tools.ietf.org/html/rfc3261#section-13\n * @public\n */\nvar SessionState;\n(function (SessionState) {\n    SessionState[\"Initial\"] = \"Initial\";\n    SessionState[\"Early\"] = \"Early\";\n    SessionState[\"AckWait\"] = \"AckWait\";\n    SessionState[\"Confirmed\"] = \"Confirmed\";\n    SessionState[\"Terminated\"] = \"Terminated\";\n})(SessionState = SessionState || (SessionState = {}));\n/**\n * Offer/Answer state.\n * @remarks\n * ```txt\n *         Offer                Answer             RFC    Ini Est Early\n *  -------------------------------------------------------------------\n *  1. INVITE Req.          2xx INVITE Resp.     RFC 3261  Y   Y    N\n *  2. 2xx INVITE Resp.     ACK Req.             RFC 3261  Y   Y    N\n *  3. INVITE Req.          1xx-rel INVITE Resp. RFC 3262  Y   Y    N\n *  4. 1xx-rel INVITE Resp. PRACK Req.           RFC 3262  Y   Y    N\n *  5. PRACK Req.           200 PRACK Resp.      RFC 3262  N   Y    Y\n *  6. UPDATE Req.          2xx UPDATE Resp.     RFC 3311  N   Y    Y\n *\n *       Table 1: Summary of SIP Usage of the Offer/Answer Model\n * ```\n * https://tools.ietf.org/html/rfc6337#section-2.2\n * @public\n */\nvar SignalingState;\n(function (SignalingState) {\n    SignalingState[\"Initial\"] = \"Initial\";\n    SignalingState[\"HaveLocalOffer\"] = \"HaveLocalOffer\";\n    SignalingState[\"HaveRemoteOffer\"] = \"HaveRemoteOffer\";\n    SignalingState[\"Stable\"] = \"Stable\";\n    SignalingState[\"Closed\"] = \"Closed\";\n})(SignalingState = SignalingState || (SignalingState = {}));\n\n\n/***/ }),\n/* 32 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Message\": () => (/* binding */ Message)\n/* harmony export */ });\n/**\n * A received message (incoming MESSAGE).\n * @public\n */\nclass Message {\n    /** @internal */\n    constructor(incomingMessageRequest) {\n        this.incomingMessageRequest = incomingMessageRequest;\n    }\n    /** Incoming MESSAGE request message. */\n    get request() {\n        return this.incomingMessageRequest.message;\n    }\n    /** Accept the request. */\n    accept(options) {\n        this.incomingMessageRequest.accept(options);\n        return Promise.resolve();\n    }\n    /** Reject the request. */\n    reject(options) {\n        this.incomingMessageRequest.reject(options);\n        return Promise.resolve();\n    }\n}\n\n\n/***/ }),\n/* 33 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Notification\": () => (/* binding */ Notification)\n/* harmony export */ });\n/**\n * A notification of an event (incoming NOTIFY).\n * @public\n */\nclass Notification {\n    /** @internal */\n    constructor(incomingNotifyRequest) {\n        this.incomingNotifyRequest = incomingNotifyRequest;\n    }\n    /** Incoming NOTIFY request message. */\n    get request() {\n        return this.incomingNotifyRequest.message;\n    }\n    /** Accept the request. */\n    accept(options) {\n        this.incomingNotifyRequest.accept(options);\n        return Promise.resolve();\n    }\n    /** Reject the request. */\n    reject(options) {\n        this.incomingNotifyRequest.reject(options);\n        return Promise.resolve();\n    }\n}\n\n\n/***/ }),\n/* 34 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Referral\": () => (/* binding */ Referral)\n/* harmony export */ });\n/* harmony import */ var _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(26);\n\n/**\n * A request to establish a {@link Session} elsewhere (incoming REFER).\n * @public\n */\nclass Referral {\n    /** @internal */\n    constructor(incomingReferRequest, session) {\n        this.incomingReferRequest = incomingReferRequest;\n        this.session = session;\n    }\n    get referTo() {\n        const referTo = this.incomingReferRequest.message.parseHeader(\"refer-to\");\n        if (!(referTo instanceof _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_0__.NameAddrHeader)) {\n            throw new Error(\"Failed to parse Refer-To header.\");\n        }\n        return referTo;\n    }\n    get referredBy() {\n        return this.incomingReferRequest.message.getHeader(\"referred-by\");\n    }\n    get replaces() {\n        const value = this.referTo.uri.getHeader(\"replaces\");\n        if (value instanceof Array) {\n            return value[0];\n        }\n        return value;\n    }\n    /** Incoming REFER request message. */\n    get request() {\n        return this.incomingReferRequest.message;\n    }\n    /** Accept the request. */\n    accept(options = { statusCode: 202 }) {\n        this.incomingReferRequest.accept(options);\n        return Promise.resolve();\n    }\n    /** Reject the request. */\n    reject(options) {\n        this.incomingReferRequest.reject(options);\n        return Promise.resolve();\n    }\n    /**\n     * Creates an inviter which may be used to send an out of dialog INVITE request.\n     *\n     * @remarks\n     * This a helper method to create an Inviter which will execute the referral\n     * of the `Session` which was referred. The appropriate headers are set and\n     * the referred `Session` is linked to the new `Session`. Note that only a\n     * single instance of the `Inviter` will be created and returned (if called\n     * more than once a reference to the same `Inviter` will be returned every time).\n     *\n     * @param options - Options bucket.\n     * @param modifiers - Session description handler modifiers.\n     */\n    makeInviter(options) {\n        if (this.inviter) {\n            return this.inviter;\n        }\n        const targetURI = this.referTo.uri.clone();\n        targetURI.clearHeaders();\n        options = options || {};\n        const extraHeaders = (options.extraHeaders || []).slice();\n        const replaces = this.replaces;\n        if (replaces) {\n            // decodeURIComponent is a holdover from 2c086eb4. Not sure that it is actually necessary\n            extraHeaders.push(\"Replaces: \" + decodeURIComponent(replaces));\n        }\n        const referredBy = this.referredBy;\n        if (referredBy) {\n            extraHeaders.push(\"Referred-By: \" + referredBy);\n        }\n        options.extraHeaders = extraHeaders;\n        this.inviter = this.session.userAgent._makeInviter(targetURI, options);\n        this.inviter._referred = this.session;\n        this.session._referral = this.inviter;\n        return this.inviter;\n    }\n}\n\n\n/***/ }),\n/* 35 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SIPExtension\": () => (/* binding */ SIPExtension),\n/* harmony export */   \"UserAgentRegisteredOptionTags\": () => (/* binding */ UserAgentRegisteredOptionTags)\n/* harmony export */ });\n/**\n * SIP extension support level.\n * @public\n */\nvar SIPExtension;\n(function (SIPExtension) {\n    SIPExtension[\"Required\"] = \"Required\";\n    SIPExtension[\"Supported\"] = \"Supported\";\n    SIPExtension[\"Unsupported\"] = \"Unsupported\";\n})(SIPExtension = SIPExtension || (SIPExtension = {}));\n/**\n * SIP Option Tags\n * @remarks\n * http://www.iana.org/assignments/sip-parameters/sip-parameters.xhtml#sip-parameters-4\n * @public\n */\nconst UserAgentRegisteredOptionTags = {\n    \"100rel\": true,\n    \"199\": true,\n    answermode: true,\n    \"early-session\": true,\n    eventlist: true,\n    explicitsub: true,\n    \"from-change\": true,\n    \"geolocation-http\": true,\n    \"geolocation-sip\": true,\n    gin: true,\n    gruu: true,\n    histinfo: true,\n    ice: true,\n    join: true,\n    \"multiple-refer\": true,\n    norefersub: true,\n    nosub: true,\n    outbound: true,\n    path: true,\n    policy: true,\n    precondition: true,\n    pref: true,\n    privacy: true,\n    \"recipient-list-invite\": true,\n    \"recipient-list-message\": true,\n    \"recipient-list-subscribe\": true,\n    replaces: true,\n    \"resource-priority\": true,\n    \"sdp-anat\": true,\n    \"sec-agree\": true,\n    tdialog: true,\n    timer: true,\n    uui: true // RFC 7433\n};\n\n\n/***/ }),\n/* 36 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"TransactionStateError\": () => (/* binding */ TransactionStateError)\n/* harmony export */ });\n/* harmony import */ var _exception_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);\n\n/**\n * Indicates that the operation could not be completed given the current transaction state.\n * @public\n */\nclass TransactionStateError extends _exception_js__WEBPACK_IMPORTED_MODULE_0__.Exception {\n    constructor(message) {\n        super(message ? message : \"Transaction state error.\");\n    }\n}\n\n\n/***/ }),\n/* 37 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Timers\": () => (/* binding */ Timers)\n/* harmony export */ });\nconst T1 = 500;\nconst T2 = 4000;\nconst T4 = 5000;\n/**\n * Timers.\n * @public\n */\nconst Timers = {\n    T1,\n    T2,\n    T4,\n    TIMER_B: 64 * T1,\n    TIMER_D: 0 * T1,\n    TIMER_F: 64 * T1,\n    TIMER_H: 64 * T1,\n    TIMER_I: 0 * T4,\n    TIMER_J: 0 * T1,\n    TIMER_K: 0 * T4,\n    TIMER_L: 64 * T1,\n    TIMER_M: 64 * T1,\n    TIMER_N: 64 * T1,\n    PROVISIONAL_RESPONSE_INTERVAL: 60000 // See RFC 3261 Section 13.3.1.1\n};\n\n\n/***/ }),\n/* 38 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Inviter\": () => (/* binding */ Inviter)\n/* harmony export */ });\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(22);\n/* harmony import */ var _core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);\n/* harmony import */ var _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(31);\n/* harmony import */ var _core_messages_utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(21);\n/* harmony import */ var _session_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16);\n/* harmony import */ var _session_state_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(17);\n/* harmony import */ var _user_agent_options_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(35);\n\n\n\n\n\n\n\n/**\n * An inviter offers to establish a {@link Session} (outgoing INVITE).\n * @public\n */\nclass Inviter extends _session_js__WEBPACK_IMPORTED_MODULE_0__.Session {\n    /**\n     * Constructs a new instance of the `Inviter` class.\n     * @param userAgent - User agent. See {@link UserAgent} for details.\n     * @param targetURI - Request URI identifying the target of the message.\n     * @param options - Options bucket. See {@link InviterOptions} for details.\n     */\n    constructor(userAgent, targetURI, options = {}) {\n        super(userAgent, options);\n        /** True if dispose() has been called. */\n        this.disposed = false;\n        /** True if early media use is enabled. */\n        this.earlyMedia = false;\n        /** The early media session description handlers. */\n        this.earlyMediaSessionDescriptionHandlers = new Map();\n        /** True if cancel() was called. */\n        this.isCanceled = false;\n        /** True if initial INVITE without SDP. */\n        this.inviteWithoutSdp = false;\n        this.logger = userAgent.getLogger(\"sip.Inviter\");\n        // Early media\n        this.earlyMedia = options.earlyMedia !== undefined ? options.earlyMedia : this.earlyMedia;\n        // From tag\n        this.fromTag = (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_1__.newTag)();\n        // Invite without SDP\n        this.inviteWithoutSdp = options.inviteWithoutSdp !== undefined ? options.inviteWithoutSdp : this.inviteWithoutSdp;\n        // Inviter options (could do better copying these options)\n        const inviterOptions = Object.assign({}, options);\n        inviterOptions.params = Object.assign({}, options.params);\n        // Anonymous call\n        const anonymous = options.anonymous || false;\n        // Contact\n        const contact = userAgent.contact.toString({\n            anonymous,\n            // Do not add ;ob in initial forming dialog requests if the\n            // registration over the current connection got a GRUU URI.\n            outbound: anonymous ? !userAgent.contact.tempGruu : !userAgent.contact.pubGruu\n        });\n        // FIXME: TODO: We should not be parsing URIs here as if it fails we have to throw an exception\n        // which is not something we want our constructor to do. URIs should be passed in as params.\n        // URIs\n        if (anonymous && userAgent.configuration.uri) {\n            inviterOptions.params.fromDisplayName = \"Anonymous\";\n            inviterOptions.params.fromUri = \"sip:anonymous@anonymous.invalid\";\n        }\n        let fromURI = userAgent.userAgentCore.configuration.aor;\n        if (inviterOptions.params.fromUri) {\n            fromURI =\n                typeof inviterOptions.params.fromUri === \"string\"\n                    ? _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.URIParse(inviterOptions.params.fromUri)\n                    : inviterOptions.params.fromUri;\n        }\n        if (!fromURI) {\n            throw new TypeError(\"Invalid from URI: \" + inviterOptions.params.fromUri);\n        }\n        let toURI = targetURI;\n        if (inviterOptions.params.toUri) {\n            toURI =\n                typeof inviterOptions.params.toUri === \"string\"\n                    ? _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.URIParse(inviterOptions.params.toUri)\n                    : inviterOptions.params.toUri;\n        }\n        if (!toURI) {\n            throw new TypeError(\"Invalid to URI: \" + inviterOptions.params.toUri);\n        }\n        // Params\n        const messageOptions = Object.assign({}, inviterOptions.params);\n        messageOptions.fromTag = this.fromTag;\n        // Extra headers\n        const extraHeaders = (inviterOptions.extraHeaders || []).slice();\n        if (anonymous && userAgent.configuration.uri) {\n            extraHeaders.push(\"P-Preferred-Identity: \" + userAgent.configuration.uri.toString());\n            extraHeaders.push(\"Privacy: id\");\n        }\n        extraHeaders.push(\"Contact: \" + contact);\n        extraHeaders.push(\"Allow: \" + [\"ACK\", \"CANCEL\", \"INVITE\", \"MESSAGE\", \"BYE\", \"OPTIONS\", \"INFO\", \"NOTIFY\", \"REFER\"].toString());\n        if (userAgent.configuration.sipExtension100rel === _user_agent_options_js__WEBPACK_IMPORTED_MODULE_3__.SIPExtension.Required) {\n            extraHeaders.push(\"Require: 100rel\");\n        }\n        if (userAgent.configuration.sipExtensionReplaces === _user_agent_options_js__WEBPACK_IMPORTED_MODULE_3__.SIPExtension.Required) {\n            extraHeaders.push(\"Require: replaces\");\n        }\n        inviterOptions.extraHeaders = extraHeaders;\n        // Body\n        const body = undefined;\n        // Make initial outgoing request message\n        this.outgoingRequestMessage = userAgent.userAgentCore.makeOutgoingRequestMessage(_core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.INVITE, targetURI, fromURI, toURI, messageOptions, extraHeaders, body);\n        // Session parent properties\n        this._contact = contact;\n        this._referralInviterOptions = inviterOptions;\n        this._renderbody = options.renderbody;\n        this._rendertype = options.rendertype;\n        // Modifiers and options for initial INVITE transaction\n        if (options.sessionDescriptionHandlerModifiers) {\n            this.sessionDescriptionHandlerModifiers = options.sessionDescriptionHandlerModifiers;\n        }\n        if (options.sessionDescriptionHandlerOptions) {\n            this.sessionDescriptionHandlerOptions = options.sessionDescriptionHandlerOptions;\n        }\n        // Modifiers and options for re-INVITE transactions\n        if (options.sessionDescriptionHandlerModifiersReInvite) {\n            this.sessionDescriptionHandlerModifiersReInvite = options.sessionDescriptionHandlerModifiersReInvite;\n        }\n        if (options.sessionDescriptionHandlerOptionsReInvite) {\n            this.sessionDescriptionHandlerOptionsReInvite = options.sessionDescriptionHandlerOptionsReInvite;\n        }\n        // Identifier\n        this._id = this.outgoingRequestMessage.callId + this.fromTag;\n        // Add to the user agent's session collection.\n        this.userAgent._sessions[this._id] = this;\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        // Only run through this once. It can and does get called multiple times\n        // depending on the what the sessions state is when first called.\n        // For example, if called when \"establishing\" it will be called again\n        // at least once when the session transitions to \"terminated\".\n        // Regardless, running through this more than once is pointless.\n        if (this.disposed) {\n            return Promise.resolve();\n        }\n        this.disposed = true;\n        // Dispose of early dialog media\n        this.disposeEarlyMedia();\n        // If the final response for the initial INVITE not yet been received, cancel it\n        switch (this.state) {\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Initial:\n                return this.cancel().then(() => super.dispose());\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing:\n                return this.cancel().then(() => super.dispose());\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Established:\n                return super.dispose();\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminating:\n                return super.dispose();\n            case _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated:\n                return super.dispose();\n            default:\n                throw new Error(\"Unknown state.\");\n        }\n    }\n    /**\n     * Initial outgoing INVITE request message body.\n     */\n    get body() {\n        return this.outgoingRequestMessage.body;\n    }\n    /**\n     * The identity of the local user.\n     */\n    get localIdentity() {\n        return this.outgoingRequestMessage.from;\n    }\n    /**\n     * The identity of the remote user.\n     */\n    get remoteIdentity() {\n        return this.outgoingRequestMessage.to;\n    }\n    /**\n     * Initial outgoing INVITE request message.\n     */\n    get request() {\n        return this.outgoingRequestMessage;\n    }\n    /**\n     * Cancels the INVITE request.\n     *\n     * @remarks\n     * Sends a CANCEL request.\n     * Resolves once the response sent, otherwise rejects.\n     *\n     * After sending a CANCEL request the expectation is that a 487 final response\n     * will be received for the INVITE. However a 200 final response to the INVITE\n     * may nonetheless arrive (it's a race between the CANCEL reaching the UAS before\n     * the UAS sends a 200) in which case an ACK & BYE will be sent. The net effect\n     * is that this method will terminate the session regardless of the race.\n     * @param options - Options bucket.\n     */\n    cancel(options = {}) {\n        this.logger.log(\"Inviter.cancel\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Initial && this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing) {\n            const error = new Error(`Invalid session state ${this.state}`);\n            this.logger.error(error.message);\n            return Promise.reject(error);\n        }\n        // flag canceled\n        this.isCanceled = true;\n        // transition state\n        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminating);\n        // helper function\n        function getCancelReason(code, reason) {\n            if ((code && code < 200) || code > 699) {\n                throw new TypeError(\"Invalid statusCode: \" + code);\n            }\n            else if (code) {\n                const cause = code;\n                const text = (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_1__.getReasonPhrase)(code) || reason;\n                return \"SIP;cause=\" + cause + ';text=\"' + text + '\"';\n            }\n        }\n        if (this.outgoingInviteRequest) {\n            // the CANCEL may not be respected by peer(s), so don't transition to terminated\n            let cancelReason;\n            if (options.statusCode && options.reasonPhrase) {\n                cancelReason = getCancelReason(options.statusCode, options.reasonPhrase);\n            }\n            this.outgoingInviteRequest.cancel(cancelReason, options);\n        }\n        else {\n            this.logger.warn(\"Canceled session before INVITE was sent\");\n            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n        }\n        return Promise.resolve();\n    }\n    /**\n     * Sends the INVITE request.\n     *\n     * @remarks\n     * TLDR...\n     *  1) Only one offer/answer exchange permitted during initial INVITE.\n     *  2) No \"early media\" if the initial offer is in an INVITE (default behavior).\n     *  3) If \"early media\" and the initial offer is in an INVITE, no INVITE forking.\n     *\n     * 1) Only one offer/answer exchange permitted during initial INVITE.\n     *\n     * Our implementation replaces the following bullet point...\n     *\n     * o  After having sent or received an answer to the first offer, the\n     *    UAC MAY generate subsequent offers in requests based on rules\n     *    specified for that method, but only if it has received answers\n     *    to any previous offers, and has not sent any offers to which it\n     *    hasn't gotten an answer.\n     * https://tools.ietf.org/html/rfc3261#section-13.2.1\n     *\n     * ...with...\n     *\n     * o  After having sent or received an answer to the first offer, the\n     *    UAC MUST NOT generate subsequent offers in requests based on rules\n     *    specified for that method.\n     *\n     * ...which in combination with this bullet point...\n     *\n     * o  Once the UAS has sent or received an answer to the initial\n     *    offer, it MUST NOT generate subsequent offers in any responses\n     *    to the initial INVITE.  This means that a UAS based on this\n     *    specification alone can never generate subsequent offers until\n     *    completion of the initial transaction.\n     * https://tools.ietf.org/html/rfc3261#section-13.2.1\n     *\n     * ...ensures that EXACTLY ONE offer/answer exchange will occur\n     * during an initial out of dialog INVITE request made by our UAC.\n     *\n     *\n     * 2) No \"early media\" if the initial offer is in an INVITE (default behavior).\n     *\n     * While our implementation adheres to the following bullet point...\n     *\n     * o  If the initial offer is in an INVITE, the answer MUST be in a\n     *    reliable non-failure message from UAS back to UAC which is\n     *    correlated to that INVITE.  For this specification, that is\n     *    only the final 2xx response to that INVITE.  That same exact\n     *    answer MAY also be placed in any provisional responses sent\n     *    prior to the answer.  The UAC MUST treat the first session\n     *    description it receives as the answer, and MUST ignore any\n     *    session descriptions in subsequent responses to the initial\n     *    INVITE.\n     * https://tools.ietf.org/html/rfc3261#section-13.2.1\n     *\n     * We have made the following implementation decision with regard to early media...\n     *\n     * o  If the initial offer is in the INVITE, the answer from the\n     *    UAS back to the UAC will establish a media session only\n     *    only after the final 2xx response to that INVITE is received.\n     *\n     * The reason for this decision is rooted in a restriction currently\n     * inherent in WebRTC. Specifically, while a SIP INVITE request with an\n     * initial offer may fork resulting in more than one provisional answer,\n     * there is currently no easy/good way to to \"fork\" an offer generated\n     * by a peer connection. In particular, a WebRTC offer currently may only\n     * be matched with one answer and we have no good way to know which\n     * \"provisional answer\" is going to be the \"final answer\". So we have\n     * decided to punt and not create any \"early media\" sessions in this case.\n     *\n     * The upshot is that if you want \"early media\", you must not put the\n     * initial offer in the INVITE. Instead, force the UAS to provide the\n     * initial offer by sending an INVITE without an offer. In the WebRTC\n     * case this allows us to create a unique peer connection with a unique\n     * answer for every provisional offer with \"early media\" on all of them.\n     *\n     *\n     * 3) If \"early media\" and the initial offer is in an INVITE, no INVITE forking.\n     *\n     * The default behavior may be altered and \"early media\" utilized if the\n     * initial offer is in the an INVITE by setting the `earlyMedia` options.\n     * However in that case the INVITE request MUST NOT fork. This allows for\n     * \"early media\" in environments where the forking behavior of the SIP\n     * servers being utilized is configured to disallow forking.\n     */\n    invite(options = {}) {\n        this.logger.log(\"Inviter.invite\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Initial) {\n            // re-invite\n            return super.invite(options);\n        }\n        // Modifiers and options for initial INVITE transaction\n        if (options.sessionDescriptionHandlerModifiers) {\n            this.sessionDescriptionHandlerModifiers = options.sessionDescriptionHandlerModifiers;\n        }\n        if (options.sessionDescriptionHandlerOptions) {\n            this.sessionDescriptionHandlerOptions = options.sessionDescriptionHandlerOptions;\n        }\n        // just send an INVITE with no sdp...\n        if (options.withoutSdp || this.inviteWithoutSdp) {\n            if (this._renderbody && this._rendertype) {\n                this.outgoingRequestMessage.body = { contentType: this._rendertype, body: this._renderbody };\n            }\n            // transition state\n            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing);\n            return Promise.resolve(this.sendInvite(options));\n        }\n        // get an offer and send it in an INVITE\n        const offerOptions = {\n            sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiers,\n            sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptions\n        };\n        return this.getOffer(offerOptions)\n            .then((body) => {\n            this.outgoingRequestMessage.body = { body: body.content, contentType: body.contentType };\n            // transition state\n            this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing);\n            return this.sendInvite(options);\n        })\n            .catch((error) => {\n            this.logger.log(error.message);\n            // It's possible we are already terminated,\n            // so don't throw trying to transition again.\n            if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated) {\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n            }\n            throw error;\n        });\n    }\n    /**\n     * 13.2.1 Creating the Initial INVITE\n     *\n     * Since the initial INVITE represents a request outside of a dialog,\n     * its construction follows the procedures of Section 8.1.1.  Additional\n     * processing is required for the specific case of INVITE.\n     *\n     * An Allow header field (Section 20.5) SHOULD be present in the INVITE.\n     * It indicates what methods can be invoked within a dialog, on the UA\n     * sending the INVITE, for the duration of the dialog.  For example, a\n     * UA capable of receiving INFO requests within a dialog [34] SHOULD\n     * include an Allow header field listing the INFO method.\n     *\n     * A Supported header field (Section 20.37) SHOULD be present in the\n     * INVITE.  It enumerates all the extensions understood by the UAC.\n     *\n     * An Accept (Section 20.1) header field MAY be present in the INVITE.\n     * It indicates which Content-Types are acceptable to the UA, in both\n     * the response received by it, and in any subsequent requests sent to\n     * it within dialogs established by the INVITE.  The Accept header field\n     * is especially useful for indicating support of various session\n     * description formats.\n     *\n     * The UAC MAY add an Expires header field (Section 20.19) to limit the\n     * validity of the invitation.  If the time indicated in the Expires\n     * header field is reached and no final answer for the INVITE has been\n     * received, the UAC core SHOULD generate a CANCEL request for the\n     * INVITE, as per Section 9.\n     *\n     * A UAC MAY also find it useful to add, among others, Subject (Section\n     * 20.36), Organization (Section 20.25) and User-Agent (Section 20.41)\n     * header fields.  They all contain information related to the INVITE.\n     *\n     * The UAC MAY choose to add a message body to the INVITE.  Section\n     * 8.1.1.10 deals with how to construct the header fields -- Content-\n     * Type among others -- needed to describe the message body.\n     *\n     * https://tools.ietf.org/html/rfc3261#section-13.2.1\n     */\n    sendInvite(options = {}) {\n        //    There are special rules for message bodies that contain a session\n        //    description - their corresponding Content-Disposition is \"session\".\n        //    SIP uses an offer/answer model where one UA sends a session\n        //    description, called the offer, which contains a proposed description\n        //    of the session.  The offer indicates the desired communications means\n        //    (audio, video, games), parameters of those means (such as codec\n        //    types) and addresses for receiving media from the answerer.  The\n        //    other UA responds with another session description, called the\n        //    answer, which indicates which communications means are accepted, the\n        //    parameters that apply to those means, and addresses for receiving\n        //    media from the offerer. An offer/answer exchange is within the\n        //    context of a dialog, so that if a SIP INVITE results in multiple\n        //    dialogs, each is a separate offer/answer exchange.  The offer/answer\n        //    model defines restrictions on when offers and answers can be made\n        //    (for example, you cannot make a new offer while one is in progress).\n        //    This results in restrictions on where the offers and answers can\n        //    appear in SIP messages.  In this specification, offers and answers\n        //    can only appear in INVITE requests and responses, and ACK.  The usage\n        //    of offers and answers is further restricted.  For the initial INVITE\n        //    transaction, the rules are:\n        //\n        //       o  The initial offer MUST be in either an INVITE or, if not there,\n        //          in the first reliable non-failure message from the UAS back to\n        //          the UAC.  In this specification, that is the final 2xx\n        //          response.\n        //\n        //       o  If the initial offer is in an INVITE, the answer MUST be in a\n        //          reliable non-failure message from UAS back to UAC which is\n        //          correlated to that INVITE.  For this specification, that is\n        //          only the final 2xx response to that INVITE.  That same exact\n        //          answer MAY also be placed in any provisional responses sent\n        //          prior to the answer.  The UAC MUST treat the first session\n        //          description it receives as the answer, and MUST ignore any\n        //          session descriptions in subsequent responses to the initial\n        //          INVITE.\n        //\n        //       o  If the initial offer is in the first reliable non-failure\n        //          message from the UAS back to UAC, the answer MUST be in the\n        //          acknowledgement for that message (in this specification, ACK\n        //          for a 2xx response).\n        //\n        //       o  After having sent or received an answer to the first offer, the\n        //          UAC MAY generate subsequent offers in requests based on rules\n        //          specified for that method, but only if it has received answers\n        //          to any previous offers, and has not sent any offers to which it\n        //          hasn't gotten an answer.\n        //\n        //       o  Once the UAS has sent or received an answer to the initial\n        //          offer, it MUST NOT generate subsequent offers in any responses\n        //          to the initial INVITE.  This means that a UAS based on this\n        //          specification alone can never generate subsequent offers until\n        //          completion of the initial transaction.\n        //\n        // https://tools.ietf.org/html/rfc3261#section-13.2.1\n        // 5 The Offer/Answer Model and PRACK\n        //\n        //    RFC 3261 describes guidelines for the sets of messages in which\n        //    offers and answers [3] can appear.  Based on those guidelines, this\n        //    extension provides additional opportunities for offer/answer\n        //    exchanges.\n        //    If the INVITE contained an offer, the UAS MAY generate an answer in a\n        //    reliable provisional response (assuming these are supported by the\n        //    UAC).  That results in the establishment of the session before\n        //    completion of the call.  Similarly, if a reliable provisional\n        //    response is the first reliable message sent back to the UAC, and the\n        //    INVITE did not contain an offer, one MUST appear in that reliable\n        //    provisional response.\n        //    If the UAC receives a reliable provisional response with an offer\n        //    (this would occur if the UAC sent an INVITE without an offer, in\n        //    which case the first reliable provisional response will contain the\n        //    offer), it MUST generate an answer in the PRACK.  If the UAC receives\n        //    a reliable provisional response with an answer, it MAY generate an\n        //    additional offer in the PRACK.  If the UAS receives a PRACK with an\n        //    offer, it MUST place the answer in the 2xx to the PRACK.\n        //    Once an answer has been sent or received, the UA SHOULD establish the\n        //    session based on the parameters of the offer and answer, even if the\n        //    original INVITE itself has not been responded to.\n        //    If the UAS had placed a session description in any reliable\n        //    provisional response that is unacknowledged when the INVITE is\n        //    accepted, the UAS MUST delay sending the 2xx until the provisional\n        //    response is acknowledged.  Otherwise, the reliability of the 1xx\n        //    cannot be guaranteed, and reliability is needed for proper operation\n        //    of the offer/answer exchange.\n        //    All user agents that support this extension MUST support all\n        //    offer/answer exchanges that are possible based on the rules in\n        //    Section 13.2 of RFC 3261, based on the existence of INVITE and PRACK\n        //    as requests, and 2xx and reliable 1xx as non-failure reliable\n        //    responses.\n        //\n        // https://tools.ietf.org/html/rfc3262#section-5\n        ////\n        // The Offer/Answer Model Implementation\n        //\n        // The offer/answer model is straight forward, but one MUST READ the specifications...\n        //\n        // 13.2.1 Creating the Initial INVITE (paragraph 8 in particular)\n        // https://tools.ietf.org/html/rfc3261#section-13.2.1\n        //\n        // 5 The Offer/Answer Model and PRACK\n        // https://tools.ietf.org/html/rfc3262#section-5\n        //\n        // Session Initiation Protocol (SIP) Usage of the Offer/Answer Model\n        // https://tools.ietf.org/html/rfc6337\n        ////\n        ////\n        // TODO: The Offer/Answer Model Implementation\n        //\n        // Currently if `earlyMedia` is enabled and the INVITE request forks,\n        // the session is terminated if the early dialog does not match the\n        // confirmed dialog. This restriction make sense in a WebRTC environment,\n        // but there are other environments where this restriction does not hold.\n        //\n        // So while we currently cannot make the offer in INVITE+forking+webrtc\n        // case work, we propose doing the following...\n        //\n        // OPTION 1\n        // - add a `earlyMediaForking` option and\n        // - require SDH.setDescription() to be callable multiple times.\n        //\n        // OPTION 2\n        // 1) modify SDH Factory to provide an initial offer without giving us the SDH, and then...\n        // 2) stick that offer in the initial INVITE, and when 183 with initial answer is received...\n        // 3) ask SDH Factory if it supports \"earlyRemoteAnswer\"\n        //   a) if true, ask SDH Factory to createSDH(localOffer).then((sdh) => sdh.setDescription(remoteAnswer)\n        //   b) if false, defer getting a SDH until 2xx response is received\n        //\n        // Our supplied WebRTC SDH will default to behavior 3b which works in forking environment (without)\n        // early media if initial offer is in the INVITE). We will, however, provide an \"inviteWillNotFork\"\n        // option which if set to \"true\" will have our supplied WebRTC SDH behave in the 3a manner.\n        // That will result in\n        //  - early media working with initial offer in the INVITE, and...\n        //  - if the INVITE forks, the session terminating with an ERROR that reads like\n        //    \"You set 'inviteWillNotFork' to true but the INVITE forked. You can't eat your cake, and have it too.\"\n        //  - furthermore, we accept that users will report that error to us as \"bug\" regardless\n        //\n        // So, SDH Factory is going to end up with a new interface along the lines of...\n        //\n        // interface SessionDescriptionHandlerFactory {\n        //   makeLocalOffer(): Promise<ContentTypeAndBody>;\n        //   makeSessionDescriptionHandler(\n        //     initialOffer: ContentTypeAndBody, offerType: \"local\" | \"remote\"\n        //   ): Promise<SessionDescriptionHandler>;\n        //   supportsEarlyRemoteAnswer: boolean;\n        //   supportsContentType(contentType: string): boolean;\n        //   getDescription(description: ContentTypeAndBody): Promise<ContentTypeAndBody>\n        //   setDescription(description: ContentTypeAndBody): Promise<void>\n        // }\n        ////\n        // Send the INVITE request.\n        this.outgoingInviteRequest = this.userAgent.userAgentCore.invite(this.outgoingRequestMessage, {\n            onAccept: (inviteResponse) => {\n                // Our transaction layer is \"non-standard\" in that it will only\n                // pass us a 2xx response once per branch, so there is no need to\n                // worry about dealing with 2xx retransmissions. However, we can\n                // and do still get 2xx responses for multiple branches (when an\n                // INVITE is forked) which may create multiple confirmed dialogs.\n                // Herein we are acking and sending a bye to any confirmed dialogs\n                // which arrive beyond the first one. This is the desired behavior\n                // for most applications (but certainly not all).\n                // If we already received a confirmed dialog, ack & bye this additional confirmed session.\n                if (this.dialog) {\n                    this.logger.log(\"Additional confirmed dialog, sending ACK and BYE\");\n                    this.ackAndBye(inviteResponse);\n                    // We do NOT transition state in this case (this is an \"extra\" dialog)\n                    return;\n                }\n                // If the user requested cancellation, ack & bye this session.\n                if (this.isCanceled) {\n                    this.logger.log(\"Canceled session accepted, sending ACK and BYE\");\n                    this.ackAndBye(inviteResponse);\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n                    return;\n                }\n                this.notifyReferer(inviteResponse);\n                this.onAccept(inviteResponse)\n                    .then(() => {\n                    this.disposeEarlyMedia();\n                })\n                    .catch(() => {\n                    this.disposeEarlyMedia();\n                })\n                    .then(() => {\n                    if (options.requestDelegate && options.requestDelegate.onAccept) {\n                        options.requestDelegate.onAccept(inviteResponse);\n                    }\n                });\n            },\n            onProgress: (inviteResponse) => {\n                // If the user requested cancellation, ignore response.\n                if (this.isCanceled) {\n                    return;\n                }\n                this.notifyReferer(inviteResponse);\n                this.onProgress(inviteResponse)\n                    .catch(() => {\n                    this.disposeEarlyMedia();\n                })\n                    .then(() => {\n                    if (options.requestDelegate && options.requestDelegate.onProgress) {\n                        options.requestDelegate.onProgress(inviteResponse);\n                    }\n                });\n            },\n            onRedirect: (inviteResponse) => {\n                this.notifyReferer(inviteResponse);\n                this.onRedirect(inviteResponse);\n                if (options.requestDelegate && options.requestDelegate.onRedirect) {\n                    options.requestDelegate.onRedirect(inviteResponse);\n                }\n            },\n            onReject: (inviteResponse) => {\n                this.notifyReferer(inviteResponse);\n                this.onReject(inviteResponse);\n                if (options.requestDelegate && options.requestDelegate.onReject) {\n                    options.requestDelegate.onReject(inviteResponse);\n                }\n            },\n            onTrying: (inviteResponse) => {\n                this.notifyReferer(inviteResponse);\n                this.onTrying(inviteResponse);\n                if (options.requestDelegate && options.requestDelegate.onTrying) {\n                    options.requestDelegate.onTrying(inviteResponse);\n                }\n            }\n        });\n        return this.outgoingInviteRequest;\n    }\n    disposeEarlyMedia() {\n        this.earlyMediaSessionDescriptionHandlers.forEach((sessionDescriptionHandler) => {\n            sessionDescriptionHandler.close();\n        });\n        this.earlyMediaSessionDescriptionHandlers.clear();\n    }\n    notifyReferer(response) {\n        if (!this._referred) {\n            return;\n        }\n        if (!(this._referred instanceof _session_js__WEBPACK_IMPORTED_MODULE_0__.Session)) {\n            throw new Error(\"Referred session not instance of session\");\n        }\n        if (!this._referred.dialog) {\n            return;\n        }\n        if (!response.message.statusCode) {\n            throw new Error(\"Status code undefined.\");\n        }\n        if (!response.message.reasonPhrase) {\n            throw new Error(\"Reason phrase undefined.\");\n        }\n        const statusCode = response.message.statusCode;\n        const reasonPhrase = response.message.reasonPhrase;\n        const body = `SIP/2.0 ${statusCode} ${reasonPhrase}`.trim();\n        const outgoingNotifyRequest = this._referred.dialog.notify(undefined, {\n            extraHeaders: [\"Event: refer\", \"Subscription-State: terminated\"],\n            body: {\n                contentDisposition: \"render\",\n                contentType: \"message/sipfrag\",\n                content: body\n            }\n        });\n        // The implicit subscription created by a REFER is the same as a\n        // subscription created with a SUBSCRIBE request.  The agent issuing the\n        // REFER can terminate this subscription prematurely by unsubscribing\n        // using the mechanisms described in [2].  Terminating a subscription,\n        // either by explicitly unsubscribing or rejecting NOTIFY, is not an\n        // indication that the referenced request should be withdrawn or\n        // abandoned.\n        // https://tools.ietf.org/html/rfc3515#section-2.4.4\n        // FIXME: TODO: This should be done in a subscribe dialog to satisfy the above.\n        // If the notify is rejected, stop sending NOTIFY requests.\n        outgoingNotifyRequest.delegate = {\n            onReject: () => {\n                this._referred = undefined;\n            }\n        };\n    }\n    /**\n     * Handle final response to initial INVITE.\n     * @param inviteResponse - 2xx response.\n     */\n    onAccept(inviteResponse) {\n        this.logger.log(\"Inviter.onAccept\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing) {\n            this.logger.error(`Accept received while in state ${this.state}, dropping response`);\n            return Promise.reject(new Error(`Invalid session state ${this.state}`));\n        }\n        const response = inviteResponse.message;\n        const session = inviteResponse.session;\n        // Ported behavior.\n        if (response.hasHeader(\"P-Asserted-Identity\")) {\n            this._assertedIdentity = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.nameAddrHeaderParse(response.getHeader(\"P-Asserted-Identity\"));\n        }\n        // We have a confirmed dialog.\n        session.delegate = {\n            onAck: (ackRequest) => this.onAckRequest(ackRequest),\n            onBye: (byeRequest) => this.onByeRequest(byeRequest),\n            onInfo: (infoRequest) => this.onInfoRequest(infoRequest),\n            onInvite: (inviteRequest) => this.onInviteRequest(inviteRequest),\n            onMessage: (messageRequest) => this.onMessageRequest(messageRequest),\n            onNotify: (notifyRequest) => this.onNotifyRequest(notifyRequest),\n            onPrack: (prackRequest) => this.onPrackRequest(prackRequest),\n            onRefer: (referRequest) => this.onReferRequest(referRequest)\n        };\n        this._dialog = session;\n        switch (session.signalingState) {\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Initial:\n                // INVITE without offer, so MUST have offer at this point, so invalid state.\n                this.logger.error(\"Received 2xx response to INVITE without a session description\");\n                this.ackAndBye(inviteResponse, 400, \"Missing session description\");\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n                return Promise.reject(new Error(\"Bad Media Description\"));\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.HaveLocalOffer:\n                // INVITE with offer, so MUST have answer at this point, so invalid state.\n                this.logger.error(\"Received 2xx response to INVITE without a session description\");\n                this.ackAndBye(inviteResponse, 400, \"Missing session description\");\n                this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n                return Promise.reject(new Error(\"Bad Media Description\"));\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.HaveRemoteOffer: {\n                // INVITE without offer, received offer in 2xx, so MUST send answer in ACK.\n                if (!this._dialog.offer) {\n                    throw new Error(`Session offer undefined in signaling state ${this._dialog.signalingState}.`);\n                }\n                const options = {\n                    sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiers,\n                    sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptions\n                };\n                return this.setOfferAndGetAnswer(this._dialog.offer, options)\n                    .then((body) => {\n                    inviteResponse.ack({ body });\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Established);\n                })\n                    .catch((error) => {\n                    this.ackAndBye(inviteResponse, 488, \"Invalid session description\");\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n                    throw error;\n                });\n            }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Stable: {\n                // If INVITE without offer and we have already completed the initial exchange.\n                if (this.earlyMediaSessionDescriptionHandlers.size > 0) {\n                    const sdh = this.earlyMediaSessionDescriptionHandlers.get(session.id);\n                    if (!sdh) {\n                        throw new Error(\"Session description handler undefined.\");\n                    }\n                    this.setSessionDescriptionHandler(sdh);\n                    this.earlyMediaSessionDescriptionHandlers.delete(session.id);\n                    inviteResponse.ack();\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Established);\n                    return Promise.resolve();\n                }\n                // If INVITE with offer and we used an \"early\" answer in a provisional response for media\n                if (this.earlyMediaDialog) {\n                    // If early media dialog doesn't match confirmed dialog, we must unfortunately fail.\n                    // This limitation stems from how WebRTC currently implements its offer/answer model.\n                    // There are details elsewhere, but in short a WebRTC offer cannot be forked.\n                    if (this.earlyMediaDialog !== session) {\n                        if (this.earlyMedia) {\n                            const message = \"You have set the 'earlyMedia' option to 'true' which requires that your INVITE requests \" +\n                                \"do not fork and yet this INVITE request did in fact fork. Consequentially and not surprisingly \" +\n                                \"the end point which accepted the INVITE (confirmed dialog) does not match the end point with \" +\n                                \"which early media has been setup (early dialog) and thus this session is unable to proceed. \" +\n                                \"In accordance with the SIP specifications, the SIP servers your end point is connected to \" +\n                                \"determine if an INVITE forks and the forking behavior of those servers cannot be controlled \" +\n                                \"by this library. If you wish to use early media with this library you must configure those \" +\n                                \"servers accordingly. Alternatively you may set the 'earlyMedia' to 'false' which will allow \" +\n                                \"this library to function with any INVITE requests which do fork.\";\n                            this.logger.error(message);\n                        }\n                        const error = new Error(\"Early media dialog does not equal confirmed dialog, terminating session\");\n                        this.logger.error(error.message);\n                        this.ackAndBye(inviteResponse, 488, \"Not Acceptable Here\");\n                        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n                        return Promise.reject(error);\n                    }\n                    // Otherwise we are good to go.\n                    inviteResponse.ack();\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Established);\n                    return Promise.resolve();\n                }\n                // If INVITE with offer and we have been waiting till now to apply the answer.\n                const answer = session.answer;\n                if (!answer) {\n                    throw new Error(\"Answer is undefined.\");\n                }\n                const options = {\n                    sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiers,\n                    sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptions\n                };\n                return this.setAnswer(answer, options)\n                    .then(() => {\n                    // This session has completed an initial offer/answer exchange...\n                    let ackOptions;\n                    if (this._renderbody && this._rendertype) {\n                        ackOptions = {\n                            body: { contentDisposition: \"render\", contentType: this._rendertype, content: this._renderbody }\n                        };\n                    }\n                    inviteResponse.ack(ackOptions);\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Established);\n                })\n                    .catch((error) => {\n                    this.logger.error(error.message);\n                    this.ackAndBye(inviteResponse, 488, \"Not Acceptable Here\");\n                    this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n                    throw error;\n                });\n            }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Closed:\n                // Dialog has terminated.\n                return Promise.reject(new Error(\"Terminated.\"));\n            default:\n                throw new Error(\"Unknown session signaling state.\");\n        }\n    }\n    /**\n     * Handle provisional response to initial INVITE.\n     * @param inviteResponse - 1xx response.\n     */\n    onProgress(inviteResponse) {\n        var _a;\n        this.logger.log(\"Inviter.onProgress\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing) {\n            this.logger.error(`Progress received while in state ${this.state}, dropping response`);\n            return Promise.reject(new Error(`Invalid session state ${this.state}`));\n        }\n        if (!this.outgoingInviteRequest) {\n            throw new Error(\"Outgoing INVITE request undefined.\");\n        }\n        const response = inviteResponse.message;\n        const session = inviteResponse.session;\n        // Ported - Set assertedIdentity.\n        if (response.hasHeader(\"P-Asserted-Identity\")) {\n            this._assertedIdentity = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.nameAddrHeaderParse(response.getHeader(\"P-Asserted-Identity\"));\n        }\n        // If a provisional response is received for an initial request, and\n        // that response contains a Require header field containing the option\n        // tag 100rel, the response is to be sent reliably.  If the response is\n        // a 100 (Trying) (as opposed to 101 to 199), this option tag MUST be\n        // ignored, and the procedures below MUST NOT be used.\n        // https://tools.ietf.org/html/rfc3262#section-4\n        const requireHeader = response.getHeader(\"require\");\n        const rseqHeader = response.getHeader(\"rseq\");\n        const rseq = requireHeader && requireHeader.includes(\"100rel\") && rseqHeader ? Number(rseqHeader) : undefined;\n        const responseReliable = !!rseq;\n        const extraHeaders = [];\n        if (responseReliable) {\n            extraHeaders.push(\"RAck: \" + response.getHeader(\"rseq\") + \" \" + response.getHeader(\"cseq\"));\n        }\n        switch (session.signalingState) {\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Initial:\n                // INVITE without offer and session still has no offer (and no answer).\n                if (responseReliable) {\n                    // Similarly, if a reliable provisional\n                    // response is the first reliable message sent back to the UAC, and the\n                    // INVITE did not contain an offer, one MUST appear in that reliable\n                    // provisional response.\n                    // https://tools.ietf.org/html/rfc3262#section-5\n                    this.logger.warn(\"First reliable provisional response received MUST contain an offer when INVITE does not contain an offer.\");\n                    // FIXME: Known popular UA's currently end up here...\n                    inviteResponse.prack({ extraHeaders });\n                }\n                return Promise.resolve();\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.HaveLocalOffer:\n                // INVITE with offer and session only has that initial local offer.\n                if (responseReliable) {\n                    inviteResponse.prack({ extraHeaders });\n                }\n                return Promise.resolve();\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.HaveRemoteOffer:\n                if (!responseReliable) {\n                    // The initial offer MUST be in either an INVITE or, if not there,\n                    // in the first reliable non-failure message from the UAS back to\n                    // the UAC.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                    // According to Section 13.2.1 of [RFC3261], 'The first reliable\n                    // non-failure message' must have an offer if there is no offer in the\n                    // INVITE request.  This means that the User Agent (UA) that receives\n                    // the INVITE request without an offer must include an offer in the\n                    // first reliable response with 100rel extension.  If no reliable\n                    // provisional response has been sent, the User Agent Server (UAS) must\n                    // include an offer when sending 2xx response.\n                    // https://tools.ietf.org/html/rfc6337#section-2.2\n                    this.logger.warn(\"Non-reliable provisional response MUST NOT contain an initial offer, discarding response.\");\n                    return Promise.resolve();\n                }\n                {\n                    // If the initial offer is in the first reliable non-failure\n                    // message from the UAS back to UAC, the answer MUST be in the\n                    // acknowledgement for that message\n                    const sdh = this.sessionDescriptionHandlerFactory(this, this.userAgent.configuration.sessionDescriptionHandlerFactoryOptions || {});\n                    if ((_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onSessionDescriptionHandler) {\n                        this.delegate.onSessionDescriptionHandler(sdh, true);\n                    }\n                    this.earlyMediaSessionDescriptionHandlers.set(session.id, sdh);\n                    return sdh\n                        .setDescription(response.body, this.sessionDescriptionHandlerOptions, this.sessionDescriptionHandlerModifiers)\n                        .then(() => sdh.getDescription(this.sessionDescriptionHandlerOptions, this.sessionDescriptionHandlerModifiers))\n                        .then((description) => {\n                        const body = {\n                            contentDisposition: \"session\",\n                            contentType: description.contentType,\n                            content: description.body\n                        };\n                        inviteResponse.prack({ extraHeaders, body });\n                    })\n                        .catch((error) => {\n                        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n                        throw error;\n                    });\n                }\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Stable:\n                // This session has completed an initial offer/answer exchange, so...\n                // - INVITE with SDP and this provisional response MAY be reliable\n                // - INVITE without SDP and this provisional response MAY be reliable\n                if (responseReliable) {\n                    inviteResponse.prack({ extraHeaders });\n                }\n                if (this.earlyMedia && !this.earlyMediaDialog) {\n                    this.earlyMediaDialog = session;\n                    const answer = session.answer;\n                    if (!answer) {\n                        throw new Error(\"Answer is undefined.\");\n                    }\n                    const options = {\n                        sessionDescriptionHandlerModifiers: this.sessionDescriptionHandlerModifiers,\n                        sessionDescriptionHandlerOptions: this.sessionDescriptionHandlerOptions\n                    };\n                    return this.setAnswer(answer, options).catch((error) => {\n                        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n                        throw error;\n                    });\n                }\n                return Promise.resolve();\n            case _core_session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Closed:\n                // Dialog has terminated.\n                return Promise.reject(new Error(\"Terminated.\"));\n            default:\n                throw new Error(\"Unknown session signaling state.\");\n        }\n    }\n    /**\n     * Handle final response to initial INVITE.\n     * @param inviteResponse - 3xx response.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    onRedirect(inviteResponse) {\n        this.logger.log(\"Inviter.onRedirect\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing && this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminating) {\n            this.logger.error(`Redirect received while in state ${this.state}, dropping response`);\n            return;\n        }\n        // transition state\n        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n    }\n    /**\n     * Handle final response to initial INVITE.\n     * @param inviteResponse - 4xx, 5xx, or 6xx response.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    onReject(inviteResponse) {\n        this.logger.log(\"Inviter.onReject\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing && this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminating) {\n            this.logger.error(`Reject received while in state ${this.state}, dropping response`);\n            return;\n        }\n        // transition state\n        this.stateTransition(_session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Terminated);\n    }\n    /**\n     * Handle final response to initial INVITE.\n     * @param inviteResponse - 100 response.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    onTrying(inviteResponse) {\n        this.logger.log(\"Inviter.onTrying\");\n        // validate state\n        if (this.state !== _session_state_js__WEBPACK_IMPORTED_MODULE_5__.SessionState.Establishing) {\n            this.logger.error(`Trying received while in state ${this.state}, dropping response`);\n            return;\n        }\n    }\n}\n\n\n/***/ }),\n/* 39 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Messager\": () => (/* binding */ Messager)\n/* harmony export */ });\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(22);\n/* harmony import */ var _core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n\n\n/**\n * A messager sends a {@link Message} (outgoing MESSAGE).\n * @public\n */\nclass Messager {\n    /**\n     * Constructs a new instance of the `Messager` class.\n     * @param userAgent - User agent. See {@link UserAgent} for details.\n     * @param targetURI - Request URI identifying the target of the message.\n     * @param content - Content for the body of the message.\n     * @param contentType - Content type of the body of the message.\n     * @param options - Options bucket. See {@link MessagerOptions} for details.\n     */\n    constructor(userAgent, targetURI, content, contentType = \"text/plain\", options = {}) {\n        // Logger\n        this.logger = userAgent.getLogger(\"sip.Messager\");\n        // Default options params\n        options.params = options.params || {};\n        // URIs\n        let fromURI = userAgent.userAgentCore.configuration.aor;\n        if (options.params.fromUri) {\n            fromURI =\n                typeof options.params.fromUri === \"string\" ? _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_0__.Grammar.URIParse(options.params.fromUri) : options.params.fromUri;\n        }\n        if (!fromURI) {\n            throw new TypeError(\"Invalid from URI: \" + options.params.fromUri);\n        }\n        let toURI = targetURI;\n        if (options.params.toUri) {\n            toURI = typeof options.params.toUri === \"string\" ? _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_0__.Grammar.URIParse(options.params.toUri) : options.params.toUri;\n        }\n        if (!toURI) {\n            throw new TypeError(\"Invalid to URI: \" + options.params.toUri);\n        }\n        // Message params\n        const params = options.params ? Object.assign({}, options.params) : {};\n        // Extra headers\n        const extraHeaders = (options.extraHeaders || []).slice();\n        // Body\n        const contentDisposition = \"render\";\n        const body = {\n            contentDisposition,\n            contentType,\n            content\n        };\n        // Build the request\n        this.request = userAgent.userAgentCore.makeOutgoingRequestMessage(_core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.MESSAGE, targetURI, fromURI, toURI, params, extraHeaders, body);\n        // User agent\n        this.userAgent = userAgent;\n    }\n    /**\n     * Send the message.\n     */\n    message(options = {}) {\n        this.userAgent.userAgentCore.request(this.request, options.requestDelegate);\n        return Promise.resolve();\n    }\n}\n\n\n/***/ }),\n/* 40 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"PublisherState\": () => (/* binding */ PublisherState)\n/* harmony export */ });\n/**\n * {@link Publisher} state.\n * @remarks\n * The {@link Publisher} behaves in a deterministic manner according to the following\n * Finite State Machine (FSM).\n * ```txt\n *                  __________________________________________\n *                 |  __________________________              |\n * Publisher       | |                          v             v\n * Constructed -> Initial -> Published -> Unpublished -> Terminated\n *                              |   ^____________|             ^\n *                              |______________________________|\n * ```\n * @public\n */\nvar PublisherState;\n(function (PublisherState) {\n    PublisherState[\"Initial\"] = \"Initial\";\n    PublisherState[\"Published\"] = \"Published\";\n    PublisherState[\"Unpublished\"] = \"Unpublished\";\n    PublisherState[\"Terminated\"] = \"Terminated\";\n})(PublisherState = PublisherState || (PublisherState = {}));\n\n\n/***/ }),\n/* 41 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Publisher\": () => (/* binding */ Publisher)\n/* harmony export */ });\n/* harmony import */ var _core_messages_body_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(18);\n/* harmony import */ var _core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(30);\n/* harmony import */ var _emitter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(13);\n/* harmony import */ var _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(40);\n\n\n\n\n/**\n * A publisher publishes a publication (outgoing PUBLISH).\n * @public\n */\nclass Publisher {\n    /**\n     * Constructs a new instance of the `Publisher` class.\n     *\n     * @param userAgent - User agent. See {@link UserAgent} for details.\n     * @param targetURI - Request URI identifying the target of the message.\n     * @param eventType - The event type identifying the published document.\n     * @param options - Options bucket. See {@link PublisherOptions} for details.\n     */\n    constructor(userAgent, targetURI, eventType, options = {}) {\n        this.disposed = false;\n        /** The publication state. */\n        this._state = _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Initial;\n        // state emitter\n        this._stateEventEmitter = new _emitter_js__WEBPACK_IMPORTED_MODULE_1__.EmitterImpl();\n        this.userAgent = userAgent;\n        options.extraHeaders = (options.extraHeaders || []).slice();\n        options.contentType = options.contentType || \"text/plain\";\n        if (typeof options.expires !== \"number\" || options.expires % 1 !== 0) {\n            options.expires = 3600;\n        }\n        else {\n            options.expires = Number(options.expires);\n        }\n        if (typeof options.unpublishOnClose !== \"boolean\") {\n            options.unpublishOnClose = true;\n        }\n        this.target = targetURI;\n        this.event = eventType;\n        this.options = options;\n        this.pubRequestExpires = options.expires;\n        this.logger = userAgent.getLogger(\"sip.Publisher\");\n        const params = options.params || {};\n        const fromURI = params.fromUri ? params.fromUri : userAgent.userAgentCore.configuration.aor;\n        const toURI = params.toUri ? params.toUri : targetURI;\n        let body;\n        if (options.body && options.contentType) {\n            const contentDisposition = \"render\";\n            const contentType = options.contentType;\n            const content = options.body;\n            body = {\n                contentDisposition,\n                contentType,\n                content\n            };\n        }\n        const extraHeaders = (options.extraHeaders || []).slice();\n        // Build the request\n        this.request = userAgent.userAgentCore.makeOutgoingRequestMessage(_core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.PUBLISH, targetURI, fromURI, toURI, params, extraHeaders, body);\n        // Identifier\n        this.id = this.target.toString() + \":\" + this.event;\n        // Add to the user agent's publisher collection.\n        this.userAgent._publishers[this.id] = this;\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        if (this.disposed) {\n            return Promise.resolve();\n        }\n        this.disposed = true;\n        this.logger.log(`Publisher ${this.id} in state ${this.state} is being disposed`);\n        // Remove from the user agent's publisher collection\n        delete this.userAgent._publishers[this.id];\n        // Send unpublish, if requested\n        if (this.options.unpublishOnClose && this.state === _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Published) {\n            return this.unpublish();\n        }\n        if (this.publishRefreshTimer) {\n            clearTimeout(this.publishRefreshTimer);\n            this.publishRefreshTimer = undefined;\n        }\n        this.pubRequestBody = undefined;\n        this.pubRequestExpires = 0;\n        this.pubRequestEtag = undefined;\n        return Promise.resolve();\n    }\n    /** The publication state. */\n    get state() {\n        return this._state;\n    }\n    /** Emits when the publisher state changes. */\n    get stateChange() {\n        return this._stateEventEmitter;\n    }\n    /**\n     * Publish.\n     * @param content - Body to publish\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    publish(content, options = {}) {\n        // Clean up before the run\n        if (this.publishRefreshTimer) {\n            clearTimeout(this.publishRefreshTimer);\n            this.publishRefreshTimer = undefined;\n        }\n        // is Initial or Modify request\n        this.options.body = content;\n        this.pubRequestBody = this.options.body;\n        if (this.pubRequestExpires === 0) {\n            // This is Initial request after unpublish\n            if (this.options.expires === undefined) {\n                throw new Error(\"Expires undefined.\");\n            }\n            this.pubRequestExpires = this.options.expires;\n            this.pubRequestEtag = undefined;\n        }\n        this.sendPublishRequest();\n        return Promise.resolve();\n    }\n    /**\n     * Unpublish.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    unpublish(options = {}) {\n        // Clean up before the run\n        if (this.publishRefreshTimer) {\n            clearTimeout(this.publishRefreshTimer);\n            this.publishRefreshTimer = undefined;\n        }\n        this.pubRequestBody = undefined;\n        this.pubRequestExpires = 0;\n        if (this.pubRequestEtag !== undefined) {\n            this.sendPublishRequest();\n        }\n        return Promise.resolve();\n    }\n    /** @internal */\n    receiveResponse(response) {\n        const statusCode = response.statusCode || 0;\n        switch (true) {\n            case /^1[0-9]{2}$/.test(statusCode.toString()):\n                break;\n            case /^2[0-9]{2}$/.test(statusCode.toString()):\n                // Set SIP-Etag\n                if (response.hasHeader(\"SIP-ETag\")) {\n                    this.pubRequestEtag = response.getHeader(\"SIP-ETag\");\n                }\n                else {\n                    this.logger.warn(\"SIP-ETag header missing in a 200-class response to PUBLISH\");\n                }\n                // Update Expire\n                if (response.hasHeader(\"Expires\")) {\n                    const expires = Number(response.getHeader(\"Expires\"));\n                    if (typeof expires === \"number\" && expires >= 0 && expires <= this.pubRequestExpires) {\n                        this.pubRequestExpires = expires;\n                    }\n                    else {\n                        this.logger.warn(\"Bad Expires header in a 200-class response to PUBLISH\");\n                    }\n                }\n                else {\n                    this.logger.warn(\"Expires header missing in a 200-class response to PUBLISH\");\n                }\n                if (this.pubRequestExpires !== 0) {\n                    // Schedule refresh\n                    this.publishRefreshTimer = setTimeout(() => this.refreshRequest(), this.pubRequestExpires * 900);\n                    if (this._state !== _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Published) {\n                        this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Published);\n                    }\n                }\n                else {\n                    this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Unpublished);\n                }\n                break;\n            case /^412$/.test(statusCode.toString()):\n                // 412 code means no matching ETag - possibly the PUBLISH expired\n                // Resubmit as new request, if the current request is not a \"remove\"\n                if (this.pubRequestEtag !== undefined && this.pubRequestExpires !== 0) {\n                    this.logger.warn(\"412 response to PUBLISH, recovering\");\n                    this.pubRequestEtag = undefined;\n                    if (this.options.body === undefined) {\n                        throw new Error(\"Body undefined.\");\n                    }\n                    this.publish(this.options.body);\n                }\n                else {\n                    this.logger.warn(\"412 response to PUBLISH, recovery failed\");\n                    this.pubRequestExpires = 0;\n                    this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Unpublished);\n                    this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated);\n                }\n                break;\n            case /^423$/.test(statusCode.toString()):\n                // 423 code means we need to adjust the Expires interval up\n                if (this.pubRequestExpires !== 0 && response.hasHeader(\"Min-Expires\")) {\n                    const minExpires = Number(response.getHeader(\"Min-Expires\"));\n                    if (typeof minExpires === \"number\" || minExpires > this.pubRequestExpires) {\n                        this.logger.warn(\"423 code in response to PUBLISH, adjusting the Expires value and trying to recover\");\n                        this.pubRequestExpires = minExpires;\n                        if (this.options.body === undefined) {\n                            throw new Error(\"Body undefined.\");\n                        }\n                        this.publish(this.options.body);\n                    }\n                    else {\n                        this.logger.warn(\"Bad 423 response Min-Expires header received for PUBLISH\");\n                        this.pubRequestExpires = 0;\n                        this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Unpublished);\n                        this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated);\n                    }\n                }\n                else {\n                    this.logger.warn(\"423 response to PUBLISH, recovery failed\");\n                    this.pubRequestExpires = 0;\n                    this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Unpublished);\n                    this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated);\n                }\n                break;\n            default:\n                this.pubRequestExpires = 0;\n                this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Unpublished);\n                this.stateTransition(_publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated);\n                break;\n        }\n        // Do the cleanup\n        if (this.pubRequestExpires === 0) {\n            if (this.publishRefreshTimer) {\n                clearTimeout(this.publishRefreshTimer);\n                this.publishRefreshTimer = undefined;\n            }\n            this.pubRequestBody = undefined;\n            this.pubRequestEtag = undefined;\n        }\n    }\n    /** @internal */\n    send() {\n        return this.userAgent.userAgentCore.publish(this.request, {\n            onAccept: (response) => this.receiveResponse(response.message),\n            onProgress: (response) => this.receiveResponse(response.message),\n            onRedirect: (response) => this.receiveResponse(response.message),\n            onReject: (response) => this.receiveResponse(response.message),\n            onTrying: (response) => this.receiveResponse(response.message)\n        });\n    }\n    refreshRequest() {\n        // Clean up before the run\n        if (this.publishRefreshTimer) {\n            clearTimeout(this.publishRefreshTimer);\n            this.publishRefreshTimer = undefined;\n        }\n        // This is Refresh request\n        this.pubRequestBody = undefined;\n        if (this.pubRequestEtag === undefined) {\n            throw new Error(\"Etag undefined\");\n        }\n        if (this.pubRequestExpires === 0) {\n            throw new Error(\"Expires zero\");\n        }\n        this.sendPublishRequest();\n    }\n    sendPublishRequest() {\n        const reqOptions = Object.assign({}, this.options);\n        reqOptions.extraHeaders = (this.options.extraHeaders || []).slice();\n        reqOptions.extraHeaders.push(\"Event: \" + this.event);\n        reqOptions.extraHeaders.push(\"Expires: \" + this.pubRequestExpires);\n        if (this.pubRequestEtag !== undefined) {\n            reqOptions.extraHeaders.push(\"SIP-If-Match: \" + this.pubRequestEtag);\n        }\n        const ruri = this.target;\n        const params = this.options.params || {};\n        let bodyAndContentType;\n        if (this.pubRequestBody !== undefined) {\n            if (this.options.contentType === undefined) {\n                throw new Error(\"Content type undefined.\");\n            }\n            bodyAndContentType = {\n                body: this.pubRequestBody,\n                contentType: this.options.contentType\n            };\n        }\n        let body;\n        if (bodyAndContentType) {\n            body = (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_3__.fromBodyLegacy)(bodyAndContentType);\n        }\n        this.request = this.userAgent.userAgentCore.makeOutgoingRequestMessage(_core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.PUBLISH, ruri, params.fromUri ? params.fromUri : this.userAgent.userAgentCore.configuration.aor, params.toUri ? params.toUri : this.target, params, reqOptions.extraHeaders, body);\n        return this.send();\n    }\n    /**\n     * Transition publication state.\n     */\n    stateTransition(newState) {\n        const invalidTransition = () => {\n            throw new Error(`Invalid state transition from ${this._state} to ${newState}`);\n        };\n        // Validate transition\n        switch (this._state) {\n            case _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Initial:\n                if (newState !== _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Published &&\n                    newState !== _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Unpublished &&\n                    newState !== _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Published:\n                if (newState !== _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Unpublished && newState !== _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Unpublished:\n                if (newState !== _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Published && newState !== _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated:\n                invalidTransition();\n                break;\n            default:\n                throw new Error(\"Unrecognized state.\");\n        }\n        // Transition\n        this._state = newState;\n        this.logger.log(`Publication transitioned to state ${this._state}`);\n        this._stateEventEmitter.emit(this._state);\n        // Dispose\n        if (newState === _publisher_state_js__WEBPACK_IMPORTED_MODULE_0__.PublisherState.Terminated) {\n            this.dispose();\n        }\n    }\n}\n\n\n/***/ }),\n/* 42 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"RegistererState\": () => (/* binding */ RegistererState)\n/* harmony export */ });\n/**\n * {@link Registerer} state.\n * @remarks\n * The {@link Registerer} behaves in a deterministic manner according to the following\n * Finite State Machine (FSM).\n * ```txt\n *                   __________________________________________\n *                  |  __________________________              |\n * Registerer       | |                          v             v\n * Constructed -> Initial -> Registered -> Unregistered -> Terminated\n *                              |   ^____________|             ^\n *                              |______________________________|\n * ```\n * @public\n */\nvar RegistererState;\n(function (RegistererState) {\n    RegistererState[\"Initial\"] = \"Initial\";\n    RegistererState[\"Registered\"] = \"Registered\";\n    RegistererState[\"Unregistered\"] = \"Unregistered\";\n    RegistererState[\"Terminated\"] = \"Terminated\";\n})(RegistererState = RegistererState || (RegistererState = {}));\n\n\n/***/ }),\n/* 43 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Registerer\": () => (/* binding */ Registerer)\n/* harmony export */ });\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(22);\n/* harmony import */ var _grammar_uri_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(24);\n/* harmony import */ var _core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(30);\n/* harmony import */ var _emitter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(13);\n/* harmony import */ var _exceptions_request_pending_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(6);\n/* harmony import */ var _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(42);\n\n\n\n\n\n\n/**\n * A registerer registers a contact for an address of record (outgoing REGISTER).\n * @public\n */\nclass Registerer {\n    /**\n     * Constructs a new instance of the `Registerer` class.\n     * @param userAgent - User agent. See {@link UserAgent} for details.\n     * @param options - Options bucket. See {@link RegistererOptions} for details.\n     */\n    constructor(userAgent, options = {}) {\n        this.disposed = false;\n        /** The contacts returned from the most recent accepted REGISTER request. */\n        this._contacts = [];\n        /** The number of seconds to wait before retrying to register. */\n        this._retryAfter = undefined;\n        /** The registration state. */\n        this._state = _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Initial;\n        /** True is waiting for final response to outstanding REGISTER request. */\n        this._waiting = false;\n        // state emitter\n        this._stateEventEmitter = new _emitter_js__WEBPACK_IMPORTED_MODULE_1__.EmitterImpl();\n        // waiting emitter\n        this._waitingEventEmitter = new _emitter_js__WEBPACK_IMPORTED_MODULE_1__.EmitterImpl();\n        // Set user agent\n        this.userAgent = userAgent;\n        // Default registrar is domain portion of user agent uri\n        const defaultUserAgentRegistrar = userAgent.configuration.uri.clone();\n        defaultUserAgentRegistrar.user = undefined;\n        // Initialize configuration\n        this.options = Object.assign(Object.assign(Object.assign({}, Registerer.defaultOptions()), { registrar: defaultUserAgentRegistrar }), Registerer.stripUndefinedProperties(options));\n        // Make sure we are not using references to array options\n        this.options.extraContactHeaderParams = (this.options.extraContactHeaderParams || []).slice();\n        this.options.extraHeaders = (this.options.extraHeaders || []).slice();\n        // Make sure we are not using references to registrar uri\n        if (!this.options.registrar) {\n            throw new Error(\"Registrar undefined.\");\n        }\n        this.options.registrar = this.options.registrar.clone();\n        // Set instanceId and regId conditional defaults and validate\n        if (this.options.regId && !this.options.instanceId) {\n            this.options.instanceId = this.userAgent.instanceId;\n        }\n        else if (!this.options.regId && this.options.instanceId) {\n            this.options.regId = 1;\n        }\n        if (this.options.instanceId && _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.parse(this.options.instanceId, \"uuid\") === -1) {\n            throw new Error(\"Invalid instanceId.\");\n        }\n        if (this.options.regId && this.options.regId < 0) {\n            throw new Error(\"Invalid regId.\");\n        }\n        const registrar = this.options.registrar;\n        const fromURI = (this.options.params && this.options.params.fromUri) || userAgent.userAgentCore.configuration.aor;\n        const toURI = (this.options.params && this.options.params.toUri) || userAgent.configuration.uri;\n        const params = this.options.params || {};\n        const extraHeaders = (options.extraHeaders || []).slice();\n        // Build the request\n        this.request = userAgent.userAgentCore.makeOutgoingRequestMessage(_core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_3__.C.REGISTER, registrar, fromURI, toURI, params, extraHeaders, undefined);\n        // Registration expires\n        this.expires = this.options.expires || Registerer.defaultExpires;\n        if (this.expires < 0) {\n            throw new Error(\"Invalid expires.\");\n        }\n        // Interval at which re-REGISTER requests are sent\n        this.refreshFrequency = this.options.refreshFrequency || Registerer.defaultRefreshFrequency;\n        if (this.refreshFrequency < 50 || this.refreshFrequency > 99) {\n            throw new Error(\"Invalid refresh frequency. The value represents a percentage of the expiration time and should be between 50 and 99.\");\n        }\n        // initialize logger\n        this.logger = userAgent.getLogger(\"sip.Registerer\");\n        if (this.options.logConfiguration) {\n            this.logger.log(\"Configuration:\");\n            Object.keys(this.options).forEach((key) => {\n                // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                const value = this.options[key];\n                switch (key) {\n                    case \"registrar\":\n                        this.logger.log(\"· \" + key + \": \" + value);\n                        break;\n                    default:\n                        this.logger.log(\"· \" + key + \": \" + JSON.stringify(value));\n                }\n            });\n        }\n        // Identifier\n        this.id = this.request.callId + this.request.from.parameters.tag;\n        // Add to the user agent's session collection.\n        this.userAgent._registerers[this.id] = this;\n    }\n    /** Default registerer options. */\n    static defaultOptions() {\n        return {\n            expires: Registerer.defaultExpires,\n            extraContactHeaderParams: [],\n            extraHeaders: [],\n            logConfiguration: true,\n            instanceId: \"\",\n            params: {},\n            regId: 0,\n            registrar: new _grammar_uri_js__WEBPACK_IMPORTED_MODULE_4__.URI(\"sip\", \"anonymous\", \"anonymous.invalid\"),\n            refreshFrequency: Registerer.defaultRefreshFrequency\n        };\n    }\n    /**\n     * Strip properties with undefined values from options.\n     * This is a work around while waiting for missing vs undefined to be addressed (or not)...\n     * https://github.com/Microsoft/TypeScript/issues/13195\n     * @param options - Options to reduce\n     */\n    static stripUndefinedProperties(options) {\n        return Object.keys(options).reduce((object, key) => {\n            // eslint-disable-next-line @typescript-eslint/no-explicit-any\n            if (options[key] !== undefined) {\n                // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                object[key] = options[key];\n            }\n            return object;\n        }, {});\n    }\n    /** The registered contacts. */\n    get contacts() {\n        return this._contacts.slice();\n    }\n    /**\n     * The number of seconds to wait before retrying to register.\n     * @defaultValue `undefined`\n     * @remarks\n     * When the server rejects a registration request, if it provides a suggested\n     * duration to wait before retrying, that value is available here when and if\n     * the state transitions to `Unsubscribed`. It is also available during the\n     * callback to `onReject` after a call to `register`. (Note that if the state\n     * if already `Unsubscribed`, a rejected request created by `register` will\n     * not cause the state to transition to `Unsubscribed`. One way to avoid this\n     * case is to dispose of `Registerer` when unregistered and create a new\n     * `Registerer` for any attempts to retry registering.)\n     * @example\n     * ```ts\n     * // Checking for retry after on state change\n     * registerer.stateChange.addListener((newState) => {\n     *   switch (newState) {\n     *     case RegistererState.Unregistered:\n     *       const retryAfter = registerer.retryAfter;\n     *       break;\n     *   }\n     * });\n     *\n     * // Checking for retry after on request rejection\n     * registerer.register({\n     *   requestDelegate: {\n     *     onReject: () => {\n     *       const retryAfter = registerer.retryAfter;\n     *     }\n     *   }\n     * });\n     * ```\n     */\n    get retryAfter() {\n        return this._retryAfter;\n    }\n    /** The registration state. */\n    get state() {\n        return this._state;\n    }\n    /** Emits when the registerer state changes. */\n    get stateChange() {\n        return this._stateEventEmitter;\n    }\n    /** Destructor. */\n    dispose() {\n        if (this.disposed) {\n            return Promise.resolve();\n        }\n        this.disposed = true;\n        this.logger.log(`Registerer ${this.id} in state ${this.state} is being disposed`);\n        // Remove from the user agent's registerer collection\n        delete this.userAgent._registerers[this.id];\n        // If registered, unregisters and resolves after final response received.\n        return new Promise((resolve) => {\n            const doClose = () => {\n                // If we are registered, unregister and resolve after our state changes\n                if (!this.waiting && this._state === _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Registered) {\n                    this.stateChange.addListener(() => {\n                        this.terminated();\n                        resolve();\n                    }, { once: true });\n                    this.unregister();\n                    return;\n                }\n                // Otherwise just resolve\n                this.terminated();\n                resolve();\n            };\n            // If we are waiting for an outstanding request, wait for it to finish and then try closing.\n            // Otherwise just try closing.\n            if (this.waiting) {\n                this.waitingChange.addListener(() => {\n                    doClose();\n                }, { once: true });\n            }\n            else {\n                doClose();\n            }\n        });\n    }\n    /**\n     * Sends the REGISTER request.\n     * @remarks\n     * If successful, sends re-REGISTER requests prior to registration expiration until `unsubscribe()` is called.\n     * Rejects with `RequestPendingError` if a REGISTER request is already in progress.\n     */\n    register(options = {}) {\n        if (this.state === _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated) {\n            this.stateError();\n            throw new Error(\"Registerer terminated. Unable to register.\");\n        }\n        if (this.disposed) {\n            this.stateError();\n            throw new Error(\"Registerer disposed. Unable to register.\");\n        }\n        // UAs MUST NOT send a new registration (that is, containing new Contact\n        // header field values, as opposed to a retransmission) until they have\n        // received a final response from the registrar for the previous one or\n        // the previous REGISTER request has timed out.\n        // https://tools.ietf.org/html/rfc3261#section-10.2\n        if (this.waiting) {\n            this.waitingWarning();\n            const error = new _exceptions_request_pending_js__WEBPACK_IMPORTED_MODULE_5__.RequestPendingError(\"REGISTER request already in progress, waiting for final response\");\n            return Promise.reject(error);\n        }\n        // Options\n        if (options.requestOptions) {\n            this.options = Object.assign(Object.assign({}, this.options), options.requestOptions);\n        }\n        // Extra headers\n        const extraHeaders = (this.options.extraHeaders || []).slice();\n        extraHeaders.push(\"Contact: \" + this.generateContactHeader(this.expires));\n        // this is UA.C.ALLOWED_METHODS, removed to get around circular dependency\n        extraHeaders.push(\"Allow: \" + [\"ACK\", \"CANCEL\", \"INVITE\", \"MESSAGE\", \"BYE\", \"OPTIONS\", \"INFO\", \"NOTIFY\", \"REFER\"].toString());\n        // Call-ID: All registrations from a UAC SHOULD use the same Call-ID\n        // header field value for registrations sent to a particular\n        // registrar.\n        //\n        // CSeq: The CSeq value guarantees proper ordering of REGISTER\n        // requests.  A UA MUST increment the CSeq value by one for each\n        // REGISTER request with the same Call-ID.\n        // https://tools.ietf.org/html/rfc3261#section-10.2\n        this.request.cseq++;\n        this.request.setHeader(\"cseq\", this.request.cseq + \" REGISTER\");\n        this.request.extraHeaders = extraHeaders;\n        this.waitingToggle(true);\n        const outgoingRegisterRequest = this.userAgent.userAgentCore.register(this.request, {\n            onAccept: (response) => {\n                let expires;\n                // FIXME: This does NOT appear to be to spec and should be removed.\n                // I haven't found anywhere that an Expires header may be used in a response.\n                if (response.message.hasHeader(\"expires\")) {\n                    expires = Number(response.message.getHeader(\"expires\"));\n                }\n                // 8. The registrar returns a 200 (OK) response.  The response MUST\n                // contain Contact header field values enumerating all current\n                // bindings.  Each Contact value MUST feature an \"expires\"\n                // parameter indicating its expiration interval chosen by the\n                // registrar.  The response SHOULD include a Date header field.\n                // https://tools.ietf.org/html/rfc3261#section-10.3\n                this._contacts = response.message.getHeaders(\"contact\");\n                let contacts = this._contacts.length;\n                if (!contacts) {\n                    this.logger.error(\"No Contact header in response to REGISTER, dropping response.\");\n                    this.unregistered();\n                    return;\n                }\n                // The 200 (OK) response from the registrar contains a list of Contact\n                // fields enumerating all current bindings.  The UA compares each\n                // contact address to see if it created the contact address, using\n                // comparison rules in Section 19.1.4.  If so, it updates the expiration\n                // time interval according to the expires parameter or, if absent, the\n                // Expires field value.  The UA then issues a REGISTER request for each\n                // of its bindings before the expiration interval has elapsed.\n                // https://tools.ietf.org/html/rfc3261#section-10.2.4\n                let contact;\n                while (contacts--) {\n                    contact = response.message.parseHeader(\"contact\", contacts);\n                    if (!contact) {\n                        throw new Error(\"Contact undefined\");\n                    }\n                    if (this.userAgent.contact.pubGruu && (0,_grammar_uri_js__WEBPACK_IMPORTED_MODULE_4__.equivalentURI)(contact.uri, this.userAgent.contact.pubGruu)) {\n                        expires = Number(contact.getParam(\"expires\"));\n                        break;\n                    }\n                    // If we are using a randomly generated user name (which is the default behavior)\n                    if (this.userAgent.configuration.contactName === \"\") {\n                        // compare the user portion of the URI under the assumption that it will be unique\n                        if (contact.uri.user === this.userAgent.contact.uri.user) {\n                            expires = Number(contact.getParam(\"expires\"));\n                            break;\n                        }\n                    }\n                    else {\n                        // otherwise use comparision rules in Section 19.1.4\n                        if ((0,_grammar_uri_js__WEBPACK_IMPORTED_MODULE_4__.equivalentURI)(contact.uri, this.userAgent.contact.uri)) {\n                            expires = Number(contact.getParam(\"expires\"));\n                            break;\n                        }\n                    }\n                    contact = undefined;\n                }\n                // There must be a matching contact.\n                if (contact === undefined) {\n                    this.logger.error(\"No Contact header pointing to us, dropping response\");\n                    this.unregistered();\n                    this.waitingToggle(false);\n                    return;\n                }\n                // The contact must have an expires.\n                if (expires === undefined) {\n                    this.logger.error(\"Contact pointing to us is missing expires parameter, dropping response\");\n                    this.unregistered();\n                    this.waitingToggle(false);\n                    return;\n                }\n                // Save gruu values\n                if (contact.hasParam(\"temp-gruu\")) {\n                    const gruu = contact.getParam(\"temp-gruu\");\n                    if (gruu) {\n                        this.userAgent.contact.tempGruu = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.URIParse(gruu.replace(/\"/g, \"\"));\n                    }\n                }\n                if (contact.hasParam(\"pub-gruu\")) {\n                    const gruu = contact.getParam(\"pub-gruu\");\n                    if (gruu) {\n                        this.userAgent.contact.pubGruu = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.URIParse(gruu.replace(/\"/g, \"\"));\n                    }\n                }\n                this.registered(expires);\n                if (options.requestDelegate && options.requestDelegate.onAccept) {\n                    options.requestDelegate.onAccept(response);\n                }\n                this.waitingToggle(false);\n            },\n            onProgress: (response) => {\n                if (options.requestDelegate && options.requestDelegate.onProgress) {\n                    options.requestDelegate.onProgress(response);\n                }\n            },\n            onRedirect: (response) => {\n                this.logger.error(\"Redirect received. Not supported.\");\n                this.unregistered();\n                if (options.requestDelegate && options.requestDelegate.onRedirect) {\n                    options.requestDelegate.onRedirect(response);\n                }\n                this.waitingToggle(false);\n            },\n            onReject: (response) => {\n                if (response.message.statusCode === 423) {\n                    // If a UA receives a 423 (Interval Too Brief) response, it MAY retry\n                    // the registration after making the expiration interval of all contact\n                    // addresses in the REGISTER request equal to or greater than the\n                    // expiration interval within the Min-Expires header field of the 423\n                    // (Interval Too Brief) response.\n                    // https://tools.ietf.org/html/rfc3261#section-10.2.8\n                    //\n                    // The registrar MAY choose an expiration less than the requested\n                    // expiration interval.  If and only if the requested expiration\n                    // interval is greater than zero AND smaller than one hour AND\n                    // less than a registrar-configured minimum, the registrar MAY\n                    // reject the registration with a response of 423 (Interval Too\n                    // Brief).  This response MUST contain a Min-Expires header field\n                    // that states the minimum expiration interval the registrar is\n                    // willing to honor.  It then skips the remaining steps.\n                    // https://tools.ietf.org/html/rfc3261#section-10.3\n                    if (!response.message.hasHeader(\"min-expires\")) {\n                        // This response MUST contain a Min-Expires header field\n                        this.logger.error(\"423 response received for REGISTER without Min-Expires, dropping response\");\n                        this.unregistered();\n                        this.waitingToggle(false);\n                        return;\n                    }\n                    // Increase our registration interval to the suggested minimum\n                    this.expires = Number(response.message.getHeader(\"min-expires\"));\n                    // Attempt the registration again immediately\n                    this.waitingToggle(false);\n                    this.register();\n                    return;\n                }\n                this.logger.warn(`Failed to register, status code ${response.message.statusCode}`);\n                // The Retry-After header field can be used with a 500 (Server Internal\n                // Error) or 503 (Service Unavailable) response to indicate how long the\n                // service is expected to be unavailable to the requesting client...\n                // https://tools.ietf.org/html/rfc3261#section-20.33\n                let retryAfterDuration = NaN;\n                if (response.message.statusCode === 500 || response.message.statusCode === 503) {\n                    const header = response.message.getHeader(\"retry-after\");\n                    if (header) {\n                        retryAfterDuration = Number.parseInt(header, undefined);\n                    }\n                }\n                // Set for the state change (if any) and the delegate callback (if any)\n                this._retryAfter = isNaN(retryAfterDuration) ? undefined : retryAfterDuration;\n                this.unregistered();\n                if (options.requestDelegate && options.requestDelegate.onReject) {\n                    options.requestDelegate.onReject(response);\n                }\n                this._retryAfter = undefined;\n                this.waitingToggle(false);\n            },\n            onTrying: (response) => {\n                if (options.requestDelegate && options.requestDelegate.onTrying) {\n                    options.requestDelegate.onTrying(response);\n                }\n            }\n        });\n        return Promise.resolve(outgoingRegisterRequest);\n    }\n    /**\n     * Sends the REGISTER request with expires equal to zero.\n     * @remarks\n     * Rejects with `RequestPendingError` if a REGISTER request is already in progress.\n     */\n    unregister(options = {}) {\n        if (this.state === _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated) {\n            this.stateError();\n            throw new Error(\"Registerer terminated. Unable to register.\");\n        }\n        if (this.disposed) {\n            if (this.state !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Registered) {\n                // allows unregister while disposing and registered\n                this.stateError();\n                throw new Error(\"Registerer disposed. Unable to register.\");\n            }\n        }\n        // UAs MUST NOT send a new registration (that is, containing new Contact\n        // header field values, as opposed to a retransmission) until they have\n        // received a final response from the registrar for the previous one or\n        // the previous REGISTER request has timed out.\n        // https://tools.ietf.org/html/rfc3261#section-10.2\n        if (this.waiting) {\n            this.waitingWarning();\n            const error = new _exceptions_request_pending_js__WEBPACK_IMPORTED_MODULE_5__.RequestPendingError(\"REGISTER request already in progress, waiting for final response\");\n            return Promise.reject(error);\n        }\n        if (this._state !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Registered && !options.all) {\n            this.logger.warn(\"Not currently registered, but sending an unregister anyway.\");\n        }\n        // Extra headers\n        const extraHeaders = ((options.requestOptions && options.requestOptions.extraHeaders) || []).slice();\n        this.request.extraHeaders = extraHeaders;\n        // Registrations are soft state and expire unless refreshed, but can\n        // also be explicitly removed.  A client can attempt to influence the\n        // expiration interval selected by the registrar as described in Section\n        // 10.2.1.  A UA requests the immediate removal of a binding by\n        // specifying an expiration interval of \"0\" for that contact address in\n        // a REGISTER request.  UAs SHOULD support this mechanism so that\n        // bindings can be removed before their expiration interval has passed.\n        //\n        // The REGISTER-specific Contact header field value of \"*\" applies to\n        // all registrations, but it MUST NOT be used unless the Expires header\n        // field is present with a value of \"0\".\n        // https://tools.ietf.org/html/rfc3261#section-10.2.2\n        if (options.all) {\n            extraHeaders.push(\"Contact: *\");\n            extraHeaders.push(\"Expires: 0\");\n        }\n        else {\n            extraHeaders.push(\"Contact: \" + this.generateContactHeader(0));\n        }\n        // Call-ID: All registrations from a UAC SHOULD use the same Call-ID\n        // header field value for registrations sent to a particular\n        // registrar.\n        //\n        // CSeq: The CSeq value guarantees proper ordering of REGISTER\n        // requests.  A UA MUST increment the CSeq value by one for each\n        // REGISTER request with the same Call-ID.\n        // https://tools.ietf.org/html/rfc3261#section-10.2\n        this.request.cseq++;\n        this.request.setHeader(\"cseq\", this.request.cseq + \" REGISTER\");\n        // Pre-emptive clear the registration timer to avoid a race condition where\n        // this timer fires while waiting for a final response to the unsubscribe.\n        if (this.registrationTimer !== undefined) {\n            clearTimeout(this.registrationTimer);\n            this.registrationTimer = undefined;\n        }\n        this.waitingToggle(true);\n        const outgoingRegisterRequest = this.userAgent.userAgentCore.register(this.request, {\n            onAccept: (response) => {\n                this._contacts = response.message.getHeaders(\"contact\"); // Update contacts\n                this.unregistered();\n                if (options.requestDelegate && options.requestDelegate.onAccept) {\n                    options.requestDelegate.onAccept(response);\n                }\n                this.waitingToggle(false);\n            },\n            onProgress: (response) => {\n                if (options.requestDelegate && options.requestDelegate.onProgress) {\n                    options.requestDelegate.onProgress(response);\n                }\n            },\n            onRedirect: (response) => {\n                this.logger.error(\"Unregister redirected. Not currently supported.\");\n                this.unregistered();\n                if (options.requestDelegate && options.requestDelegate.onRedirect) {\n                    options.requestDelegate.onRedirect(response);\n                }\n                this.waitingToggle(false);\n            },\n            onReject: (response) => {\n                this.logger.error(`Unregister rejected with status code ${response.message.statusCode}`);\n                this.unregistered();\n                if (options.requestDelegate && options.requestDelegate.onReject) {\n                    options.requestDelegate.onReject(response);\n                }\n                this.waitingToggle(false);\n            },\n            onTrying: (response) => {\n                if (options.requestDelegate && options.requestDelegate.onTrying) {\n                    options.requestDelegate.onTrying(response);\n                }\n            }\n        });\n        return Promise.resolve(outgoingRegisterRequest);\n    }\n    /**\n     * Clear registration timers.\n     */\n    clearTimers() {\n        if (this.registrationTimer !== undefined) {\n            clearTimeout(this.registrationTimer);\n            this.registrationTimer = undefined;\n        }\n        if (this.registrationExpiredTimer !== undefined) {\n            clearTimeout(this.registrationExpiredTimer);\n            this.registrationExpiredTimer = undefined;\n        }\n    }\n    /**\n     * Generate Contact Header\n     */\n    generateContactHeader(expires) {\n        let contact = this.userAgent.contact.toString({ register: true });\n        if (this.options.regId && this.options.instanceId) {\n            contact += \";reg-id=\" + this.options.regId;\n            contact += ';+sip.instance=\"<urn:uuid:' + this.options.instanceId + '>\"';\n        }\n        if (this.options.extraContactHeaderParams) {\n            this.options.extraContactHeaderParams.forEach((header) => {\n                contact += \";\" + header;\n            });\n        }\n        contact += \";expires=\" + expires;\n        return contact;\n    }\n    /**\n     * Helper function, called when registered.\n     */\n    registered(expires) {\n        this.clearTimers();\n        // Re-Register before the expiration interval has elapsed.\n        // For that, calculate the delay as a percentage of the expiration time\n        this.registrationTimer = setTimeout(() => {\n            this.registrationTimer = undefined;\n            this.register();\n        }, (this.refreshFrequency / 100) * expires * 1000);\n        // We are unregistered if the registration expires.\n        this.registrationExpiredTimer = setTimeout(() => {\n            this.logger.warn(\"Registration expired\");\n            this.unregistered();\n        }, expires * 1000);\n        if (this._state !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Registered) {\n            this.stateTransition(_registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Registered);\n        }\n    }\n    /**\n     * Helper function, called when unregistered.\n     */\n    unregistered() {\n        this.clearTimers();\n        if (this._state !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Unregistered) {\n            this.stateTransition(_registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Unregistered);\n        }\n    }\n    /**\n     * Helper function, called when terminated.\n     */\n    terminated() {\n        this.clearTimers();\n        if (this._state !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated) {\n            this.stateTransition(_registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated);\n        }\n    }\n    /**\n     * Transition registration state.\n     */\n    stateTransition(newState) {\n        const invalidTransition = () => {\n            throw new Error(`Invalid state transition from ${this._state} to ${newState}`);\n        };\n        // Validate transition\n        switch (this._state) {\n            case _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Initial:\n                if (newState !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Registered &&\n                    newState !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Unregistered &&\n                    newState !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Registered:\n                if (newState !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Unregistered && newState !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Unregistered:\n                if (newState !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Registered && newState !== _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated:\n                invalidTransition();\n                break;\n            default:\n                throw new Error(\"Unrecognized state.\");\n        }\n        // Transition\n        this._state = newState;\n        this.logger.log(`Registration transitioned to state ${this._state}`);\n        this._stateEventEmitter.emit(this._state);\n        // Dispose\n        if (newState === _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated) {\n            this.dispose();\n        }\n    }\n    /** True if the registerer is currently waiting for final response to a REGISTER request. */\n    get waiting() {\n        return this._waiting;\n    }\n    /** Emits when the registerer waiting state changes. */\n    get waitingChange() {\n        return this._waitingEventEmitter;\n    }\n    /**\n     * Toggle waiting.\n     */\n    waitingToggle(waiting) {\n        if (this._waiting === waiting) {\n            throw new Error(`Invalid waiting transition from ${this._waiting} to ${waiting}`);\n        }\n        this._waiting = waiting;\n        this.logger.log(`Waiting toggled to ${this._waiting}`);\n        this._waitingEventEmitter.emit(this._waiting);\n    }\n    /** Hopefully helpful as the standard behavior has been found to be unexpected. */\n    waitingWarning() {\n        let message = \"An attempt was made to send a REGISTER request while a prior one was still in progress.\";\n        message += \" RFC 3261 requires UAs MUST NOT send a new registration until they have received a final response\";\n        message += \" from the registrar for the previous one or the previous REGISTER request has timed out.\";\n        message += \" Note that if the transport disconnects, you still must wait for the prior request to time out before\";\n        message +=\n            \" sending a new REGISTER request or alternatively dispose of the current Registerer and create a new Registerer.\";\n        this.logger.warn(message);\n    }\n    /** Hopefully helpful as the standard behavior has been found to be unexpected. */\n    stateError() {\n        const reason = this.state === _registerer_state_js__WEBPACK_IMPORTED_MODULE_0__.RegistererState.Terminated ? \"is in 'Terminated' state\" : \"has been disposed\";\n        let message = `An attempt was made to send a REGISTER request when the Registerer ${reason}.`;\n        message += \" The Registerer transitions to 'Terminated' when Registerer.dispose() is called.\";\n        message += \" Perhaps you called UserAgent.stop() which dipsoses of all Registerers?\";\n        this.logger.error(message);\n    }\n}\nRegisterer.defaultExpires = 600;\nRegisterer.defaultRefreshFrequency = 99;\n\n\n/***/ }),\n/* 44 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Subscriber\": () => (/* binding */ Subscriber)\n/* harmony export */ });\n/* harmony import */ var _core_messages_body_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(18);\n/* harmony import */ var _core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(30);\n/* harmony import */ var _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(47);\n/* harmony import */ var _core_user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(29);\n/* harmony import */ var _notification_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(33);\n/* harmony import */ var _subscription_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(45);\n/* harmony import */ var _subscription_state_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(46);\n\n\n\n\n\n\n\n/**\n * A subscriber establishes a {@link Subscription} (outgoing SUBSCRIBE).\n *\n * @remarks\n * This is (more or less) an implementation of a \"subscriber\" as\n * defined in RFC 6665 \"SIP-Specific Event Notifications\".\n * https://tools.ietf.org/html/rfc6665\n *\n * @example\n * ```ts\n * // Create a new subscriber.\n * const targetURI = new URI(\"sip\", \"alice\", \"example.com\");\n * const eventType = \"example-name\"; // https://www.iana.org/assignments/sip-events/sip-events.xhtml\n * const subscriber = new Subscriber(userAgent, targetURI, eventType);\n *\n * // Add delegate to handle event notifications.\n * subscriber.delegate = {\n *   onNotify: (notification: Notification) => {\n *     // send a response\n *     notification.accept();\n *     // handle notification here\n *   }\n * };\n *\n * // Monitor subscription state changes.\n * subscriber.stateChange.addListener((newState: SubscriptionState) => {\n *   if (newState === SubscriptionState.Terminated) {\n *     // handle state change here\n *   }\n * });\n *\n * // Attempt to establish the subscription\n * subscriber.subscribe();\n *\n * // Sometime later when done with subscription\n * subscriber.unsubscribe();\n * ```\n *\n * @public\n */\nclass Subscriber extends _subscription_js__WEBPACK_IMPORTED_MODULE_0__.Subscription {\n    /**\n     * Constructor.\n     * @param userAgent - User agent. See {@link UserAgent} for details.\n     * @param targetURI - The request URI identifying the subscribed event.\n     * @param eventType - The event type identifying the subscribed event.\n     * @param options - Options bucket. See {@link SubscriberOptions} for details.\n     */\n    constructor(userAgent, targetURI, eventType, options = {}) {\n        super(userAgent, options);\n        this.body = undefined;\n        this.logger = userAgent.getLogger(\"sip.Subscriber\");\n        if (options.body) {\n            this.body = {\n                body: options.body,\n                contentType: options.contentType ? options.contentType : \"application/sdp\"\n            };\n        }\n        this.targetURI = targetURI;\n        // Subscription event\n        this.event = eventType;\n        // Subscription expires\n        if (options.expires === undefined) {\n            this.expires = 3600;\n        }\n        else if (typeof options.expires !== \"number\") {\n            // pre-typescript type guard\n            this.logger.warn(`Option \"expires\" must be a number. Using default of 3600.`);\n            this.expires = 3600;\n        }\n        else {\n            this.expires = options.expires;\n        }\n        // Subscription extra headers\n        this.extraHeaders = (options.extraHeaders || []).slice();\n        // Subscription context.\n        this.subscriberRequest = this.initSubscriberRequest();\n        this.outgoingRequestMessage = this.subscriberRequest.message;\n        // Add to UserAgent's collection\n        this.id = this.outgoingRequestMessage.callId + this.outgoingRequestMessage.from.parameters.tag + this.event;\n        this._userAgent._subscriptions[this.id] = this;\n    }\n    /**\n     * Destructor.\n     * @internal\n     */\n    dispose() {\n        if (this.disposed) {\n            return Promise.resolve();\n        }\n        this.logger.log(`Subscription ${this.id} in state ${this.state} is being disposed`);\n        // Remove from the user agent's subscription collection\n        delete this._userAgent._subscriptions[this.id];\n        // Clear timers\n        if (this.retryAfterTimer) {\n            clearTimeout(this.retryAfterTimer);\n            this.retryAfterTimer = undefined;\n        }\n        // Dispose subscriber request\n        this.subscriberRequest.dispose();\n        // Make sure to dispose of our parent, then unsubscribe the\n        // subscription dialog (if need be) and resolve when it has terminated.\n        return super.dispose().then(() => {\n            // If we have never subscribed there is nothing to wait on.\n            // If we are already transitioned to terminated there is no need to unsubscribe again.\n            if (this.state !== _subscription_state_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState.Subscribed) {\n                return;\n            }\n            if (!this._dialog) {\n                throw new Error(\"Dialog undefined.\");\n            }\n            if (this._dialog.subscriptionState === _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Pending ||\n                this._dialog.subscriptionState === _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Active) {\n                const dialog = this._dialog;\n                // eslint-disable-next-line @typescript-eslint/no-unused-vars\n                return new Promise((resolve, reject) => {\n                    dialog.delegate = {\n                        onTerminated: () => resolve()\n                    };\n                    dialog.unsubscribe();\n                });\n            }\n        });\n    }\n    /**\n     * Subscribe to event notifications.\n     *\n     * @remarks\n     * Send an initial SUBSCRIBE request if no subscription as been established.\n     * Sends a re-SUBSCRIBE request if the subscription is \"active\".\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    subscribe(options = {}) {\n        switch (this.subscriberRequest.state) {\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Initial:\n                // we can end up here when retrying so only state transition if in SubscriptionState.Initial state\n                if (this.state === _subscription_state_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState.Initial) {\n                    this.stateTransition(_subscription_state_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState.NotifyWait);\n                }\n                this.subscriberRequest.subscribe().then((result) => {\n                    if (result.success) {\n                        if (result.success.subscription) {\n                            this._dialog = result.success.subscription;\n                            this._dialog.delegate = {\n                                onNotify: (request) => this.onNotify(request),\n                                onRefresh: (request) => this.onRefresh(request),\n                                onTerminated: () => {\n                                    // If a call to unsubscribe will state transition to SubscriptionState.Terminated,\n                                    // but we can end up here after that if the NOTIFY never arrives and timer N fires.\n                                    if (this.state !== _subscription_state_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState.Terminated) {\n                                        this.stateTransition(_subscription_state_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState.Terminated);\n                                    }\n                                }\n                            };\n                        }\n                        this.onNotify(result.success.request);\n                    }\n                    else if (result.failure) {\n                        this.unsubscribe();\n                    }\n                });\n                break;\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.NotifyWait:\n                break;\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Pending:\n                break;\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Active:\n                if (this._dialog) {\n                    const request = this._dialog.refresh();\n                    request.delegate = {\n                        onAccept: (response) => this.onAccepted(response),\n                        // eslint-disable-next-line @typescript-eslint/no-unused-vars\n                        onRedirect: (response) => this.unsubscribe(),\n                        // eslint-disable-next-line @typescript-eslint/no-unused-vars\n                        onReject: (response) => this.unsubscribe()\n                    };\n                }\n                break;\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Terminated:\n                break;\n            default:\n                break;\n        }\n        return Promise.resolve();\n    }\n    /**\n     * {@inheritDoc Subscription.unsubscribe}\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    unsubscribe(options = {}) {\n        if (this.disposed) {\n            return Promise.resolve();\n        }\n        switch (this.subscriberRequest.state) {\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Initial:\n                break;\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.NotifyWait:\n                break;\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Pending:\n                if (this._dialog) {\n                    this._dialog.unsubscribe();\n                    // responses intentionally ignored\n                }\n                break;\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Active:\n                if (this._dialog) {\n                    this._dialog.unsubscribe();\n                    // responses intentionally ignored\n                }\n                break;\n            case _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Terminated:\n                break;\n            default:\n                throw new Error(\"Unknown state.\");\n        }\n        this.stateTransition(_subscription_state_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState.Terminated);\n        return Promise.resolve();\n    }\n    /**\n     * Sends a re-SUBSCRIBE request if the subscription is \"active\".\n     * @deprecated Use `subscribe` instead.\n     * @internal\n     */\n    _refresh() {\n        if (this.subscriberRequest.state === _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Active) {\n            return this.subscribe();\n        }\n        return Promise.resolve();\n    }\n    /** @internal */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    onAccepted(response) {\n        // NOTE: If you think you should do something with this response,\n        // please make sure you understand what it is you are doing and why.\n        // Per the RFC, the first NOTIFY is all that actually matters.\n    }\n    /** @internal */\n    onNotify(request) {\n        // If we've set state to done, no further processing should take place\n        // and we are only interested in cleaning up after the appropriate NOTIFY.\n        if (this.disposed) {\n            request.accept();\n            return;\n        }\n        // State transition if needed.\n        if (this.state !== _subscription_state_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState.Subscribed) {\n            this.stateTransition(_subscription_state_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState.Subscribed);\n        }\n        // Delegate notification.\n        if (this.delegate && this.delegate.onNotify) {\n            const notification = new _notification_js__WEBPACK_IMPORTED_MODULE_3__.Notification(request);\n            this.delegate.onNotify(notification);\n        }\n        else {\n            request.accept();\n        }\n        //  If the \"Subscription-State\" value is SubscriptionState.Terminated, the subscriber\n        //  MUST consider the subscription terminated.  The \"expires\" parameter\n        //  has no semantics for SubscriptionState.Terminated -- notifiers SHOULD NOT include an\n        //  \"expires\" parameter on a \"Subscription-State\" header field with a\n        //  value of SubscriptionState.Terminated, and subscribers MUST ignore any such\n        //  parameter, if present.  If a reason code is present, the client\n        //  should behave as described below.  If no reason code or an unknown\n        //  reason code is present, the client MAY attempt to re-subscribe at any\n        //  time (unless a \"retry-after\" parameter is present, in which case the\n        //  client SHOULD NOT attempt re-subscription until after the number of\n        //  seconds specified by the \"retry-after\" parameter).  The reason codes\n        //  defined by this document are:\n        // https://tools.ietf.org/html/rfc6665#section-4.1.3\n        const subscriptionState = request.message.parseHeader(\"Subscription-State\");\n        if (subscriptionState && subscriptionState.state) {\n            switch (subscriptionState.state) {\n                case \"terminated\":\n                    if (subscriptionState.reason) {\n                        this.logger.log(`Terminated subscription with reason ${subscriptionState.reason}`);\n                        switch (subscriptionState.reason) {\n                            case \"deactivated\":\n                            case \"timeout\":\n                                this.initSubscriberRequest();\n                                this.subscribe();\n                                return;\n                            case \"probation\":\n                            case \"giveup\":\n                                this.initSubscriberRequest();\n                                if (subscriptionState.params && subscriptionState.params[\"retry-after\"]) {\n                                    this.retryAfterTimer = setTimeout(() => {\n                                        this.subscribe();\n                                    }, subscriptionState.params[\"retry-after\"]);\n                                }\n                                else {\n                                    this.subscribe();\n                                }\n                                return;\n                            case \"rejected\":\n                            case \"noresource\":\n                            case \"invariant\":\n                                break;\n                        }\n                    }\n                    this.unsubscribe();\n                    break;\n                default:\n                    break;\n            }\n        }\n    }\n    /** @internal */\n    onRefresh(request) {\n        request.delegate = {\n            onAccept: (response) => this.onAccepted(response)\n        };\n    }\n    initSubscriberRequest() {\n        const options = {\n            extraHeaders: this.extraHeaders,\n            body: this.body ? (0,_core_messages_body_js__WEBPACK_IMPORTED_MODULE_4__.fromBodyLegacy)(this.body) : undefined\n        };\n        // eslint-disable-next-line @typescript-eslint/no-use-before-define\n        this.subscriberRequest = new SubscriberRequest(this._userAgent.userAgentCore, this.targetURI, this.event, this.expires, options);\n        this.subscriberRequest.delegate = {\n            onAccept: (response) => this.onAccepted(response)\n        };\n        return this.subscriberRequest;\n    }\n}\nclass SubscriberRequest {\n    constructor(core, target, event, expires, options, delegate) {\n        this.core = core;\n        this.target = target;\n        this.event = event;\n        this.expires = expires;\n        this.subscribed = false;\n        this.logger = core.loggerFactory.getLogger(\"sip.Subscriber\");\n        this.delegate = delegate;\n        const allowHeader = \"Allow: \" + _core_user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_5__.AllowedMethods.toString();\n        const extraHeaders = ((options && options.extraHeaders) || []).slice();\n        extraHeaders.push(allowHeader);\n        extraHeaders.push(\"Event: \" + this.event);\n        extraHeaders.push(\"Expires: \" + this.expires);\n        extraHeaders.push(\"Contact: \" + this.core.configuration.contact.toString());\n        const body = options && options.body;\n        this.message = core.makeOutgoingRequestMessage(_core_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_6__.C.SUBSCRIBE, this.target, this.core.configuration.aor, this.target, {}, extraHeaders, body);\n    }\n    /** Destructor. */\n    dispose() {\n        if (this.request) {\n            this.request.waitNotifyStop();\n            this.request.dispose();\n            this.request = undefined;\n        }\n    }\n    /** Subscription state. */\n    get state() {\n        if (this.subscription) {\n            return this.subscription.subscriptionState;\n        }\n        else if (this.subscribed) {\n            return _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.NotifyWait;\n        }\n        else {\n            return _core_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Initial;\n        }\n    }\n    /**\n     * Establish subscription.\n     * @param options Options bucket.\n     */\n    subscribe() {\n        if (this.subscribed) {\n            return Promise.reject(new Error(\"Not in initial state. Did you call subscribe more than once?\"));\n        }\n        this.subscribed = true;\n        return new Promise((resolve) => {\n            if (!this.message) {\n                throw new Error(\"Message undefined.\");\n            }\n            this.request = this.core.subscribe(this.message, {\n                // This SUBSCRIBE request will be confirmed with a final response.\n                // 200-class responses indicate that the subscription has been accepted\n                // and that a NOTIFY request will be sent immediately.\n                // https://tools.ietf.org/html/rfc6665#section-4.1.2.1\n                onAccept: (response) => {\n                    if (this.delegate && this.delegate.onAccept) {\n                        this.delegate.onAccept(response);\n                    }\n                },\n                // Due to the potential for out-of-order messages, packet loss, and\n                // forking, the subscriber MUST be prepared to receive NOTIFY requests\n                // before the SUBSCRIBE transaction has completed.\n                // https://tools.ietf.org/html/rfc6665#section-4.1.2.4\n                onNotify: (requestWithSubscription) => {\n                    this.subscription = requestWithSubscription.subscription;\n                    if (this.subscription) {\n                        this.subscription.autoRefresh = true;\n                    }\n                    resolve({ success: requestWithSubscription });\n                },\n                // If this Timer N expires prior to the receipt of a NOTIFY request,\n                // the subscriber considers the subscription failed, and cleans up\n                // any state associated with the subscription attempt.\n                // https://tools.ietf.org/html/rfc6665#section-4.1.2.4\n                onNotifyTimeout: () => {\n                    resolve({ failure: {} });\n                },\n                // This SUBSCRIBE request will be confirmed with a final response.\n                // Non-200-class final responses indicate that no subscription or new\n                // dialog usage has been created, and no subsequent NOTIFY request will\n                // be sent.\n                // https://tools.ietf.org/html/rfc6665#section-4.1.2.1\n                onRedirect: (response) => {\n                    resolve({ failure: { response } });\n                },\n                // This SUBSCRIBE request will be confirmed with a final response.\n                // Non-200-class final responses indicate that no subscription or new\n                // dialog usage has been created, and no subsequent NOTIFY request will\n                // be sent.\n                // https://tools.ietf.org/html/rfc6665#section-4.1.2.1\n                onReject: (response) => {\n                    resolve({ failure: { response } });\n                }\n            });\n        });\n    }\n}\n\n\n/***/ }),\n/* 45 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Subscription\": () => (/* binding */ Subscription)\n/* harmony export */ });\n/* harmony import */ var _emitter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(13);\n/* harmony import */ var _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(46);\n\n\n/**\n * A subscription provides {@link Notification} of events.\n *\n * @remarks\n * See {@link Subscriber} for details on establishing a subscription.\n *\n * @public\n */\nclass Subscription {\n    /**\n     * Constructor.\n     * @param userAgent - User agent. See {@link UserAgent} for details.\n     * @internal\n     */\n    constructor(userAgent, options = {}) {\n        this._disposed = false;\n        this._state = _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Initial;\n        this._logger = userAgent.getLogger(\"sip.Subscription\");\n        this._stateEventEmitter = new _emitter_js__WEBPACK_IMPORTED_MODULE_1__.EmitterImpl();\n        this._userAgent = userAgent;\n        this.delegate = options.delegate;\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        if (this._disposed) {\n            return Promise.resolve();\n        }\n        this._disposed = true;\n        this._stateEventEmitter.removeAllListeners();\n        return Promise.resolve();\n    }\n    /**\n     * The subscribed subscription dialog.\n     */\n    get dialog() {\n        return this._dialog;\n    }\n    /**\n     * True if disposed.\n     * @internal\n     */\n    get disposed() {\n        return this._disposed;\n    }\n    /**\n     * Subscription state. See {@link SubscriptionState} for details.\n     */\n    get state() {\n        return this._state;\n    }\n    /**\n     * Emits when the subscription `state` property changes.\n     */\n    get stateChange() {\n        return this._stateEventEmitter;\n    }\n    /** @internal */\n    stateTransition(newState) {\n        const invalidTransition = () => {\n            throw new Error(`Invalid state transition from ${this._state} to ${newState}`);\n        };\n        // Validate transition\n        switch (this._state) {\n            case _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Initial:\n                if (newState !== _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.NotifyWait && newState !== _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.NotifyWait:\n                if (newState !== _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Subscribed && newState !== _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Subscribed:\n                if (newState !== _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Terminated) {\n                    invalidTransition();\n                }\n                break;\n            case _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Terminated:\n                invalidTransition();\n                break;\n            default:\n                throw new Error(\"Unrecognized state.\");\n        }\n        // Guard against duplicate transition\n        if (this._state === newState) {\n            return;\n        }\n        // Transition\n        this._state = newState;\n        this._logger.log(`Subscription ${this._dialog ? this._dialog.id : undefined} transitioned to ${this._state}`);\n        this._stateEventEmitter.emit(this._state);\n        // Dispose\n        if (newState === _subscription_state_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState.Terminated) {\n            this.dispose();\n        }\n    }\n}\n\n\n/***/ }),\n/* 46 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SubscriptionState\": () => (/* binding */ SubscriptionState)\n/* harmony export */ });\n/**\n * {@link Subscription} state.\n * @remarks\n * The {@link Subscription} behaves in a deterministic manner according to the following\n * Finite State Machine (FSM).\n * ```txt\n *                    _______________________________________\n * Subscription      |                                       v\n * Constructed -> Initial -> NotifyWait -> Subscribed -> Terminated\n *                              |____________________________^\n * ```\n * @public\n */\nvar SubscriptionState;\n(function (SubscriptionState) {\n    SubscriptionState[\"Initial\"] = \"Initial\";\n    SubscriptionState[\"NotifyWait\"] = \"NotifyWait\";\n    SubscriptionState[\"Subscribed\"] = \"Subscribed\";\n    SubscriptionState[\"Terminated\"] = \"Terminated\";\n})(SubscriptionState = SubscriptionState || (SubscriptionState = {}));\n\n\n/***/ }),\n/* 47 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SubscriptionState\": () => (/* binding */ SubscriptionState)\n/* harmony export */ });\n/**\n * Subscription state.\n * @remarks\n * https://tools.ietf.org/html/rfc6665#section-4.1.2\n * @public\n */\nvar SubscriptionState;\n(function (SubscriptionState) {\n    SubscriptionState[\"Initial\"] = \"Initial\";\n    SubscriptionState[\"NotifyWait\"] = \"NotifyWait\";\n    SubscriptionState[\"Pending\"] = \"Pending\";\n    SubscriptionState[\"Active\"] = \"Active\";\n    SubscriptionState[\"Terminated\"] = \"Terminated\";\n})(SubscriptionState = SubscriptionState || (SubscriptionState = {}));\n\n\n/***/ }),\n/* 48 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"TransportState\": () => (/* binding */ TransportState)\n/* harmony export */ });\n/**\n * {@link Transport} state.\n *\n * @remarks\n * The {@link Transport} behaves in a deterministic manner according to the following\n * Finite State Machine (FSM).\n * ```txt\n *                    ______________________________\n *                   |    ____________              |\n * Transport         v   v            |             |\n * Constructed -> Disconnected -> Connecting -> Connected -> Disconnecting\n *                     ^            ^    |_____________________^  |  |\n *                     |            |_____________________________|  |\n *                     |_____________________________________________|\n * ```\n * @public\n */\nvar TransportState;\n(function (TransportState) {\n    /**\n     * The `connect()` method was called.\n     */\n    TransportState[\"Connecting\"] = \"Connecting\";\n    /**\n     * The `connect()` method resolved.\n     */\n    TransportState[\"Connected\"] = \"Connected\";\n    /**\n     * The `disconnect()` method was called.\n     */\n    TransportState[\"Disconnecting\"] = \"Disconnecting\";\n    /**\n     * The `connect()` method was rejected, or\n     * the `disconnect()` method completed, or\n     * network connectivity was lost.\n     */\n    TransportState[\"Disconnected\"] = \"Disconnected\";\n})(TransportState = TransportState || (TransportState = {}));\n\n\n/***/ }),\n/* 49 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"UserAgentState\": () => (/* binding */ UserAgentState)\n/* harmony export */ });\n/**\n * {@link UserAgent} state.\n * @remarks\n * Valid state transitions:\n * ```\n * 1. \"Started\" --> \"Stopped\"\n * 2. \"Stopped\" --> \"Started\"\n * ```\n * @public\n */\nvar UserAgentState;\n(function (UserAgentState) {\n    UserAgentState[\"Started\"] = \"Started\";\n    UserAgentState[\"Stopped\"] = \"Stopped\";\n})(UserAgentState = UserAgentState || (UserAgentState = {}));\n\n\n/***/ }),\n/* 50 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"UserAgent\": () => (/* binding */ UserAgent)\n/* harmony export */ });\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(22);\n/* harmony import */ var _grammar_uri_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(24);\n/* harmony import */ var _core_messages_digest_authentication_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(59);\n/* harmony import */ var _core_messages_incoming_request_message_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(19);\n/* harmony import */ var _core_messages_incoming_response_message_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(27);\n/* harmony import */ var _core_log_levels_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(52);\n/* harmony import */ var _core_log_logger_factory_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(51);\n/* harmony import */ var _core_messages_parser_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(99);\n/* harmony import */ var _core_user_agent_core_user_agent_core_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(61);\n/* harmony import */ var _core_messages_utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(21);\n/* harmony import */ var _platform_web_session_description_handler_session_description_handler_factory_default_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(54);\n/* harmony import */ var _platform_web_transport_transport_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(58);\n/* harmony import */ var _version_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(1);\n/* harmony import */ var _emitter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(13);\n/* harmony import */ var _invitation_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(15);\n/* harmony import */ var _inviter_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(38);\n/* harmony import */ var _message_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(32);\n/* harmony import */ var _notification_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(33);\n/* harmony import */ var _user_agent_options_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(35);\n/* harmony import */ var _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(49);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * A user agent sends and receives requests using a `Transport`.\n *\n * @remarks\n * A user agent (UA) is associated with a user via the user's SIP address of record (AOR)\n * and acts on behalf of that user to send and receive SIP requests. The user agent can\n * register to receive incoming requests, as well as create and send outbound messages.\n * The user agent also maintains the Transport over which its signaling travels.\n *\n * @public\n */\nclass UserAgent {\n    /**\n     * Constructs a new instance of the `UserAgent` class.\n     * @param options - Options bucket. See {@link UserAgentOptions} for details.\n     */\n    constructor(options = {}) {\n        /** @internal */\n        this._publishers = {};\n        /** @internal */\n        this._registerers = {};\n        /** @internal */\n        this._sessions = {};\n        /** @internal */\n        this._subscriptions = {};\n        this._state = _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped;\n        // state emitter\n        this._stateEventEmitter = new _emitter_js__WEBPACK_IMPORTED_MODULE_1__.EmitterImpl();\n        // initialize delegate\n        this.delegate = options.delegate;\n        // initialize configuration\n        this.options = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, UserAgent.defaultOptions()), { sipjsId: (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_2__.createRandomToken)(5) }), { uri: new _grammar_uri_js__WEBPACK_IMPORTED_MODULE_3__.URI(\"sip\", \"anonymous.\" + (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_2__.createRandomToken)(6), \"anonymous.invalid\") }), { viaHost: (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_2__.createRandomToken)(12) + \".invalid\" }), UserAgent.stripUndefinedProperties(options));\n        // viaHost is hack\n        if (this.options.hackIpInContact) {\n            if (typeof this.options.hackIpInContact === \"boolean\" && this.options.hackIpInContact) {\n                const from = 1;\n                const to = 254;\n                const octet = Math.floor(Math.random() * (to - from + 1) + from);\n                // random Test-Net IP (http://tools.ietf.org/html/rfc5735)\n                this.options.viaHost = \"192.0.2.\" + octet;\n            }\n            else if (this.options.hackIpInContact) {\n                this.options.viaHost = this.options.hackIpInContact;\n            }\n        }\n        // initialize logger & logger factory\n        this.loggerFactory = new _core_log_logger_factory_js__WEBPACK_IMPORTED_MODULE_4__.LoggerFactory();\n        this.logger = this.loggerFactory.getLogger(\"sip.UserAgent\");\n        this.loggerFactory.builtinEnabled = this.options.logBuiltinEnabled;\n        this.loggerFactory.connector = this.options.logConnector;\n        switch (this.options.logLevel) {\n            case \"error\":\n                this.loggerFactory.level = _core_log_levels_js__WEBPACK_IMPORTED_MODULE_5__.Levels.error;\n                break;\n            case \"warn\":\n                this.loggerFactory.level = _core_log_levels_js__WEBPACK_IMPORTED_MODULE_5__.Levels.warn;\n                break;\n            case \"log\":\n                this.loggerFactory.level = _core_log_levels_js__WEBPACK_IMPORTED_MODULE_5__.Levels.log;\n                break;\n            case \"debug\":\n                this.loggerFactory.level = _core_log_levels_js__WEBPACK_IMPORTED_MODULE_5__.Levels.debug;\n                break;\n            default:\n                break;\n        }\n        if (this.options.logConfiguration) {\n            this.logger.log(\"Configuration:\");\n            Object.keys(this.options).forEach((key) => {\n                // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                const value = this.options[key];\n                switch (key) {\n                    case \"uri\":\n                    case \"sessionDescriptionHandlerFactory\":\n                        this.logger.log(\"· \" + key + \": \" + value);\n                        break;\n                    case \"authorizationPassword\":\n                        this.logger.log(\"· \" + key + \": \" + \"NOT SHOWN\");\n                        break;\n                    case \"transportConstructor\":\n                        this.logger.log(\"· \" + key + \": \" + value.name);\n                        break;\n                    default:\n                        this.logger.log(\"· \" + key + \": \" + JSON.stringify(value));\n                }\n            });\n        }\n        // guard deprecated transport options (remove this in version 16.x)\n        if (this.options.transportOptions) {\n            // eslint-disable-next-line @typescript-eslint/no-explicit-any\n            const optionsDeprecated = this.options.transportOptions;\n            const maxReconnectionAttemptsDeprecated = optionsDeprecated.maxReconnectionAttempts;\n            const reconnectionTimeoutDeprecated = optionsDeprecated.reconnectionTimeout;\n            if (maxReconnectionAttemptsDeprecated !== undefined) {\n                const deprecatedMessage = `The transport option \"maxReconnectionAttempts\" as has apparently been specified and has been deprecated. ` +\n                    \"It will no longer be available starting with SIP.js release 0.16.0. Please update accordingly.\";\n                this.logger.warn(deprecatedMessage);\n            }\n            if (reconnectionTimeoutDeprecated !== undefined) {\n                const deprecatedMessage = `The transport option \"reconnectionTimeout\" as has apparently been specified and has been deprecated. ` +\n                    \"It will no longer be available starting with SIP.js release 0.16.0. Please update accordingly.\";\n                this.logger.warn(deprecatedMessage);\n            }\n            // hack\n            if (options.reconnectionDelay === undefined && reconnectionTimeoutDeprecated !== undefined) {\n                this.options.reconnectionDelay = reconnectionTimeoutDeprecated;\n            }\n            if (options.reconnectionAttempts === undefined && maxReconnectionAttemptsDeprecated !== undefined) {\n                this.options.reconnectionAttempts = maxReconnectionAttemptsDeprecated;\n            }\n        }\n        // guard deprecated user agent options (remove this in version 16.x)\n        if (options.reconnectionDelay !== undefined) {\n            const deprecatedMessage = `The user agent option \"reconnectionDelay\" as has apparently been specified and has been deprecated. ` +\n                \"It will no longer be available starting with SIP.js release 0.16.0. Please update accordingly.\";\n            this.logger.warn(deprecatedMessage);\n        }\n        if (options.reconnectionAttempts !== undefined) {\n            const deprecatedMessage = `The user agent option \"reconnectionAttempts\" as has apparently been specified and has been deprecated. ` +\n                \"It will no longer be available starting with SIP.js release 0.16.0. Please update accordingly.\";\n            this.logger.warn(deprecatedMessage);\n        }\n        // Initialize Transport\n        this._transport = new this.options.transportConstructor(this.getLogger(\"sip.Transport\"), this.options.transportOptions);\n        this.initTransportCallbacks();\n        // Initialize Contact\n        this._contact = this.initContact();\n        // Set instance id\n        this._instanceId = this.options.instanceId ? this.options.instanceId : UserAgent.newUUID();\n        if (_grammar_grammar_js__WEBPACK_IMPORTED_MODULE_6__.Grammar.parse(this._instanceId, \"uuid\") === -1) {\n            throw new Error(\"Invalid instanceId.\");\n        }\n        // Initialize UserAgentCore\n        this._userAgentCore = this.initCore();\n    }\n    /**\n     * Create a URI instance from a string.\n     * @param uri - The string to parse.\n     *\n     * @remarks\n     * Returns undefined if the syntax of the URI is invalid.\n     * The syntax must conform to a SIP URI as defined in the RFC.\n     * 25 Augmented BNF for the SIP Protocol\n     * https://tools.ietf.org/html/rfc3261#section-25\n     *\n     * @example\n     * ```ts\n     * const uri = UserAgent.makeURI(\"sip:edgar@example.com\");\n     * ```\n     */\n    static makeURI(uri) {\n        return _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_6__.Grammar.URIParse(uri);\n    }\n    /** Default user agent options. */\n    static defaultOptions() {\n        return {\n            allowLegacyNotifications: false,\n            authorizationHa1: \"\",\n            authorizationPassword: \"\",\n            authorizationUsername: \"\",\n            delegate: {},\n            contactName: \"\",\n            contactParams: { transport: \"ws\" },\n            displayName: \"\",\n            forceRport: false,\n            gracefulShutdown: true,\n            hackAllowUnregisteredOptionTags: false,\n            hackIpInContact: false,\n            hackViaTcp: false,\n            instanceId: \"\",\n            instanceIdAlwaysAdded: false,\n            logBuiltinEnabled: true,\n            logConfiguration: true,\n            logConnector: () => {\n                /* noop */\n            },\n            logLevel: \"log\",\n            noAnswerTimeout: 60,\n            preloadedRouteSet: [],\n            reconnectionAttempts: 0,\n            reconnectionDelay: 4,\n            sendInitialProvisionalResponse: true,\n            sessionDescriptionHandlerFactory: (0,_platform_web_session_description_handler_session_description_handler_factory_default_js__WEBPACK_IMPORTED_MODULE_7__.defaultSessionDescriptionHandlerFactory)(),\n            sessionDescriptionHandlerFactoryOptions: {},\n            sipExtension100rel: _user_agent_options_js__WEBPACK_IMPORTED_MODULE_8__.SIPExtension.Unsupported,\n            sipExtensionReplaces: _user_agent_options_js__WEBPACK_IMPORTED_MODULE_8__.SIPExtension.Unsupported,\n            sipExtensionExtraSupported: [],\n            sipjsId: \"\",\n            transportConstructor: _platform_web_transport_transport_js__WEBPACK_IMPORTED_MODULE_9__.Transport,\n            transportOptions: {},\n            uri: new _grammar_uri_js__WEBPACK_IMPORTED_MODULE_3__.URI(\"sip\", \"anonymous\", \"anonymous.invalid\"),\n            userAgentString: \"SIP.js/\" + _version_js__WEBPACK_IMPORTED_MODULE_10__.LIBRARY_VERSION,\n            viaHost: \"\"\n        };\n    }\n    // http://stackoverflow.com/users/109538/broofa\n    static newUUID() {\n        const UUID = \"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g, (c) => {\n            const r = Math.floor(Math.random() * 16);\n            const v = c === \"x\" ? r : (r % 4) + 8;\n            return v.toString(16);\n        });\n        return UUID;\n    }\n    /**\n     * Strip properties with undefined values from options.\n     * This is a work around while waiting for missing vs undefined to be addressed (or not)...\n     * https://github.com/Microsoft/TypeScript/issues/13195\n     * @param options - Options to reduce\n     */\n    static stripUndefinedProperties(options) {\n        return Object.keys(options).reduce((object, key) => {\n            // eslint-disable-next-line @typescript-eslint/no-explicit-any\n            if (options[key] !== undefined) {\n                // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                object[key] = options[key];\n            }\n            return object;\n        }, {});\n    }\n    /**\n     * User agent configuration.\n     */\n    get configuration() {\n        return this.options;\n    }\n    /**\n     * User agent contact.\n     */\n    get contact() {\n        return this._contact;\n    }\n    /**\n     * User agent instance id.\n     */\n    get instanceId() {\n        return this._instanceId;\n    }\n    /**\n     * User agent state.\n     */\n    get state() {\n        return this._state;\n    }\n    /**\n     * User agent state change emitter.\n     */\n    get stateChange() {\n        return this._stateEventEmitter;\n    }\n    /**\n     * User agent transport.\n     */\n    get transport() {\n        return this._transport;\n    }\n    /**\n     * User agent core.\n     */\n    get userAgentCore() {\n        return this._userAgentCore;\n    }\n    /**\n     * The logger.\n     */\n    getLogger(category, label) {\n        return this.loggerFactory.getLogger(category, label);\n    }\n    /**\n     * The logger factory.\n     */\n    getLoggerFactory() {\n        return this.loggerFactory;\n    }\n    /**\n     * True if transport is connected.\n     */\n    isConnected() {\n        return this.transport.isConnected();\n    }\n    /**\n     * Reconnect the transport.\n     */\n    reconnect() {\n        if (this.state === _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped) {\n            return Promise.reject(new Error(\"User agent stopped.\"));\n        }\n        // Make sure we don't call synchronously\n        return Promise.resolve().then(() => this.transport.connect());\n    }\n    /**\n     * Start the user agent.\n     *\n     * @remarks\n     * Resolves if transport connects, otherwise rejects.\n     * Calling `start()` after calling `stop()` will fail if `stop()` has yet to resolve.\n     *\n     * @example\n     * ```ts\n     * userAgent.start()\n     *   .then(() => {\n     *     // userAgent.isConnected() === true\n     *   })\n     *   .catch((error: Error) => {\n     *     // userAgent.isConnected() === false\n     *   });\n     * ```\n     */\n    start() {\n        if (this.state === _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Started) {\n            this.logger.warn(`User agent already started`);\n            return Promise.resolve();\n        }\n        this.logger.log(`Starting ${this.configuration.uri}`);\n        // Transition state\n        this.transitionState(_user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Started);\n        return this.transport.connect();\n    }\n    /**\n     * Stop the user agent.\n     *\n     * @remarks\n     * Resolves when the user agent has completed a graceful shutdown.\n     * ```txt\n     * 1) Sessions terminate.\n     * 2) Registerers unregister.\n     * 3) Subscribers unsubscribe.\n     * 4) Publishers unpublish.\n     * 5) Transport disconnects.\n     * 6) User Agent Core resets.\n     * ```\n     * The user agent state transistions to stopped once these steps have been completed.\n     * Calling `start()` after calling `stop()` will fail if `stop()` has yet to resolve.\n     *\n     * NOTE: While this is a \"graceful shutdown\", it can also be very slow one if you\n     * are waiting for the returned Promise to resolve. The disposal of the clients and\n     * dialogs is done serially - waiting on one to finish before moving on to the next.\n     * This can be slow if there are lot of subscriptions to unsubscribe for example.\n     *\n     * THE SLOW PACE IS INTENTIONAL!\n     * While one could spin them all down in parallel, this could slam the remote server.\n     * It is bad practice to denial of service attack (DoS attack) servers!!!\n     * Moreover, production servers will automatically blacklist clients which send too\n     * many requests in too short a period of time - dropping any additional requests.\n     *\n     * If a different approach to disposing is needed, one can implement whatever is\n     * needed and execute that prior to calling `stop()`. Alternatively one may simply\n     * not wait for the Promise returned by `stop()` to complete.\n     */\n    async stop() {\n        if (this.state === _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped) {\n            this.logger.warn(`User agent already stopped`);\n            return Promise.resolve();\n        }\n        this.logger.log(`Stopping ${this.configuration.uri}`);\n        // The default behavior is to cleanup dialogs and registrations. This is not that...\n        if (!this.options.gracefulShutdown) {\n            // Dispose of the transport (disconnecting)\n            this.logger.log(`Dispose of transport`);\n            this.transport.dispose().catch((error) => {\n                this.logger.error(error.message);\n                throw error;\n            });\n            // Dispose of the user agent core (resetting)\n            this.logger.log(`Dispose of core`);\n            this.userAgentCore.dispose();\n            // Reset dialogs and registrations\n            this._publishers = {};\n            this._registerers = {};\n            this._sessions = {};\n            this._subscriptions = {};\n            this.transitionState(_user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped);\n            return Promise.resolve();\n        }\n        // Be careful here to use a local references as start() can be called\n        // again before we complete and we don't want to touch new clients\n        // and we don't want to step on the new instances (or vice versa).\n        const publishers = Object.assign({}, this._publishers);\n        const registerers = Object.assign({}, this._registerers);\n        const sessions = Object.assign({}, this._sessions);\n        const subscriptions = Object.assign({}, this._subscriptions);\n        const transport = this.transport;\n        const userAgentCore = this.userAgentCore;\n        //\n        // At this point we have completed the state transition and everything\n        // following will effectively run async and MUST NOT cause any issues\n        // if UserAgent.start() is called while the following code continues.\n        //\n        // TODO: Minor optimization.\n        // The disposal in all cases involves, in part, sending messages which\n        // is not worth doing if the transport is not connected as we know attempting\n        // to send messages will be futile. But none of these disposal methods check\n        // if that's is the case and it would be easy for them to do so at this point.\n        // Dispose of Registerers\n        this.logger.log(`Dispose of registerers`);\n        for (const id in registerers) {\n            if (registerers[id]) {\n                await registerers[id].dispose().catch((error) => {\n                    this.logger.error(error.message);\n                    delete this._registerers[id];\n                    throw error;\n                });\n            }\n        }\n        // Dispose of Sessions\n        this.logger.log(`Dispose of sessions`);\n        for (const id in sessions) {\n            if (sessions[id]) {\n                await sessions[id].dispose().catch((error) => {\n                    this.logger.error(error.message);\n                    delete this._sessions[id];\n                    throw error;\n                });\n            }\n        }\n        // Dispose of Subscriptions\n        this.logger.log(`Dispose of subscriptions`);\n        for (const id in subscriptions) {\n            if (subscriptions[id]) {\n                await subscriptions[id].dispose().catch((error) => {\n                    this.logger.error(error.message);\n                    delete this._subscriptions[id];\n                    throw error;\n                });\n            }\n        }\n        // Dispose of Publishers\n        this.logger.log(`Dispose of publishers`);\n        for (const id in publishers) {\n            if (publishers[id]) {\n                await publishers[id].dispose().catch((error) => {\n                    this.logger.error(error.message);\n                    delete this._publishers[id];\n                    throw error;\n                });\n            }\n        }\n        // Dispose of the transport (disconnecting)\n        this.logger.log(`Dispose of transport`);\n        await transport.dispose().catch((error) => {\n            this.logger.error(error.message);\n            throw error;\n        });\n        // Dispose of the user agent core (resetting)\n        this.logger.log(`Dispose of core`);\n        userAgentCore.dispose();\n        // Transition state\n        this.transitionState(_user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped);\n    }\n    /**\n     * Used to avoid circular references.\n     * @internal\n     */\n    _makeInviter(targetURI, options) {\n        return new _inviter_js__WEBPACK_IMPORTED_MODULE_11__.Inviter(this, targetURI, options);\n    }\n    /**\n     * Attempt reconnection up to `maxReconnectionAttempts` times.\n     * @param reconnectionAttempt - Current attempt number.\n     */\n    attemptReconnection(reconnectionAttempt = 1) {\n        const reconnectionAttempts = this.options.reconnectionAttempts;\n        const reconnectionDelay = this.options.reconnectionDelay;\n        if (reconnectionAttempt > reconnectionAttempts) {\n            this.logger.log(`Maximum reconnection attempts reached`);\n            return;\n        }\n        this.logger.log(`Reconnection attempt ${reconnectionAttempt} of ${reconnectionAttempts} - trying`);\n        setTimeout(() => {\n            this.reconnect()\n                .then(() => {\n                this.logger.log(`Reconnection attempt ${reconnectionAttempt} of ${reconnectionAttempts} - succeeded`);\n            })\n                .catch((error) => {\n                this.logger.error(error.message);\n                this.logger.log(`Reconnection attempt ${reconnectionAttempt} of ${reconnectionAttempts} - failed`);\n                this.attemptReconnection(++reconnectionAttempt);\n            });\n        }, reconnectionAttempt === 1 ? 0 : reconnectionDelay * 1000);\n    }\n    /**\n     * Initialize contact.\n     */\n    initContact() {\n        const contactName = this.options.contactName !== \"\" ? this.options.contactName : (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_2__.createRandomToken)(8);\n        const contactParams = this.options.contactParams;\n        const contact = {\n            pubGruu: undefined,\n            tempGruu: undefined,\n            uri: new _grammar_uri_js__WEBPACK_IMPORTED_MODULE_3__.URI(\"sip\", contactName, this.options.viaHost, undefined, contactParams),\n            toString: (contactToStringOptions = {}) => {\n                const anonymous = contactToStringOptions.anonymous || false;\n                const outbound = contactToStringOptions.outbound || false;\n                const register = contactToStringOptions.register || false;\n                let contactString = \"<\";\n                // 3.3.  Using a GRUU\n                // Once a user agent obtains GRUUs from the registrar, it uses them in\n                // several ways.  First, it uses them as the contents of the Contact\n                // header field in non-REGISTER requests and responses that it emits\n                // (for example, an INVITE request and 200 OK response).\n                // https://datatracker.ietf.org/doc/html/rfc5627#section-3.3\n                if (anonymous) {\n                    contactString +=\n                        this.contact.tempGruu ||\n                            `sip:anonymous@anonymous.invalid;transport=${contactParams.transport ? contactParams.transport : \"ws\"}`;\n                }\n                else if (register) {\n                    contactString += this.contact.uri;\n                }\n                else {\n                    contactString += this.contact.pubGruu || this.contact.uri;\n                }\n                if (outbound) {\n                    contactString += \";ob\";\n                }\n                contactString += \">\";\n                if (this.options.instanceIdAlwaysAdded) {\n                    contactString += ';+sip.instance=\"<urn:uuid:' + this._instanceId + '>\"';\n                }\n                return contactString;\n            }\n        };\n        return contact;\n    }\n    /**\n     * Initialize user agent core.\n     */\n    initCore() {\n        // supported options\n        let supportedOptionTags = [];\n        supportedOptionTags.push(\"outbound\"); // TODO: is this really supported?\n        if (this.options.sipExtension100rel === _user_agent_options_js__WEBPACK_IMPORTED_MODULE_8__.SIPExtension.Supported) {\n            supportedOptionTags.push(\"100rel\");\n        }\n        if (this.options.sipExtensionReplaces === _user_agent_options_js__WEBPACK_IMPORTED_MODULE_8__.SIPExtension.Supported) {\n            supportedOptionTags.push(\"replaces\");\n        }\n        if (this.options.sipExtensionExtraSupported) {\n            supportedOptionTags.push(...this.options.sipExtensionExtraSupported);\n        }\n        if (!this.options.hackAllowUnregisteredOptionTags) {\n            supportedOptionTags = supportedOptionTags.filter((optionTag) => _user_agent_options_js__WEBPACK_IMPORTED_MODULE_8__.UserAgentRegisteredOptionTags[optionTag]);\n        }\n        supportedOptionTags = Array.from(new Set(supportedOptionTags)); // array of unique values\n        // FIXME: TODO: This was ported, but this is and was just plain broken.\n        const supportedOptionTagsResponse = supportedOptionTags.slice();\n        if (this.contact.pubGruu || this.contact.tempGruu) {\n            supportedOptionTagsResponse.push(\"gruu\");\n        }\n        // core configuration\n        const userAgentCoreConfiguration = {\n            aor: this.options.uri,\n            contact: this.contact,\n            displayName: this.options.displayName,\n            loggerFactory: this.loggerFactory,\n            hackViaTcp: this.options.hackViaTcp,\n            routeSet: this.options.preloadedRouteSet,\n            supportedOptionTags,\n            supportedOptionTagsResponse,\n            sipjsId: this.options.sipjsId,\n            userAgentHeaderFieldValue: this.options.userAgentString,\n            viaForceRport: this.options.forceRport,\n            viaHost: this.options.viaHost,\n            authenticationFactory: () => {\n                const username = this.options.authorizationUsername\n                    ? this.options.authorizationUsername\n                    : this.options.uri.user; // if authorization username not provided, use uri user as username\n                const password = this.options.authorizationPassword ? this.options.authorizationPassword : undefined;\n                const ha1 = this.options.authorizationHa1 ? this.options.authorizationHa1 : undefined;\n                return new _core_messages_digest_authentication_js__WEBPACK_IMPORTED_MODULE_12__.DigestAuthentication(this.getLoggerFactory(), ha1, username, password);\n            },\n            transportAccessor: () => this.transport\n        };\n        const userAgentCoreDelegate = {\n            onInvite: (incomingInviteRequest) => {\n                var _a;\n                const invitation = new _invitation_js__WEBPACK_IMPORTED_MODULE_13__.Invitation(this, incomingInviteRequest);\n                incomingInviteRequest.delegate = {\n                    onCancel: (cancel) => {\n                        invitation._onCancel(cancel);\n                    },\n                    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n                    onTransportError: (error) => {\n                        // A server transaction MUST NOT discard transaction state based only on\n                        // encountering a non-recoverable transport error when sending a\n                        // response.  Instead, the associated INVITE server transaction state\n                        // machine MUST remain in its current state.  (Timers will eventually\n                        // cause it to transition to the \"Terminated\" state).\n                        // https://tools.ietf.org/html/rfc6026#section-7.1\n                        // As noted in the comment above, we are to leaving it to the transaction\n                        // timers to eventually cause the transaction to sort itself out in the case\n                        // of a transport failure in an invite server transaction. This delegate method\n                        // is here simply here for completeness and to make it clear that it provides\n                        // nothing more than informational hook into the core. That is, if you think\n                        // you should be trying to deal with a transport error here, you are likely wrong.\n                        this.logger.error(\"A transport error has occurred while handling an incoming INVITE request.\");\n                    }\n                };\n                // FIXME: Ported - 100 Trying send should be configurable.\n                // Only required if TU will not respond in 200ms.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.1\n                incomingInviteRequest.trying();\n                // The Replaces header contains information used to match an existing\n                // SIP dialog (call-id, to-tag, and from-tag).  Upon receiving an INVITE\n                // with a Replaces header, the User Agent (UA) attempts to match this\n                // information with a confirmed or early dialog.\n                // https://tools.ietf.org/html/rfc3891#section-3\n                if (this.options.sipExtensionReplaces !== _user_agent_options_js__WEBPACK_IMPORTED_MODULE_8__.SIPExtension.Unsupported) {\n                    const message = incomingInviteRequest.message;\n                    const replaces = message.parseHeader(\"replaces\");\n                    if (replaces) {\n                        const callId = replaces.call_id;\n                        if (typeof callId !== \"string\") {\n                            throw new Error(\"Type of call id is not string\");\n                        }\n                        const toTag = replaces.replaces_to_tag;\n                        if (typeof toTag !== \"string\") {\n                            throw new Error(\"Type of to tag is not string\");\n                        }\n                        const fromTag = replaces.replaces_from_tag;\n                        if (typeof fromTag !== \"string\") {\n                            throw new Error(\"type of from tag is not string\");\n                        }\n                        const targetDialogId = callId + toTag + fromTag;\n                        const targetDialog = this.userAgentCore.dialogs.get(targetDialogId);\n                        // If no match is found, the UAS rejects the INVITE and returns a 481\n                        // Call/Transaction Does Not Exist response.  Likewise, if the Replaces\n                        // header field matches a dialog which was not created with an INVITE,\n                        // the UAS MUST reject the request with a 481 response.\n                        // https://tools.ietf.org/html/rfc3891#section-3\n                        if (!targetDialog) {\n                            invitation.reject({ statusCode: 481 });\n                            return;\n                        }\n                        // If the Replaces header field matches a confirmed dialog, it checks\n                        // for the presence of the \"early-only\" flag in the Replaces header\n                        // field.  (This flag allows the UAC to prevent a potentially\n                        // undesirable race condition described in Section 7.1.) If the flag is\n                        // present, the UA rejects the request with a 486 Busy response.\n                        // https://tools.ietf.org/html/rfc3891#section-3\n                        if (!targetDialog.early && replaces.early_only === true) {\n                            invitation.reject({ statusCode: 486 });\n                            return;\n                        }\n                        // Provide a handle on the session being replaced.\n                        const targetSession = this._sessions[callId + fromTag] || this._sessions[callId + toTag] || undefined;\n                        if (!targetSession) {\n                            throw new Error(\"Session does not exist.\");\n                        }\n                        invitation._replacee = targetSession;\n                    }\n                }\n                // Delegate invitation handling.\n                if ((_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onInvite) {\n                    if (invitation.autoSendAnInitialProvisionalResponse) {\n                        invitation.progress().then(() => {\n                            var _a;\n                            if (((_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onInvite) === undefined) {\n                                throw new Error(\"onInvite undefined.\");\n                            }\n                            this.delegate.onInvite(invitation);\n                        });\n                        return;\n                    }\n                    this.delegate.onInvite(invitation);\n                    return;\n                }\n                // A common scenario occurs when the callee is currently not willing or\n                // able to take additional calls at this end system.  A 486 (Busy Here)\n                // SHOULD be returned in such a scenario.\n                // https://tools.ietf.org/html/rfc3261#section-13.3.1.3\n                invitation.reject({ statusCode: 486 });\n            },\n            onMessage: (incomingMessageRequest) => {\n                if (this.delegate && this.delegate.onMessage) {\n                    const message = new _message_js__WEBPACK_IMPORTED_MODULE_14__.Message(incomingMessageRequest);\n                    this.delegate.onMessage(message);\n                }\n                else {\n                    // Accept the MESSAGE request, but do nothing with it.\n                    incomingMessageRequest.accept();\n                }\n            },\n            onNotify: (incomingNotifyRequest) => {\n                // NOTIFY requests are sent to inform subscribers of changes in state to\n                // which the subscriber has a subscription.  Subscriptions are created\n                // using the SUBSCRIBE method.  In legacy implementations, it is\n                // possible that other means of subscription creation have been used.\n                // However, this specification does not allow the creation of\n                // subscriptions except through SUBSCRIBE requests and (for backwards-\n                // compatibility) REFER requests [RFC3515].\n                // https://tools.ietf.org/html/rfc6665#section-3.2\n                if (this.delegate && this.delegate.onNotify) {\n                    const notification = new _notification_js__WEBPACK_IMPORTED_MODULE_15__.Notification(incomingNotifyRequest);\n                    this.delegate.onNotify(notification);\n                }\n                else {\n                    // Per the above which obsoletes https://tools.ietf.org/html/rfc3265,\n                    // the use of out of dialog NOTIFY is obsolete, but...\n                    if (this.options.allowLegacyNotifications) {\n                        incomingNotifyRequest.accept(); // Accept the NOTIFY request, but do nothing with it.\n                    }\n                    else {\n                        incomingNotifyRequest.reject({ statusCode: 481 });\n                    }\n                }\n            },\n            onRefer: (incomingReferRequest) => {\n                this.logger.warn(\"Received an out of dialog REFER request\");\n                // TOOD: this.delegate.onRefer(...)\n                if (this.delegate && this.delegate.onReferRequest) {\n                    this.delegate.onReferRequest(incomingReferRequest);\n                }\n                else {\n                    incomingReferRequest.reject({ statusCode: 405 });\n                }\n            },\n            onRegister: (incomingRegisterRequest) => {\n                this.logger.warn(\"Received an out of dialog REGISTER request\");\n                // TOOD: this.delegate.onRegister(...)\n                if (this.delegate && this.delegate.onRegisterRequest) {\n                    this.delegate.onRegisterRequest(incomingRegisterRequest);\n                }\n                else {\n                    incomingRegisterRequest.reject({ statusCode: 405 });\n                }\n            },\n            onSubscribe: (incomingSubscribeRequest) => {\n                this.logger.warn(\"Received an out of dialog SUBSCRIBE request\");\n                // TOOD: this.delegate.onSubscribe(...)\n                if (this.delegate && this.delegate.onSubscribeRequest) {\n                    this.delegate.onSubscribeRequest(incomingSubscribeRequest);\n                }\n                else {\n                    incomingSubscribeRequest.reject({ statusCode: 405 });\n                }\n            }\n        };\n        return new _core_user_agent_core_user_agent_core_js__WEBPACK_IMPORTED_MODULE_16__.UserAgentCore(userAgentCoreConfiguration, userAgentCoreDelegate);\n    }\n    initTransportCallbacks() {\n        this.transport.onConnect = () => this.onTransportConnect();\n        this.transport.onDisconnect = (error) => this.onTransportDisconnect(error);\n        this.transport.onMessage = (message) => this.onTransportMessage(message);\n    }\n    onTransportConnect() {\n        if (this.state === _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped) {\n            return;\n        }\n        if (this.delegate && this.delegate.onConnect) {\n            this.delegate.onConnect();\n        }\n    }\n    onTransportDisconnect(error) {\n        if (this.state === _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped) {\n            return;\n        }\n        if (this.delegate && this.delegate.onDisconnect) {\n            this.delegate.onDisconnect(error);\n        }\n        // Only attempt to reconnect if network/server dropped the connection.\n        if (error && this.options.reconnectionAttempts > 0) {\n            this.attemptReconnection();\n        }\n    }\n    onTransportMessage(messageString) {\n        const message = _core_messages_parser_js__WEBPACK_IMPORTED_MODULE_17__.Parser.parseMessage(messageString, this.getLogger(\"sip.Parser\"));\n        if (!message) {\n            this.logger.warn(\"Failed to parse incoming message. Dropping.\");\n            return;\n        }\n        if (this.state === _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped && message instanceof _core_messages_incoming_request_message_js__WEBPACK_IMPORTED_MODULE_18__.IncomingRequestMessage) {\n            this.logger.warn(`Received ${message.method} request while stopped. Dropping.`);\n            return;\n        }\n        // A valid SIP request formulated by a UAC MUST, at a minimum, contain\n        // the following header fields: To, From, CSeq, Call-ID, Max-Forwards,\n        // and Via; all of these header fields are mandatory in all SIP\n        // requests.\n        // https://tools.ietf.org/html/rfc3261#section-8.1.1\n        const hasMinimumHeaders = () => {\n            const mandatoryHeaders = [\"from\", \"to\", \"call_id\", \"cseq\", \"via\"];\n            for (const header of mandatoryHeaders) {\n                if (!message.hasHeader(header)) {\n                    this.logger.warn(`Missing mandatory header field : ${header}.`);\n                    return false;\n                }\n            }\n            return true;\n        };\n        // Request Checks\n        if (message instanceof _core_messages_incoming_request_message_js__WEBPACK_IMPORTED_MODULE_18__.IncomingRequestMessage) {\n            // This is port of SanityCheck.minimumHeaders().\n            if (!hasMinimumHeaders()) {\n                this.logger.warn(`Request missing mandatory header field. Dropping.`);\n                return;\n            }\n            // FIXME: This is non-standard and should be a configurable behavior (desirable regardless).\n            // Custom SIP.js check to reject request from ourself (this instance of SIP.js).\n            // This is port of SanityCheck.rfc3261_16_3_4().\n            if (!message.toTag && message.callId.substr(0, 5) === this.options.sipjsId) {\n                this.userAgentCore.replyStateless(message, { statusCode: 482 });\n                return;\n            }\n            // FIXME: This should be Transport check before we get here (Section 18).\n            // Custom SIP.js check to reject requests if body length wrong.\n            // This is port of SanityCheck.rfc3261_18_3_request().\n            const len = (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_2__.utf8Length)(message.body);\n            const contentLength = message.getHeader(\"content-length\");\n            if (contentLength && len < Number(contentLength)) {\n                this.userAgentCore.replyStateless(message, { statusCode: 400 });\n                return;\n            }\n        }\n        // Response Checks\n        if (message instanceof _core_messages_incoming_response_message_js__WEBPACK_IMPORTED_MODULE_19__.IncomingResponseMessage) {\n            // This is port of SanityCheck.minimumHeaders().\n            if (!hasMinimumHeaders()) {\n                this.logger.warn(`Response missing mandatory header field. Dropping.`);\n                return;\n            }\n            // Custom SIP.js check to drop responses if multiple Via headers.\n            // This is port of SanityCheck.rfc3261_8_1_3_3().\n            if (message.getHeaders(\"via\").length > 1) {\n                this.logger.warn(\"More than one Via header field present in the response. Dropping.\");\n                return;\n            }\n            // FIXME: This should be Transport check before we get here (Section 18).\n            // Custom SIP.js check to drop responses if bad Via header.\n            // This is port of SanityCheck.rfc3261_18_1_2().\n            if (message.via.host !== this.options.viaHost || message.via.port !== undefined) {\n                this.logger.warn(\"Via sent-by in the response does not match UA Via host value. Dropping.\");\n                return;\n            }\n            // FIXME: This should be Transport check before we get here (Section 18).\n            // Custom SIP.js check to reject requests if body length wrong.\n            // This is port of SanityCheck.rfc3261_18_3_response().\n            const len = (0,_core_messages_utils_js__WEBPACK_IMPORTED_MODULE_2__.utf8Length)(message.body);\n            const contentLength = message.getHeader(\"content-length\");\n            if (contentLength && len < Number(contentLength)) {\n                this.logger.warn(\"Message body length is lower than the value in Content-Length header field. Dropping.\");\n                return;\n            }\n        }\n        // Handle Request\n        if (message instanceof _core_messages_incoming_request_message_js__WEBPACK_IMPORTED_MODULE_18__.IncomingRequestMessage) {\n            this.userAgentCore.receiveIncomingRequestFromTransport(message);\n            return;\n        }\n        // Handle Response\n        if (message instanceof _core_messages_incoming_response_message_js__WEBPACK_IMPORTED_MODULE_19__.IncomingResponseMessage) {\n            this.userAgentCore.receiveIncomingResponseFromTransport(message);\n            return;\n        }\n        throw new Error(\"Invalid message type.\");\n    }\n    /**\n     * Transition state.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    transitionState(newState, error) {\n        const invalidTransition = () => {\n            throw new Error(`Invalid state transition from ${this._state} to ${newState}`);\n        };\n        // Validate state transition\n        switch (this._state) {\n            case _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Started:\n                if (newState !== _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped) {\n                    invalidTransition();\n                }\n                break;\n            case _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Stopped:\n                if (newState !== _user_agent_state_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentState.Started) {\n                    invalidTransition();\n                }\n                break;\n            default:\n                throw new Error(\"Unknown state.\");\n        }\n        // Update state\n        this.logger.log(`Transitioned from ${this._state} to ${newState}`);\n        this._state = newState;\n        this._stateEventEmitter.emit(this._state);\n    }\n}\n\n\n/***/ }),\n/* 51 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"LoggerFactory\": () => (/* binding */ LoggerFactory)\n/* harmony export */ });\n/* harmony import */ var _levels_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(52);\n/* harmony import */ var _logger_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(53);\n\n\n/**\n * Logger.\n * @public\n */\nclass LoggerFactory {\n    constructor() {\n        this.builtinEnabled = true;\n        this._level = _levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.log;\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        this.loggers = {};\n        this.logger = this.getLogger(\"sip:loggerfactory\");\n    }\n    get level() {\n        return this._level;\n    }\n    set level(newLevel) {\n        if (newLevel >= 0 && newLevel <= 3) {\n            this._level = newLevel;\n        }\n        else if (newLevel > 3) {\n            this._level = 3;\n            // eslint-disable-next-line no-prototype-builtins\n        }\n        else if (_levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.hasOwnProperty(newLevel)) {\n            this._level = newLevel;\n        }\n        else {\n            this.logger.error(\"invalid 'level' parameter value: \" + JSON.stringify(newLevel));\n        }\n    }\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    get connector() {\n        return this._connector;\n    }\n    set connector(value) {\n        if (!value) {\n            this._connector = undefined;\n        }\n        else if (typeof value === \"function\") {\n            this._connector = value;\n        }\n        else {\n            this.logger.error(\"invalid 'connector' parameter value: \" + JSON.stringify(value));\n        }\n    }\n    getLogger(category, label) {\n        if (label && this.level === 3) {\n            return new _logger_js__WEBPACK_IMPORTED_MODULE_1__.Logger(this, category, label);\n        }\n        else if (this.loggers[category]) {\n            return this.loggers[category];\n        }\n        else {\n            const logger = new _logger_js__WEBPACK_IMPORTED_MODULE_1__.Logger(this, category);\n            this.loggers[category] = logger;\n            return logger;\n        }\n    }\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    genericLog(levelToLog, category, label, content) {\n        if (this.level >= levelToLog) {\n            if (this.builtinEnabled) {\n                this.print(levelToLog, category, label, content);\n            }\n        }\n        if (this.connector) {\n            this.connector(_levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels[levelToLog], category, label, content);\n        }\n    }\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    print(levelToLog, category, label, content) {\n        if (typeof content === \"string\") {\n            // eslint-disable-next-line @typescript-eslint/no-explicit-any\n            const prefix = [new Date(), category];\n            if (label) {\n                prefix.push(label);\n            }\n            content = prefix.concat(content).join(\" | \");\n        }\n        switch (levelToLog) {\n            case _levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.error:\n                // eslint-disable-next-line no-console\n                console.error(content);\n                break;\n            case _levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.warn:\n                // eslint-disable-next-line no-console\n                console.warn(content);\n                break;\n            case _levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.log:\n                // eslint-disable-next-line no-console\n                console.log(content);\n                break;\n            case _levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.debug:\n                // eslint-disable-next-line no-console\n                console.debug(content);\n                break;\n            default:\n                break;\n        }\n    }\n}\n\n\n/***/ }),\n/* 52 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Levels\": () => (/* binding */ Levels)\n/* harmony export */ });\n/**\n * Log levels.\n * @public\n */\nvar Levels;\n(function (Levels) {\n    Levels[Levels[\"error\"] = 0] = \"error\";\n    Levels[Levels[\"warn\"] = 1] = \"warn\";\n    Levels[Levels[\"log\"] = 2] = \"log\";\n    Levels[Levels[\"debug\"] = 3] = \"debug\";\n})(Levels = Levels || (Levels = {}));\n\n\n/***/ }),\n/* 53 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Logger\": () => (/* binding */ Logger)\n/* harmony export */ });\n/* harmony import */ var _levels_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(52);\n\n/**\n * Logger.\n * @public\n */\nclass Logger {\n    constructor(logger, category, label) {\n        this.logger = logger;\n        this.category = category;\n        this.label = label;\n    }\n    error(content) {\n        this.genericLog(_levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.error, content);\n    }\n    warn(content) {\n        this.genericLog(_levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.warn, content);\n    }\n    log(content) {\n        this.genericLog(_levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.log, content);\n    }\n    debug(content) {\n        this.genericLog(_levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels.debug, content);\n    }\n    genericLog(level, content) {\n        this.logger.genericLog(level, this.category, this.label, content);\n    }\n    get level() {\n        return this.logger.level;\n    }\n    set level(newLevel) {\n        this.logger.level = newLevel;\n    }\n}\n\n\n/***/ }),\n/* 54 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"defaultSessionDescriptionHandlerFactory\": () => (/* binding */ defaultSessionDescriptionHandlerFactory)\n/* harmony export */ });\n/* harmony import */ var _media_stream_factory_default_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(55);\n/* harmony import */ var _peer_connection_configuration_default_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(56);\n/* harmony import */ var _session_description_handler_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(57);\n\n\n\n/**\n * Function which returns a SessionDescriptionHandlerFactory.\n * @remarks\n * See {@link defaultPeerConnectionConfiguration} for the default peer connection configuration.\n * The ICE gathering timeout defaults to 5000ms.\n * @param mediaStreamFactory - MediaStream factory.\n * @public\n */\nfunction defaultSessionDescriptionHandlerFactory(mediaStreamFactory) {\n    return (session, options) => {\n        // provide a default media stream factory if need be\n        if (mediaStreamFactory === undefined) {\n            mediaStreamFactory = (0,_media_stream_factory_default_js__WEBPACK_IMPORTED_MODULE_0__.defaultMediaStreamFactory)();\n        }\n        // make sure we allow `0` to be passed in so timeout can be disabled\n        const iceGatheringTimeout = (options === null || options === void 0 ? void 0 : options.iceGatheringTimeout) !== undefined ? options === null || options === void 0 ? void 0 : options.iceGatheringTimeout : 5000;\n        // merge passed factory options into default session description configuration\n        const sessionDescriptionHandlerConfiguration = {\n            iceGatheringTimeout,\n            peerConnectionConfiguration: Object.assign(Object.assign({}, (0,_peer_connection_configuration_default_js__WEBPACK_IMPORTED_MODULE_1__.defaultPeerConnectionConfiguration)()), options === null || options === void 0 ? void 0 : options.peerConnectionConfiguration)\n        };\n        const logger = session.userAgent.getLogger(\"sip.SessionDescriptionHandler\");\n        return new _session_description_handler_js__WEBPACK_IMPORTED_MODULE_2__.SessionDescriptionHandler(logger, mediaStreamFactory, sessionDescriptionHandlerConfiguration);\n    };\n}\n\n\n/***/ }),\n/* 55 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"defaultMediaStreamFactory\": () => (/* binding */ defaultMediaStreamFactory)\n/* harmony export */ });\n/**\n * Function which returns a MediaStreamFactory.\n * @public\n */\nfunction defaultMediaStreamFactory() {\n    return (constraints) => {\n        // if no audio or video, return a media stream without tracks\n        if (!constraints.audio && !constraints.video) {\n            return Promise.resolve(new MediaStream());\n        }\n        // getUserMedia() is a powerful feature which can only be used in secure contexts; in insecure contexts,\n        // navigator.mediaDevices is undefined, preventing access to getUserMedia(). A secure context is, in short,\n        // a page loaded using HTTPS or the file:/// URL scheme, or a page loaded from localhost.\n        // https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia#Privacy_and_security\n        if (navigator.mediaDevices === undefined) {\n            return Promise.reject(new Error(\"Media devices not available in insecure contexts.\"));\n        }\n        return navigator.mediaDevices.getUserMedia.call(navigator.mediaDevices, constraints);\n    };\n}\n\n\n/***/ }),\n/* 56 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"defaultPeerConnectionConfiguration\": () => (/* binding */ defaultPeerConnectionConfiguration)\n/* harmony export */ });\n/**\n * Function which returns an RTCConfiguration.\n * @public\n */\nfunction defaultPeerConnectionConfiguration() {\n    const configuration = {\n        bundlePolicy: \"balanced\",\n        certificates: undefined,\n        iceCandidatePoolSize: 0,\n        iceServers: [{ urls: \"stun:stun.l.google.com:19302\" }],\n        iceTransportPolicy: \"all\",\n        rtcpMuxPolicy: \"require\"\n    };\n    return configuration;\n}\n\n\n/***/ }),\n/* 57 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionDescriptionHandler\": () => (/* binding */ SessionDescriptionHandler)\n/* harmony export */ });\n/**\n * A base class implementing a WebRTC session description handler for sip.js.\n * @remarks\n * It is expected/intended to be extended by specific WebRTC based applications.\n * @privateRemarks\n * So do not put application specific implementation in here.\n * @public\n */\nclass SessionDescriptionHandler {\n    /**\n     * Constructor\n     * @param logger - A logger\n     * @param mediaStreamFactory - A factory to provide a MediaStream\n     * @param options - Options passed from the SessionDescriptionHandleFactory\n     */\n    constructor(logger, mediaStreamFactory, sessionDescriptionHandlerConfiguration) {\n        logger.debug(\"SessionDescriptionHandler.constructor\");\n        this.logger = logger;\n        this.mediaStreamFactory = mediaStreamFactory;\n        this.sessionDescriptionHandlerConfiguration = sessionDescriptionHandlerConfiguration;\n        this._localMediaStream = new MediaStream();\n        this._remoteMediaStream = new MediaStream();\n        this._peerConnection = new RTCPeerConnection(sessionDescriptionHandlerConfiguration === null || sessionDescriptionHandlerConfiguration === void 0 ? void 0 : sessionDescriptionHandlerConfiguration.peerConnectionConfiguration);\n        this.initPeerConnectionEventHandlers();\n    }\n    /**\n     * The local media stream currently being sent.\n     *\n     * @remarks\n     * The local media stream initially has no tracks, so the presence of tracks\n     * should not be assumed. Furthermore, tracks may be added or removed if the\n     * local media changes - for example, on upgrade from audio only to a video session.\n     * At any given time there will be at most one audio track and one video track\n     * (it's possible that this restriction may not apply to sub-classes).\n     * Use `MediaStream.onaddtrack` or add a listener for the `addtrack` event\n     * to detect when a new track becomes available:\n     * https://developer.mozilla.org/en-US/docs/Web/API/MediaStream/onaddtrack\n     */\n    get localMediaStream() {\n        return this._localMediaStream;\n    }\n    /**\n     * The remote media stream currently being received.\n     *\n     * @remarks\n     * The remote media stream initially has no tracks, so the presence of tracks\n     * should not be assumed. Furthermore, tracks may be added or removed if the\n     * remote media changes - for example, on upgrade from audio only to a video session.\n     * At any given time there will be at most one audio track and one video track\n     * (it's possible that this restriction may not apply to sub-classes).\n     * Use `MediaStream.onaddtrack` or add a listener for the `addtrack` event\n     * to detect when a new track becomes available:\n     * https://developer.mozilla.org/en-US/docs/Web/API/MediaStream/onaddtrack\n     */\n    get remoteMediaStream() {\n        return this._remoteMediaStream;\n    }\n    /**\n     * The data channel. Undefined before it is created.\n     */\n    get dataChannel() {\n        return this._dataChannel;\n    }\n    /**\n     * The peer connection. Undefined if peer connection has closed.\n     *\n     * @remarks\n     * Use the peerConnectionDelegate to get access to the events associated\n     * with the RTCPeerConnection. For example...\n     *\n     * Do NOT do this...\n     * ```ts\n     * peerConnection.onicecandidate = (event) => {\n     *   // do something\n     * };\n     * ```\n     * Instead, do this...\n     * ```ts\n     * peerConnection.peerConnectionDelegate = {\n     *   onicecandidate: (event) => {\n     *     // do something\n     *   }\n     * };\n     * ```\n     * While access to the underlying `RTCPeerConnection` is provided, note that\n     * using methods which modify it may break the operation of this class.\n     * In particular, this class depends on exclusive access to the\n     * event handler properties. If you need access to the peer connection\n     * events, either register for events using `addEventListener()` on\n     * the `RTCPeerConnection` or set the `peerConnectionDelegate` on\n     * this `SessionDescriptionHandler`.\n     */\n    get peerConnection() {\n        return this._peerConnection;\n    }\n    /**\n     * A delegate which provides access to the peer connection event handlers.\n     *\n     * @remarks\n     * Use the peerConnectionDelegate to get access to the events associated\n     * with the RTCPeerConnection. For example...\n     *\n     * Do NOT do this...\n     * ```ts\n     * peerConnection.onicecandidate = (event) => {\n     *   // do something\n     * };\n     * ```\n     * Instead, do this...\n     * ```\n     * peerConnection.peerConnectionDelegate = {\n     *   onicecandidate: (event) => {\n     *     // do something\n     *   }\n     * };\n     * ```\n     * Setting the peer connection event handlers directly is not supported\n     * and may break this class. As this class depends on exclusive access\n     * to them. This delegate is intended to provide access to the\n     * RTCPeerConnection events in a fashion which is supported.\n     */\n    get peerConnectionDelegate() {\n        return this._peerConnectionDelegate;\n    }\n    set peerConnectionDelegate(delegate) {\n        this._peerConnectionDelegate = delegate;\n    }\n    // The addtrack event does not get fired when JavaScript code explicitly adds tracks to the stream (by calling addTrack()).\n    // https://developer.mozilla.org/en-US/docs/Web/API/MediaStream/onaddtrack\n    static dispatchAddTrackEvent(stream, track) {\n        stream.dispatchEvent(new MediaStreamTrackEvent(\"addtrack\", { track }));\n    }\n    // The removetrack event does not get fired when JavaScript code explicitly removes tracks from the stream (by calling removeTrack()).\n    // https://developer.mozilla.org/en-US/docs/Web/API/MediaStream/onremovetrack\n    static dispatchRemoveTrackEvent(stream, track) {\n        stream.dispatchEvent(new MediaStreamTrackEvent(\"removetrack\", { track }));\n    }\n    /**\n     * Stop tracks and close peer connection.\n     */\n    close() {\n        this.logger.debug(\"SessionDescriptionHandler.close\");\n        if (this._peerConnection === undefined) {\n            return;\n        }\n        this._peerConnection.getReceivers().forEach((receiver) => {\n            receiver.track && receiver.track.stop();\n        });\n        this._peerConnection.getSenders().forEach((sender) => {\n            sender.track && sender.track.stop();\n        });\n        if (this._dataChannel) {\n            this._dataChannel.close();\n        }\n        this._peerConnection.close();\n        this._peerConnection = undefined;\n    }\n    /**\n     * Helper function to enable/disable media tracks.\n     * @param enable - If true enable tracks, otherwise disable tracks.\n     */\n    enableReceiverTracks(enable) {\n        const peerConnection = this.peerConnection;\n        if (!peerConnection) {\n            throw new Error(\"Peer connection closed.\");\n        }\n        peerConnection.getReceivers().forEach((receiver) => {\n            if (receiver.track) {\n                receiver.track.enabled = enable;\n            }\n        });\n    }\n    /**\n     * Helper function to enable/disable media tracks.\n     * @param enable - If true enable tracks, otherwise disable tracks.\n     */\n    enableSenderTracks(enable) {\n        const peerConnection = this.peerConnection;\n        if (!peerConnection) {\n            throw new Error(\"Peer connection closed.\");\n        }\n        peerConnection.getSenders().forEach((sender) => {\n            if (sender.track) {\n                sender.track.enabled = enable;\n            }\n        });\n    }\n    /**\n     * Creates an offer or answer.\n     * @param options - Options bucket.\n     * @param modifiers - Modifiers.\n     */\n    getDescription(options, modifiers) {\n        var _a, _b;\n        this.logger.debug(\"SessionDescriptionHandler.getDescription\");\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        // Callback on data channel creation\n        this.onDataChannel = options === null || options === void 0 ? void 0 : options.onDataChannel;\n        // ICE will restart upon applying an offer created with the iceRestart option\n        const iceRestart = (_a = options === null || options === void 0 ? void 0 : options.offerOptions) === null || _a === void 0 ? void 0 : _a.iceRestart;\n        // ICE gathering timeout may be set on a per call basis, otherwise the configured default is used\n        const iceTimeout = (options === null || options === void 0 ? void 0 : options.iceGatheringTimeout) === undefined\n            ? (_b = this.sessionDescriptionHandlerConfiguration) === null || _b === void 0 ? void 0 : _b.iceGatheringTimeout\n            : options === null || options === void 0 ? void 0 : options.iceGatheringTimeout;\n        return this.getLocalMediaStream(options)\n            .then(() => this.updateDirection(options))\n            .then(() => this.createDataChannel(options))\n            .then(() => this.createLocalOfferOrAnswer(options))\n            .then((sessionDescription) => this.applyModifiers(sessionDescription, modifiers))\n            .then((sessionDescription) => this.setLocalSessionDescription(sessionDescription))\n            .then(() => this.waitForIceGatheringComplete(iceRestart, iceTimeout))\n            .then(() => this.getLocalSessionDescription())\n            .then((sessionDescription) => {\n            return {\n                body: sessionDescription.sdp,\n                contentType: \"application/sdp\"\n            };\n        })\n            .catch((error) => {\n            this.logger.error(\"SessionDescriptionHandler.getDescription failed - \" + error);\n            throw error;\n        });\n    }\n    /**\n     * Returns true if the SessionDescriptionHandler can handle the Content-Type described by a SIP message.\n     * @param contentType - The content type that is in the SIP Message.\n     */\n    hasDescription(contentType) {\n        this.logger.debug(\"SessionDescriptionHandler.hasDescription\");\n        return contentType === \"application/sdp\";\n    }\n    /**\n     * Called when ICE gathering completes and resolves any waiting promise.\n     * @remarks\n     * May be called prior to ICE gathering actually completing to allow the\n     * session descirption handler proceed with whatever candidates have been\n     * gathered up to this point in time. Use this to stop waiting on ICE to\n     * complete if you are implementing your own ICE gathering completion strategy.\n     */\n    iceGatheringComplete() {\n        this.logger.debug(\"SessionDescriptionHandler.iceGatheringComplete\");\n        // clear timer if need be\n        if (this.iceGatheringCompleteTimeoutId !== undefined) {\n            this.logger.debug(\"SessionDescriptionHandler.iceGatheringComplete - clearing timeout\");\n            clearTimeout(this.iceGatheringCompleteTimeoutId);\n            this.iceGatheringCompleteTimeoutId = undefined;\n        }\n        // resolve and cleanup promise if need be\n        if (this.iceGatheringCompletePromise !== undefined) {\n            this.logger.debug(\"SessionDescriptionHandler.iceGatheringComplete - resolving promise\");\n            this.iceGatheringCompleteResolve && this.iceGatheringCompleteResolve();\n            this.iceGatheringCompletePromise = undefined;\n            this.iceGatheringCompleteResolve = undefined;\n            this.iceGatheringCompleteReject = undefined;\n        }\n    }\n    /**\n     * Send DTMF via RTP (RFC 4733).\n     * Returns true if DTMF send is successful, false otherwise.\n     * @param tones - A string containing DTMF digits.\n     * @param options - Options object to be used by sendDtmf.\n     */\n    sendDtmf(tones, options) {\n        this.logger.debug(\"SessionDescriptionHandler.sendDtmf\");\n        if (this._peerConnection === undefined) {\n            this.logger.error(\"SessionDescriptionHandler.sendDtmf failed - peer connection closed\");\n            return false;\n        }\n        const senders = this._peerConnection.getSenders();\n        if (senders.length === 0) {\n            this.logger.error(\"SessionDescriptionHandler.sendDtmf failed - no senders\");\n            return false;\n        }\n        const dtmfSender = senders[0].dtmf;\n        if (!dtmfSender) {\n            this.logger.error(\"SessionDescriptionHandler.sendDtmf failed - no DTMF sender\");\n            return false;\n        }\n        const duration = options === null || options === void 0 ? void 0 : options.duration;\n        const interToneGap = options === null || options === void 0 ? void 0 : options.interToneGap;\n        try {\n            dtmfSender.insertDTMF(tones, duration, interToneGap);\n        }\n        catch (e) {\n            this.logger.error(e.toString());\n            return false;\n        }\n        this.logger.log(\"SessionDescriptionHandler.sendDtmf sent via RTP: \" + tones.toString());\n        return true;\n    }\n    /**\n     * Sets an offer or answer.\n     * @param sdp - The session description.\n     * @param options - Options bucket.\n     * @param modifiers - Modifiers.\n     */\n    setDescription(sdp, options, modifiers) {\n        this.logger.debug(\"SessionDescriptionHandler.setDescription\");\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        // Callback on data channel creation\n        this.onDataChannel = options === null || options === void 0 ? void 0 : options.onDataChannel;\n        // SDP type\n        const type = this._peerConnection.signalingState === \"have-local-offer\" ? \"answer\" : \"offer\";\n        return this.getLocalMediaStream(options)\n            .then(() => this.applyModifiers({ sdp, type }, modifiers))\n            .then((sessionDescription) => this.setRemoteSessionDescription(sessionDescription))\n            .catch((error) => {\n            this.logger.error(\"SessionDescriptionHandler.setDescription failed - \" + error);\n            throw error;\n        });\n    }\n    /**\n     * Applies modifiers to SDP prior to setting the local or remote description.\n     * @param sdp - SDP to modify.\n     * @param modifiers - Modifiers to apply.\n     */\n    applyModifiers(sdp, modifiers) {\n        this.logger.debug(\"SessionDescriptionHandler.applyModifiers\");\n        if (!modifiers || modifiers.length === 0) {\n            return Promise.resolve(sdp);\n        }\n        return modifiers\n            .reduce((cur, next) => cur.then(next), Promise.resolve(sdp))\n            .then((modified) => {\n            this.logger.debug(\"SessionDescriptionHandler.applyModifiers - modified sdp\");\n            if (!modified.sdp || !modified.type) {\n                throw new Error(\"Invalid SDP.\");\n            }\n            return { sdp: modified.sdp, type: modified.type };\n        });\n    }\n    /**\n     * Create a data channel.\n     * @remarks\n     * Only creates a data channel if SessionDescriptionHandlerOptions.dataChannel is true.\n     * Only creates a data channel if creating a local offer.\n     * Only if one does not already exist.\n     * @param options - Session description handler options.\n     */\n    createDataChannel(options) {\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        // only create a data channel if requested\n        if ((options === null || options === void 0 ? void 0 : options.dataChannel) !== true) {\n            return Promise.resolve();\n        }\n        // do not create a data channel if we already have one\n        if (this._dataChannel) {\n            return Promise.resolve();\n        }\n        switch (this._peerConnection.signalingState) {\n            case \"stable\":\n                // if we are stable, assume we are creating a local offer so create a data channel\n                this.logger.debug(\"SessionDescriptionHandler.createDataChannel - creating data channel\");\n                try {\n                    this._dataChannel = this._peerConnection.createDataChannel((options === null || options === void 0 ? void 0 : options.dataChannelLabel) || \"\", options === null || options === void 0 ? void 0 : options.dataChannelOptions);\n                    if (this.onDataChannel) {\n                        this.onDataChannel(this._dataChannel);\n                    }\n                    return Promise.resolve();\n                }\n                catch (error) {\n                    return Promise.reject(error);\n                }\n            case \"have-remote-offer\":\n                return Promise.resolve();\n            case \"have-local-offer\":\n            case \"have-local-pranswer\":\n            case \"have-remote-pranswer\":\n            case \"closed\":\n            default:\n                return Promise.reject(new Error(\"Invalid signaling state \" + this._peerConnection.signalingState));\n        }\n    }\n    /**\n     * Depending on current signaling state, create a local offer or answer.\n     * @param options - Session description handler options.\n     */\n    createLocalOfferOrAnswer(options) {\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        switch (this._peerConnection.signalingState) {\n            case \"stable\":\n                // if we are stable, assume we are creating a local offer\n                this.logger.debug(\"SessionDescriptionHandler.createLocalOfferOrAnswer - creating SDP offer\");\n                return this._peerConnection.createOffer(options === null || options === void 0 ? void 0 : options.offerOptions);\n            case \"have-remote-offer\":\n                // if we have a remote offer, assume we are creating a local answer\n                this.logger.debug(\"SessionDescriptionHandler.createLocalOfferOrAnswer - creating SDP answer\");\n                return this._peerConnection.createAnswer(options === null || options === void 0 ? void 0 : options.answerOptions);\n            case \"have-local-offer\":\n            case \"have-local-pranswer\":\n            case \"have-remote-pranswer\":\n            case \"closed\":\n            default:\n                return Promise.reject(new Error(\"Invalid signaling state \" + this._peerConnection.signalingState));\n        }\n    }\n    /**\n     * Get a media stream from the media stream factory and set the local media stream.\n     * @param options - Session description handler options.\n     */\n    getLocalMediaStream(options) {\n        this.logger.debug(\"SessionDescriptionHandler.getLocalMediaStream\");\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        let constraints = Object.assign({}, options === null || options === void 0 ? void 0 : options.constraints);\n        // if we already have a local media stream...\n        if (this.localMediaStreamConstraints) {\n            // ignore constraint \"downgrades\"\n            constraints.audio = constraints.audio || this.localMediaStreamConstraints.audio;\n            constraints.video = constraints.video || this.localMediaStreamConstraints.video;\n            // if constraints have not changed, do not get a new media stream\n            if (JSON.stringify(this.localMediaStreamConstraints.audio) === JSON.stringify(constraints.audio) &&\n                JSON.stringify(this.localMediaStreamConstraints.video) === JSON.stringify(constraints.video)) {\n                return Promise.resolve();\n            }\n        }\n        else {\n            // if no constraints have been specified, default to audio for initial media stream\n            if (constraints.audio === undefined && constraints.video === undefined) {\n                constraints = { audio: true };\n            }\n        }\n        this.localMediaStreamConstraints = constraints;\n        return this.mediaStreamFactory(constraints, this, options).then((mediaStream) => this.setLocalMediaStream(mediaStream));\n    }\n    /**\n     * Sets the peer connection's sender tracks and local media stream tracks.\n     *\n     * @remarks\n     * Only the first audio and video tracks of the provided MediaStream are utilized.\n     * Adds tracks if audio and/or video tracks are not already present, otherwise replaces tracks.\n     *\n     * @param stream - Media stream containing tracks to be utilized.\n     */\n    setLocalMediaStream(stream) {\n        this.logger.debug(\"SessionDescriptionHandler.setLocalMediaStream\");\n        if (!this._peerConnection) {\n            throw new Error(\"Peer connection undefined.\");\n        }\n        const pc = this._peerConnection;\n        const localStream = this._localMediaStream;\n        const trackUpdates = [];\n        const updateTrack = (newTrack) => {\n            const kind = newTrack.kind;\n            if (kind !== \"audio\" && kind !== \"video\") {\n                throw new Error(`Unknown new track kind ${kind}.`);\n            }\n            const sender = pc.getSenders().find((sender) => sender.track && sender.track.kind === kind);\n            if (sender) {\n                trackUpdates.push(new Promise((resolve) => {\n                    this.logger.debug(`SessionDescriptionHandler.setLocalMediaStream - replacing sender ${kind} track`);\n                    resolve();\n                }).then(() => sender\n                    .replaceTrack(newTrack)\n                    .then(() => {\n                    const oldTrack = localStream.getTracks().find((localTrack) => localTrack.kind === kind);\n                    if (oldTrack) {\n                        oldTrack.stop();\n                        localStream.removeTrack(oldTrack);\n                        SessionDescriptionHandler.dispatchRemoveTrackEvent(localStream, oldTrack);\n                    }\n                    localStream.addTrack(newTrack);\n                    SessionDescriptionHandler.dispatchAddTrackEvent(localStream, newTrack);\n                })\n                    .catch((error) => {\n                    this.logger.error(`SessionDescriptionHandler.setLocalMediaStream - failed to replace sender ${kind} track`);\n                    throw error;\n                })));\n            }\n            else {\n                trackUpdates.push(new Promise((resolve) => {\n                    this.logger.debug(`SessionDescriptionHandler.setLocalMediaStream - adding sender ${kind} track`);\n                    resolve();\n                }).then(() => {\n                    // Review: could make streamless tracks a configurable option?\n                    // https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/addTrack#Usage_notes\n                    try {\n                        pc.addTrack(newTrack, localStream);\n                    }\n                    catch (error) {\n                        this.logger.error(`SessionDescriptionHandler.setLocalMediaStream - failed to add sender ${kind} track`);\n                        throw error;\n                    }\n                    localStream.addTrack(newTrack);\n                    SessionDescriptionHandler.dispatchAddTrackEvent(localStream, newTrack);\n                }));\n            }\n        };\n        // update peer connection audio tracks\n        const audioTracks = stream.getAudioTracks();\n        if (audioTracks.length) {\n            updateTrack(audioTracks[0]);\n        }\n        // update peer connection video tracks\n        const videoTracks = stream.getVideoTracks();\n        if (videoTracks.length) {\n            updateTrack(videoTracks[0]);\n        }\n        return trackUpdates.reduce((p, x) => p.then(() => x), Promise.resolve());\n    }\n    /**\n     * Gets the peer connection's local session description.\n     */\n    getLocalSessionDescription() {\n        this.logger.debug(\"SessionDescriptionHandler.getLocalSessionDescription\");\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        const sdp = this._peerConnection.localDescription;\n        if (!sdp) {\n            return Promise.reject(new Error(\"Failed to get local session description\"));\n        }\n        return Promise.resolve(sdp);\n    }\n    /**\n     * Sets the peer connection's local session description.\n     * @param sessionDescription - sessionDescription The session description.\n     */\n    setLocalSessionDescription(sessionDescription) {\n        this.logger.debug(\"SessionDescriptionHandler.setLocalSessionDescription\");\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        return this._peerConnection.setLocalDescription(sessionDescription);\n    }\n    /**\n     * Sets the peer connection's remote session description.\n     * @param sessionDescription - The session description.\n     */\n    setRemoteSessionDescription(sessionDescription) {\n        this.logger.debug(\"SessionDescriptionHandler.setRemoteSessionDescription\");\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        const sdp = sessionDescription.sdp;\n        let type;\n        switch (this._peerConnection.signalingState) {\n            case \"stable\":\n                // if we are stable assume this is a remote offer\n                type = \"offer\";\n                break;\n            case \"have-local-offer\":\n                // if we made an offer, assume this is a remote answer\n                type = \"answer\";\n                break;\n            case \"have-local-pranswer\":\n            case \"have-remote-offer\":\n            case \"have-remote-pranswer\":\n            case \"closed\":\n            default:\n                return Promise.reject(new Error(\"Invalid signaling state \" + this._peerConnection.signalingState));\n        }\n        if (!sdp) {\n            this.logger.error(\"SessionDescriptionHandler.setRemoteSessionDescription failed - cannot set null sdp\");\n            return Promise.reject(new Error(\"SDP is undefined\"));\n        }\n        return this._peerConnection.setRemoteDescription({ sdp, type });\n    }\n    /**\n     * Sets a remote media stream track.\n     *\n     * @remarks\n     * Adds tracks if audio and/or video tracks are not already present, otherwise replaces tracks.\n     *\n     * @param track - Media stream track to be utilized.\n     */\n    setRemoteTrack(track) {\n        this.logger.debug(\"SessionDescriptionHandler.setRemoteTrack\");\n        const remoteStream = this._remoteMediaStream;\n        if (remoteStream.getTrackById(track.id)) {\n            this.logger.debug(`SessionDescriptionHandler.setRemoteTrack - have remote ${track.kind} track`);\n        }\n        else if (track.kind === \"audio\") {\n            this.logger.debug(`SessionDescriptionHandler.setRemoteTrack - adding remote ${track.kind} track`);\n            remoteStream.getAudioTracks().forEach((track) => {\n                track.stop();\n                remoteStream.removeTrack(track);\n                SessionDescriptionHandler.dispatchRemoveTrackEvent(remoteStream, track);\n            });\n            remoteStream.addTrack(track);\n            SessionDescriptionHandler.dispatchAddTrackEvent(remoteStream, track);\n        }\n        else if (track.kind === \"video\") {\n            this.logger.debug(`SessionDescriptionHandler.setRemoteTrack - adding remote ${track.kind} track`);\n            remoteStream.getVideoTracks().forEach((track) => {\n                track.stop();\n                remoteStream.removeTrack(track);\n                SessionDescriptionHandler.dispatchRemoveTrackEvent(remoteStream, track);\n            });\n            remoteStream.addTrack(track);\n            SessionDescriptionHandler.dispatchAddTrackEvent(remoteStream, track);\n        }\n    }\n    /**\n     * Depending on the current signaling state and the session hold state, update transceiver direction.\n     * @param options - Session description handler options.\n     */\n    updateDirection(options) {\n        if (this._peerConnection === undefined) {\n            return Promise.reject(new Error(\"Peer connection closed.\"));\n        }\n        // 4.2.3.  setDirection\n        //\n        //    The setDirection method sets the direction of a transceiver, which\n        //    affects the direction property of the associated \"m=\" section on\n        //    future calls to createOffer and createAnswer.  The permitted values\n        //    for direction are \"recvonly\", \"sendrecv\", \"sendonly\", and \"inactive\",\n        //    mirroring the identically named direction attributes defined in\n        //    [RFC4566], Section 6.\n        //\n        //    When creating offers, the transceiver direction is directly reflected\n        //    in the output, even for re-offers.  When creating answers, the\n        //    transceiver direction is intersected with the offered direction, as\n        //    explained in Section 5.3 below.\n        //\n        //    Note that while setDirection sets the direction property of the\n        //    transceiver immediately (Section 4.2.4), this property does not\n        //    immediately affect whether the transceiver's RtpSender will send or\n        //    its RtpReceiver will receive.  The direction in effect is represented\n        //    by the currentDirection property, which is only updated when an\n        //    answer is applied.\n        //\n        // 4.2.4.  direction\n        //\n        //    The direction property indicates the last value passed into\n        //    setDirection.  If setDirection has never been called, it is set to\n        //    the direction the transceiver was initialized with.\n        //\n        // 4.2.5.  currentDirection\n        //\n        //    The currentDirection property indicates the last negotiated direction\n        //    for the transceiver's associated \"m=\" section.  More specifically, it\n        //    indicates the direction attribute [RFC3264] of the associated \"m=\"\n        //    section in the last applied answer (including provisional answers),\n        //    with \"send\" and \"recv\" directions reversed if it was a remote answer.\n        //    For example, if the direction attribute for the associated \"m=\"\n        //    section in a remote answer is \"recvonly\", currentDirection is set to\n        //    \"sendonly\".\n        //\n        //    If an answer that references this transceiver has not yet been\n        //    applied or if the transceiver is stopped, currentDirection is set to\n        //    \"null\".\n        //  https://tools.ietf.org/html/rfc8829#section-4.2.3\n        //\n        // *  A direction attribute, determined by applying the rules regarding\n        //    the offered direction specified in [RFC3264], Section 6.1, and\n        //    then intersecting with the direction of the associated\n        //    RtpTransceiver.  For example, in the case where an \"m=\" section is\n        //    offered as \"sendonly\" and the local transceiver is set to\n        //    \"sendrecv\", the result in the answer is a \"recvonly\" direction.\n        // https://tools.ietf.org/html/rfc8829#section-5.3.1\n        //\n        // If a stream is offered as sendonly, the corresponding stream MUST be\n        // marked as recvonly or inactive in the answer.  If a media stream is\n        // listed as recvonly in the offer, the answer MUST be marked as\n        // sendonly or inactive in the answer.  If an offered media stream is\n        // listed as sendrecv (or if there is no direction attribute at the\n        // media or session level, in which case the stream is sendrecv by\n        // default), the corresponding stream in the answer MAY be marked as\n        // sendonly, recvonly, sendrecv, or inactive.  If an offered media\n        // stream is listed as inactive, it MUST be marked as inactive in the\n        // answer.\n        // https://tools.ietf.org/html/rfc3264#section-6.1\n        switch (this._peerConnection.signalingState) {\n            case \"stable\":\n                // if we are stable, assume we are creating a local offer\n                this.logger.debug(\"SessionDescriptionHandler.updateDirection - setting offer direction\");\n                {\n                    // determine the direction to offer given the current direction and hold state\n                    const directionToOffer = (currentDirection) => {\n                        switch (currentDirection) {\n                            case \"inactive\":\n                                return (options === null || options === void 0 ? void 0 : options.hold) ? \"inactive\" : \"recvonly\";\n                            case \"recvonly\":\n                                return (options === null || options === void 0 ? void 0 : options.hold) ? \"inactive\" : \"recvonly\";\n                            case \"sendonly\":\n                                return (options === null || options === void 0 ? void 0 : options.hold) ? \"sendonly\" : \"sendrecv\";\n                            case \"sendrecv\":\n                                return (options === null || options === void 0 ? void 0 : options.hold) ? \"sendonly\" : \"sendrecv\";\n                            case \"stopped\":\n                                return \"stopped\";\n                            default:\n                                throw new Error(\"Should never happen\");\n                        }\n                    };\n                    // set the transceiver direction to the offer direction\n                    this._peerConnection.getTransceivers().forEach((transceiver) => {\n                        if (transceiver.direction /* guarding, but should always be true */) {\n                            const offerDirection = directionToOffer(transceiver.direction);\n                            if (transceiver.direction !== offerDirection) {\n                                transceiver.direction = offerDirection;\n                            }\n                        }\n                    });\n                }\n                break;\n            case \"have-remote-offer\":\n                // if we have a remote offer, assume we are creating a local answer\n                this.logger.debug(\"SessionDescriptionHandler.updateDirection - setting answer direction\");\n                // FIXME: This is not the correct way to determine the answer direction as it is only\n                // considering first match in the offered SDP and using that to determine the answer direction.\n                // While that may be fine for our current use cases, it is not a generally correct approach.\n                {\n                    // determine the offered direction\n                    const offeredDirection = (() => {\n                        const description = this._peerConnection.remoteDescription;\n                        if (!description) {\n                            throw new Error(\"Failed to read remote offer\");\n                        }\n                        const searchResult = /a=sendrecv\\r\\n|a=sendonly\\r\\n|a=recvonly\\r\\n|a=inactive\\r\\n/.exec(description.sdp);\n                        if (searchResult) {\n                            switch (searchResult[0]) {\n                                case \"a=inactive\\r\\n\":\n                                    return \"inactive\";\n                                case \"a=recvonly\\r\\n\":\n                                    return \"recvonly\";\n                                case \"a=sendonly\\r\\n\":\n                                    return \"sendonly\";\n                                case \"a=sendrecv\\r\\n\":\n                                    return \"sendrecv\";\n                                default:\n                                    throw new Error(\"Should never happen\");\n                            }\n                        }\n                        return \"sendrecv\";\n                    })();\n                    // determine the answer direction based on the offered direction and our hold state\n                    const answerDirection = (() => {\n                        switch (offeredDirection) {\n                            case \"inactive\":\n                                return \"inactive\";\n                            case \"recvonly\":\n                                return \"sendonly\";\n                            case \"sendonly\":\n                                return (options === null || options === void 0 ? void 0 : options.hold) ? \"inactive\" : \"recvonly\";\n                            case \"sendrecv\":\n                                return (options === null || options === void 0 ? void 0 : options.hold) ? \"sendonly\" : \"sendrecv\";\n                            default:\n                                throw new Error(\"Should never happen\");\n                        }\n                    })();\n                    // set the transceiver direction to the answer direction\n                    this._peerConnection.getTransceivers().forEach((transceiver) => {\n                        if (transceiver.direction /* guarding, but should always be true */) {\n                            if (transceiver.direction !== \"stopped\" && transceiver.direction !== answerDirection) {\n                                transceiver.direction = answerDirection;\n                            }\n                        }\n                    });\n                }\n                break;\n            case \"have-local-offer\":\n            case \"have-local-pranswer\":\n            case \"have-remote-pranswer\":\n            case \"closed\":\n            default:\n                return Promise.reject(new Error(\"Invalid signaling state \" + this._peerConnection.signalingState));\n        }\n        return Promise.resolve();\n    }\n    /**\n     * Wait for ICE gathering to complete.\n     * @param restart - If true, waits if current state is \"complete\" (waits for transition to \"complete\").\n     * @param timeout - Milliseconds after which waiting times out. No timeout if 0.\n     */\n    waitForIceGatheringComplete(restart = false, timeout = 0) {\n        this.logger.debug(\"SessionDescriptionHandler.waitForIceGatheringToComplete\");\n        if (this._peerConnection === undefined) {\n            return Promise.reject(\"Peer connection closed.\");\n        }\n        // guard already complete\n        if (!restart && this._peerConnection.iceGatheringState === \"complete\") {\n            this.logger.debug(\"SessionDescriptionHandler.waitForIceGatheringToComplete - already complete\");\n            return Promise.resolve();\n        }\n        // only one may be waiting, reject any prior\n        if (this.iceGatheringCompletePromise !== undefined) {\n            this.logger.debug(\"SessionDescriptionHandler.waitForIceGatheringToComplete - rejecting prior waiting promise\");\n            this.iceGatheringCompleteReject && this.iceGatheringCompleteReject(new Error(\"Promise superseded.\"));\n            this.iceGatheringCompletePromise = undefined;\n            this.iceGatheringCompleteResolve = undefined;\n            this.iceGatheringCompleteReject = undefined;\n        }\n        this.iceGatheringCompletePromise = new Promise((resolve, reject) => {\n            this.iceGatheringCompleteResolve = resolve;\n            this.iceGatheringCompleteReject = reject;\n            if (timeout > 0) {\n                this.logger.debug(\"SessionDescriptionHandler.waitForIceGatheringToComplete - timeout in \" + timeout);\n                this.iceGatheringCompleteTimeoutId = setTimeout(() => {\n                    this.logger.debug(\"SessionDescriptionHandler.waitForIceGatheringToComplete - timeout\");\n                    this.iceGatheringComplete();\n                }, timeout);\n            }\n        });\n        return this.iceGatheringCompletePromise;\n    }\n    /**\n     * Initializes the peer connection event handlers\n     */\n    initPeerConnectionEventHandlers() {\n        this.logger.debug(\"SessionDescriptionHandler.initPeerConnectionEventHandlers\");\n        if (!this._peerConnection)\n            throw new Error(\"Peer connection undefined.\");\n        const peerConnection = this._peerConnection;\n        peerConnection.onconnectionstatechange = (event) => {\n            var _a;\n            const newState = peerConnection.connectionState;\n            this.logger.debug(`SessionDescriptionHandler.onconnectionstatechange ${newState}`);\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.onconnectionstatechange) {\n                this._peerConnectionDelegate.onconnectionstatechange(event);\n            }\n        };\n        peerConnection.ondatachannel = (event) => {\n            var _a;\n            this.logger.debug(`SessionDescriptionHandler.ondatachannel`);\n            this._dataChannel = event.channel;\n            if (this.onDataChannel) {\n                this.onDataChannel(this._dataChannel);\n            }\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.ondatachannel) {\n                this._peerConnectionDelegate.ondatachannel(event);\n            }\n        };\n        peerConnection.onicecandidate = (event) => {\n            var _a;\n            this.logger.debug(`SessionDescriptionHandler.onicecandidate`);\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.onicecandidate) {\n                this._peerConnectionDelegate.onicecandidate(event);\n            }\n        };\n        peerConnection.onicecandidateerror = (event) => {\n            var _a;\n            this.logger.debug(`SessionDescriptionHandler.onicecandidateerror`);\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.onicecandidateerror) {\n                this._peerConnectionDelegate.onicecandidateerror(event);\n            }\n        };\n        peerConnection.oniceconnectionstatechange = (event) => {\n            var _a;\n            const newState = peerConnection.iceConnectionState;\n            this.logger.debug(`SessionDescriptionHandler.oniceconnectionstatechange ${newState}`);\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.oniceconnectionstatechange) {\n                this._peerConnectionDelegate.oniceconnectionstatechange(event);\n            }\n        };\n        peerConnection.onicegatheringstatechange = (event) => {\n            var _a;\n            const newState = peerConnection.iceGatheringState;\n            this.logger.debug(`SessionDescriptionHandler.onicegatheringstatechange ${newState}`);\n            if (newState === \"complete\") {\n                this.iceGatheringComplete(); // complete waiting for ICE gathering to complete\n            }\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.onicegatheringstatechange) {\n                this._peerConnectionDelegate.onicegatheringstatechange(event);\n            }\n        };\n        peerConnection.onnegotiationneeded = (event) => {\n            var _a;\n            this.logger.debug(`SessionDescriptionHandler.onnegotiationneeded`);\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.onnegotiationneeded) {\n                this._peerConnectionDelegate.onnegotiationneeded(event);\n            }\n        };\n        peerConnection.onsignalingstatechange = (event) => {\n            var _a;\n            const newState = peerConnection.signalingState;\n            this.logger.debug(`SessionDescriptionHandler.onsignalingstatechange ${newState}`);\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.onsignalingstatechange) {\n                this._peerConnectionDelegate.onsignalingstatechange(event);\n            }\n        };\n        peerConnection.ontrack = (event) => {\n            var _a;\n            const kind = event.track.kind;\n            const enabled = event.track.enabled ? \"enabled\" : \"disabled\";\n            this.logger.debug(`SessionDescriptionHandler.ontrack ${kind} ${enabled}`);\n            this.setRemoteTrack(event.track);\n            if ((_a = this._peerConnectionDelegate) === null || _a === void 0 ? void 0 : _a.ontrack) {\n                this._peerConnectionDelegate.ontrack(event);\n            }\n        };\n    }\n}\n\n\n/***/ }),\n/* 58 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Transport\": () => (/* binding */ Transport)\n/* harmony export */ });\n/* harmony import */ var _api_emitter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(13);\n/* harmony import */ var _api_exceptions_state_transition_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(9);\n/* harmony import */ var _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(48);\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(22);\n\n\n\n\n/**\n * Transport for SIP over secure WebSocket (WSS).\n * @public\n */\nclass Transport {\n    constructor(logger, options) {\n        this._state = _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected;\n        this.transitioningState = false;\n        // state emitter\n        this._stateEventEmitter = new _api_emitter_js__WEBPACK_IMPORTED_MODULE_1__.EmitterImpl();\n        // logger\n        this.logger = logger;\n        // guard deprecated options (remove this in version 16.x)\n        if (options) {\n            // eslint-disable-next-line @typescript-eslint/no-explicit-any\n            const optionsDeprecated = options;\n            const wsServersDeprecated = optionsDeprecated === null || optionsDeprecated === void 0 ? void 0 : optionsDeprecated.wsServers;\n            const maxReconnectionAttemptsDeprecated = optionsDeprecated === null || optionsDeprecated === void 0 ? void 0 : optionsDeprecated.maxReconnectionAttempts;\n            if (wsServersDeprecated !== undefined) {\n                const deprecatedMessage = `The transport option \"wsServers\" as has apparently been specified and has been deprecated. ` +\n                    \"It will no longer be available starting with SIP.js release 0.16.0. Please update accordingly.\";\n                this.logger.warn(deprecatedMessage);\n            }\n            if (maxReconnectionAttemptsDeprecated !== undefined) {\n                const deprecatedMessage = `The transport option \"maxReconnectionAttempts\" as has apparently been specified and has been deprecated. ` +\n                    \"It will no longer be available starting with SIP.js release 0.16.0. Please update accordingly.\";\n                this.logger.warn(deprecatedMessage);\n            }\n            // hack\n            if (wsServersDeprecated && !options.server) {\n                if (typeof wsServersDeprecated === \"string\") {\n                    options.server = wsServersDeprecated;\n                }\n                if (wsServersDeprecated instanceof Array) {\n                    options.server = wsServersDeprecated[0];\n                }\n            }\n        }\n        // initialize configuration\n        this.configuration = Object.assign(Object.assign({}, Transport.defaultOptions), options);\n        // validate server URL\n        const url = this.configuration.server;\n        const parsed = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_2__.Grammar.parse(url, \"absoluteURI\");\n        if (parsed === -1) {\n            this.logger.error(`Invalid WebSocket Server URL \"${url}\"`);\n            throw new Error(\"Invalid WebSocket Server URL\");\n        }\n        if (![\"wss\", \"ws\", \"udp\"].includes(parsed.scheme)) {\n            this.logger.error(`Invalid scheme in WebSocket Server URL \"${url}\"`);\n            throw new Error(\"Invalid scheme in WebSocket Server URL\");\n        }\n        this._protocol = parsed.scheme.toUpperCase();\n    }\n    dispose() {\n        return this.disconnect();\n    }\n    /**\n     * The protocol.\n     *\n     * @remarks\n     * Formatted as defined for the Via header sent-protocol transport.\n     * https://tools.ietf.org/html/rfc3261#section-20.42\n     */\n    get protocol() {\n        return this._protocol;\n    }\n    /**\n     * The URL of the WebSocket Server.\n     */\n    get server() {\n        return this.configuration.server;\n    }\n    /**\n     * Transport state.\n     */\n    get state() {\n        return this._state;\n    }\n    /**\n     * Transport state change emitter.\n     */\n    get stateChange() {\n        return this._stateEventEmitter;\n    }\n    /**\n     * The WebSocket.\n     */\n    get ws() {\n        return this._ws;\n    }\n    /**\n     * Connect to network.\n     * Resolves once connected. Otherwise rejects with an Error.\n     */\n    connect() {\n        return this._connect();\n    }\n    /**\n     * Disconnect from network.\n     * Resolves once disconnected. Otherwise rejects with an Error.\n     */\n    disconnect() {\n        return this._disconnect();\n    }\n    /**\n     * Returns true if the `state` equals \"Connected\".\n     * @remarks\n     * This is equivalent to `state === TransportState.Connected`.\n     */\n    isConnected() {\n        return this.state === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected;\n    }\n    /**\n     * Sends a message.\n     * Resolves once message is sent. Otherwise rejects with an Error.\n     * @param message - Message to send.\n     */\n    send(message) {\n        // Error handling is independent of whether the message was a request or\n        // response.\n        //\n        // If the transport user asks for a message to be sent over an\n        // unreliable transport, and the result is an ICMP error, the behavior\n        // depends on the type of ICMP error.  Host, network, port or protocol\n        // unreachable errors, or parameter problem errors SHOULD cause the\n        // transport layer to inform the transport user of a failure in sending.\n        // Source quench and TTL exceeded ICMP errors SHOULD be ignored.\n        //\n        // If the transport user asks for a request to be sent over a reliable\n        // transport, and the result is a connection failure, the transport\n        // layer SHOULD inform the transport user of a failure in sending.\n        // https://tools.ietf.org/html/rfc3261#section-18.4\n        return this._send(message);\n    }\n    _connect() {\n        this.logger.log(`Connecting ${this.server}`);\n        switch (this.state) {\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting:\n                // If `state` is \"Connecting\", `state` MUST NOT transition before returning.\n                if (this.transitioningState) {\n                    return Promise.reject(this.transitionLoopDetectedError(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting));\n                }\n                if (!this.connectPromise) {\n                    throw new Error(\"Connect promise must be defined.\");\n                }\n                return this.connectPromise; // Already connecting\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected:\n                // If `state` is \"Connected\", `state` MUST NOT transition before returning.\n                if (this.transitioningState) {\n                    return Promise.reject(this.transitionLoopDetectedError(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting));\n                }\n                if (this.connectPromise) {\n                    throw new Error(\"Connect promise must not be defined.\");\n                }\n                return Promise.resolve(); // Already connected\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting:\n                // If `state` is \"Disconnecting\", `state` MUST transition to \"Connecting\" before returning\n                if (this.connectPromise) {\n                    throw new Error(\"Connect promise must not be defined.\");\n                }\n                try {\n                    this.transitionState(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting);\n                }\n                catch (e) {\n                    if (e instanceof _api_exceptions_state_transition_js__WEBPACK_IMPORTED_MODULE_3__.StateTransitionError) {\n                        return Promise.reject(e); // Loop detected\n                    }\n                    throw e;\n                }\n                break;\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected:\n                // If `state` is \"Disconnected\" `state` MUST transition to \"Connecting\" before returning\n                if (this.connectPromise) {\n                    throw new Error(\"Connect promise must not be defined.\");\n                }\n                try {\n                    this.transitionState(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting);\n                }\n                catch (e) {\n                    if (e instanceof _api_exceptions_state_transition_js__WEBPACK_IMPORTED_MODULE_3__.StateTransitionError) {\n                        return Promise.reject(e); // Loop detected\n                    }\n                    throw e;\n                }\n                break;\n            default:\n                throw new Error(\"Unknown state\");\n        }\n        let ws;\n        try {\n            // WebSocket()\n            // https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/WebSocket\n            ws = new WebSocket(this.server, \"sip\");\n            ws.binaryType = \"arraybuffer\"; // set data type of received binary messages\n            ws.addEventListener(\"close\", (ev) => this.onWebSocketClose(ev, ws));\n            ws.addEventListener(\"error\", (ev) => this.onWebSocketError(ev, ws));\n            ws.addEventListener(\"open\", (ev) => this.onWebSocketOpen(ev, ws));\n            ws.addEventListener(\"message\", (ev) => this.onWebSocketMessage(ev, ws));\n            this._ws = ws;\n        }\n        catch (error) {\n            this._ws = undefined;\n            this.logger.error(\"WebSocket construction failed.\");\n            this.logger.error(error.toString());\n            return new Promise((resolve, reject) => {\n                this.connectResolve = resolve;\n                this.connectReject = reject;\n                // The `state` MUST transition to \"Disconnecting\" or \"Disconnected\" before rejecting\n                this.transitionState(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected, error);\n            });\n        }\n        this.connectPromise = new Promise((resolve, reject) => {\n            this.connectResolve = resolve;\n            this.connectReject = reject;\n            this.connectTimeout = setTimeout(() => {\n                this.logger.warn(\"Connect timed out. \" +\n                    \"Exceeded time set in configuration.connectionTimeout: \" +\n                    this.configuration.connectionTimeout +\n                    \"s.\");\n                ws.close(1000); // careful here to use a local reference instead of this._ws\n            }, this.configuration.connectionTimeout * 1000);\n        });\n        return this.connectPromise;\n    }\n    _disconnect() {\n        this.logger.log(`Disconnecting ${this.server}`);\n        switch (this.state) {\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting:\n                // If `state` is \"Connecting\", `state` MUST transition to \"Disconnecting\" before returning.\n                if (this.disconnectPromise) {\n                    throw new Error(\"Disconnect promise must not be defined.\");\n                }\n                try {\n                    this.transitionState(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting);\n                }\n                catch (e) {\n                    if (e instanceof _api_exceptions_state_transition_js__WEBPACK_IMPORTED_MODULE_3__.StateTransitionError) {\n                        return Promise.reject(e); // Loop detected\n                    }\n                    throw e;\n                }\n                break;\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected:\n                // If `state` is \"Connected\", `state` MUST transition to \"Disconnecting\" before returning.\n                if (this.disconnectPromise) {\n                    throw new Error(\"Disconnect promise must not be defined.\");\n                }\n                try {\n                    this.transitionState(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting);\n                }\n                catch (e) {\n                    if (e instanceof _api_exceptions_state_transition_js__WEBPACK_IMPORTED_MODULE_3__.StateTransitionError) {\n                        return Promise.reject(e); // Loop detected\n                    }\n                    throw e;\n                }\n                break;\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting:\n                // If `state` is \"Disconnecting\", `state` MUST NOT transition before returning.\n                if (this.transitioningState) {\n                    return Promise.reject(this.transitionLoopDetectedError(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting));\n                }\n                if (!this.disconnectPromise) {\n                    throw new Error(\"Disconnect promise must be defined.\");\n                }\n                return this.disconnectPromise; // Already disconnecting\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected:\n                // If `state` is \"Disconnected\", `state` MUST NOT transition before returning.\n                if (this.transitioningState) {\n                    return Promise.reject(this.transitionLoopDetectedError(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting));\n                }\n                if (this.disconnectPromise) {\n                    throw new Error(\"Disconnect promise must not be defined.\");\n                }\n                return Promise.resolve(); // Already disconnected\n            default:\n                throw new Error(\"Unknown state\");\n        }\n        if (!this._ws) {\n            throw new Error(\"WebSocket must be defined.\");\n        }\n        const ws = this._ws;\n        this.disconnectPromise = new Promise((resolve, reject) => {\n            this.disconnectResolve = resolve;\n            this.disconnectReject = reject;\n            try {\n                // WebSocket.close()\n                // https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/close\n                ws.close(1000); // careful here to use a local reference instead of this._ws\n            }\n            catch (error) {\n                // Treating this as a coding error as it apparently can only happen\n                // if you pass close() invalid parameters (so it should never happen)\n                this.logger.error(\"WebSocket close failed.\");\n                this.logger.error(error.toString());\n                throw error;\n            }\n        });\n        return this.disconnectPromise;\n    }\n    _send(message) {\n        if (this.configuration.traceSip === true) {\n            this.logger.log(\"Sending WebSocket message:\\n\\n\" + message + \"\\n\");\n        }\n        if (this._state !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected) {\n            return Promise.reject(new Error(\"Not connected.\"));\n        }\n        if (!this._ws) {\n            throw new Error(\"WebSocket undefined.\");\n        }\n        try {\n            // WebSocket.send()\n            // https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send\n            this._ws.send(message);\n        }\n        catch (error) {\n            if (error instanceof Error) {\n                return Promise.reject(error);\n            }\n            return Promise.reject(new Error(\"WebSocket send failed.\"));\n        }\n        return Promise.resolve();\n    }\n    /**\n     * WebSocket \"onclose\" event handler.\n     * @param ev - Event.\n     */\n    onWebSocketClose(ev, ws) {\n        if (ws !== this._ws) {\n            return;\n        }\n        const message = `WebSocket closed ${this.server} (code: ${ev.code})`;\n        const error = !this.disconnectPromise ? new Error(message) : undefined;\n        if (error) {\n            this.logger.warn(\"WebSocket closed unexpectedly\");\n        }\n        this.logger.log(message);\n        // We are about to transition to disconnected, so clear our web socket\n        this._ws = undefined;\n        // The `state` MUST transition to \"Disconnected\" before resolving (assuming `state` is not already \"Disconnected\").\n        this.transitionState(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected, error);\n    }\n    /**\n     * WebSocket \"onerror\" event handler.\n     * @param ev - Event.\n     */\n    onWebSocketError(ev, ws) {\n        if (ws !== this._ws) {\n            return;\n        }\n        this.logger.error(\"WebSocket error occurred.\");\n    }\n    /**\n     * WebSocket \"onmessage\" event handler.\n     * @param ev - Event.\n     */\n    onWebSocketMessage(ev, ws) {\n        if (ws !== this._ws) {\n            return;\n        }\n        const data = ev.data;\n        let finishedData;\n        // CRLF Keep Alive response from server. Clear our keep alive timeout.\n        if (/^(\\r\\n)+$/.test(data)) {\n            this.clearKeepAliveTimeout();\n            if (this.configuration.traceSip === true) {\n                this.logger.log(\"Received WebSocket message with CRLF Keep Alive response\");\n            }\n            return;\n        }\n        if (!data) {\n            this.logger.warn(\"Received empty message, discarding...\");\n            return;\n        }\n        if (typeof data !== \"string\") {\n            // WebSocket binary message.\n            try {\n                finishedData = new TextDecoder().decode(new Uint8Array(data));\n                // TextDecoder (above) is not supported by old browsers, but it correctly decodes UTF-8.\n                // The line below is an ISO 8859-1 (Latin 1) decoder, so just UTF-8 code points that are 1 byte.\n                // It's old code and works in old browsers (IE), so leaving it here in a comment in case someone needs it.\n                // finishedData = String.fromCharCode.apply(null, (new Uint8Array(data) as unknown as Array<number>));\n            }\n            catch (err) {\n                this.logger.error(err.toString());\n                this.logger.error(\"Received WebSocket binary message failed to be converted into string, message discarded\");\n                return;\n            }\n            if (this.configuration.traceSip === true) {\n                this.logger.log(\"Received WebSocket binary message:\\n\\n\" + finishedData + \"\\n\");\n            }\n        }\n        else {\n            // WebSocket text message.\n            finishedData = data;\n            if (this.configuration.traceSip === true) {\n                this.logger.log(\"Received WebSocket text message:\\n\\n\" + finishedData + \"\\n\");\n            }\n        }\n        if (this.state !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected) {\n            this.logger.warn(\"Received message while not connected, discarding...\");\n            return;\n        }\n        if (this.onMessage) {\n            try {\n                this.onMessage(finishedData);\n            }\n            catch (e) {\n                this.logger.error(e.toString());\n                this.logger.error(\"Exception thrown by onMessage callback\");\n                throw e; // rethrow unhandled exception\n            }\n        }\n    }\n    /**\n     * WebSocket \"onopen\" event handler.\n     * @param ev - Event.\n     */\n    onWebSocketOpen(ev, ws) {\n        if (ws !== this._ws) {\n            return;\n        }\n        if (this._state === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting) {\n            this.logger.log(`WebSocket opened ${this.server}`);\n            this.transitionState(_api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected);\n        }\n    }\n    /**\n     * Helper function to generate an Error.\n     * @param state - State transitioning to.\n     */\n    transitionLoopDetectedError(state) {\n        let message = `A state transition loop has been detected.`;\n        message += ` An attempt to transition from ${this._state} to ${state} before the prior transition completed.`;\n        message += ` Perhaps you are synchronously calling connect() or disconnect() from a callback or state change handler?`;\n        this.logger.error(message);\n        return new _api_exceptions_state_transition_js__WEBPACK_IMPORTED_MODULE_3__.StateTransitionError(\"Loop detected.\");\n    }\n    /**\n     * Transition transport state.\n     * @internal\n     */\n    transitionState(newState, error) {\n        const invalidTransition = () => {\n            throw new Error(`Invalid state transition from ${this._state} to ${newState}`);\n        };\n        if (this.transitioningState) {\n            throw this.transitionLoopDetectedError(newState);\n        }\n        this.transitioningState = true;\n        // Validate state transition\n        switch (this._state) {\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting:\n                if (newState !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected &&\n                    newState !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting &&\n                    newState !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected) {\n                    invalidTransition();\n                }\n                break;\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected:\n                if (newState !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting && newState !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected) {\n                    invalidTransition();\n                }\n                break;\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting:\n                if (newState !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting && newState !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected) {\n                    invalidTransition();\n                }\n                break;\n            case _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected:\n                if (newState !== _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting) {\n                    invalidTransition();\n                }\n                break;\n            default:\n                throw new Error(\"Unknown state.\");\n        }\n        // Update state\n        const oldState = this._state;\n        this._state = newState;\n        // Local copies of connect promises (guarding against callbacks changing them indirectly)\n        // const connectPromise = this.connectPromise;\n        const connectResolve = this.connectResolve;\n        const connectReject = this.connectReject;\n        // Reset connect promises if no longer connecting\n        if (oldState === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting) {\n            this.connectPromise = undefined;\n            this.connectResolve = undefined;\n            this.connectReject = undefined;\n        }\n        // Local copies of disconnect promises (guarding against callbacks changing them indirectly)\n        // const disconnectPromise = this.disconnectPromise;\n        const disconnectResolve = this.disconnectResolve;\n        const disconnectReject = this.disconnectReject;\n        // Reset disconnect promises if no longer disconnecting\n        if (oldState === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting) {\n            this.disconnectPromise = undefined;\n            this.disconnectResolve = undefined;\n            this.disconnectReject = undefined;\n        }\n        // Clear any outstanding connect timeout\n        if (this.connectTimeout) {\n            clearTimeout(this.connectTimeout);\n            this.connectTimeout = undefined;\n        }\n        this.logger.log(`Transitioned from ${oldState} to ${this._state}`);\n        this._stateEventEmitter.emit(this._state);\n        //  Transition to Connected\n        if (newState === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected) {\n            this.startSendingKeepAlives();\n            if (this.onConnect) {\n                try {\n                    this.onConnect();\n                }\n                catch (e) {\n                    this.logger.error(e.toString());\n                    this.logger.error(\"Exception thrown by onConnect callback\");\n                    throw e; // rethrow unhandled exception\n                }\n            }\n        }\n        //  Transition from Connected\n        if (oldState === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected) {\n            this.stopSendingKeepAlives();\n            if (this.onDisconnect) {\n                try {\n                    if (error) {\n                        this.onDisconnect(error);\n                    }\n                    else {\n                        this.onDisconnect();\n                    }\n                }\n                catch (e) {\n                    this.logger.error(e.toString());\n                    this.logger.error(\"Exception thrown by onDisconnect callback\");\n                    throw e; // rethrow unhandled exception\n                }\n            }\n        }\n        // Complete connect promise\n        if (oldState === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connecting) {\n            if (!connectResolve) {\n                throw new Error(\"Connect resolve undefined.\");\n            }\n            if (!connectReject) {\n                throw new Error(\"Connect reject undefined.\");\n            }\n            newState === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Connected ? connectResolve() : connectReject(error || new Error(\"Connect aborted.\"));\n        }\n        // Complete disconnect promise\n        if (oldState === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnecting) {\n            if (!disconnectResolve) {\n                throw new Error(\"Disconnect resolve undefined.\");\n            }\n            if (!disconnectReject) {\n                throw new Error(\"Disconnect reject undefined.\");\n            }\n            newState === _api_transport_state_js__WEBPACK_IMPORTED_MODULE_0__.TransportState.Disconnected\n                ? disconnectResolve()\n                : disconnectReject(error || new Error(\"Disconnect aborted.\"));\n        }\n        this.transitioningState = false;\n    }\n    // TODO: Review \"KeepAlive Stuff\".\n    // It is not clear if it works and there are no tests for it.\n    // It was blindly lifted the keep alive code unchanged from earlier transport code.\n    //\n    // From the RFC...\n    //\n    // SIP WebSocket Clients and Servers may keep their WebSocket\n    // connections open by sending periodic WebSocket \"Ping\" frames as\n    // described in [RFC6455], Section 5.5.2.\n    // ...\n    // The indication and use of the CRLF NAT keep-alive mechanism defined\n    // for SIP connection-oriented transports in [RFC5626], Section 3.5.1 or\n    // [RFC6223] are, of course, usable over the transport defined in this\n    // specification.\n    // https://tools.ietf.org/html/rfc7118#section-6\n    //\n    // and...\n    //\n    // The Ping frame contains an opcode of 0x9.\n    // https://tools.ietf.org/html/rfc6455#section-5.5.2\n    //\n    // ==============================\n    // KeepAlive Stuff\n    // ==============================\n    clearKeepAliveTimeout() {\n        if (this.keepAliveDebounceTimeout) {\n            clearTimeout(this.keepAliveDebounceTimeout);\n        }\n        this.keepAliveDebounceTimeout = undefined;\n    }\n    /**\n     * Send a keep-alive (a double-CRLF sequence).\n     */\n    sendKeepAlive() {\n        if (this.keepAliveDebounceTimeout) {\n            // We already have an outstanding keep alive, do not send another.\n            return Promise.resolve();\n        }\n        this.keepAliveDebounceTimeout = setTimeout(() => {\n            this.clearKeepAliveTimeout();\n        }, this.configuration.keepAliveDebounce * 1000);\n        return this.send(\"\\r\\n\\r\\n\");\n    }\n    /**\n     * Start sending keep-alives.\n     */\n    startSendingKeepAlives() {\n        // Compute an amount of time in seconds to wait before sending another keep-alive.\n        const computeKeepAliveTimeout = (upperBound) => {\n            const lowerBound = upperBound * 0.8;\n            return 1000 * (Math.random() * (upperBound - lowerBound) + lowerBound);\n        };\n        if (this.configuration.keepAliveInterval && !this.keepAliveInterval) {\n            this.keepAliveInterval = setInterval(() => {\n                this.sendKeepAlive();\n                this.startSendingKeepAlives();\n            }, computeKeepAliveTimeout(this.configuration.keepAliveInterval));\n        }\n    }\n    /**\n     * Stop sending keep-alives.\n     */\n    stopSendingKeepAlives() {\n        if (this.keepAliveInterval) {\n            clearInterval(this.keepAliveInterval);\n        }\n        if (this.keepAliveDebounceTimeout) {\n            clearTimeout(this.keepAliveDebounceTimeout);\n        }\n        this.keepAliveInterval = undefined;\n        this.keepAliveDebounceTimeout = undefined;\n    }\n}\nTransport.defaultOptions = {\n    server: \"\",\n    connectionTimeout: 5,\n    keepAliveInterval: 0,\n    keepAliveDebounce: 10,\n    traceSip: true\n};\n\n\n/***/ }),\n/* 59 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"DigestAuthentication\": () => (/* binding */ DigestAuthentication)\n/* harmony export */ });\n/* harmony import */ var _md5_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(60);\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(21);\n\n\nfunction MD5(s) {\n    return _md5_js__WEBPACK_IMPORTED_MODULE_0__.Md5.hashStr(s);\n}\n/**\n * Digest Authentication.\n * @internal\n */\nclass DigestAuthentication {\n    /**\n     * Constructor.\n     * @param loggerFactory - LoggerFactory.\n     * @param username - Username.\n     * @param password - Password.\n     */\n    constructor(loggerFactory, ha1, username, password) {\n        this.logger = loggerFactory.getLogger(\"sipjs.digestauthentication\");\n        this.username = username;\n        this.password = password;\n        this.ha1 = ha1;\n        this.nc = 0;\n        this.ncHex = \"00000000\";\n    }\n    /**\n     * Performs Digest authentication given a SIP request and the challenge\n     * received in a response to that request.\n     * @param request -\n     * @param challenge -\n     * @returns true if credentials were successfully generated, false otherwise.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    authenticate(request, challenge, body) {\n        // Inspect and validate the challenge.\n        this.algorithm = challenge.algorithm;\n        this.realm = challenge.realm;\n        this.nonce = challenge.nonce;\n        this.opaque = challenge.opaque;\n        this.stale = challenge.stale;\n        if (this.algorithm) {\n            if (this.algorithm !== \"MD5\") {\n                this.logger.warn(\"challenge with Digest algorithm different than 'MD5', authentication aborted\");\n                return false;\n            }\n        }\n        else {\n            this.algorithm = \"MD5\";\n        }\n        if (!this.realm) {\n            this.logger.warn(\"challenge without Digest realm, authentication aborted\");\n            return false;\n        }\n        if (!this.nonce) {\n            this.logger.warn(\"challenge without Digest nonce, authentication aborted\");\n            return false;\n        }\n        // 'qop' can contain a list of values (Array). Let's choose just one.\n        if (challenge.qop) {\n            if (challenge.qop.indexOf(\"auth\") > -1) {\n                this.qop = \"auth\";\n            }\n            else if (challenge.qop.indexOf(\"auth-int\") > -1) {\n                this.qop = \"auth-int\";\n            }\n            else {\n                // Otherwise 'qop' is present but does not contain 'auth' or 'auth-int', so abort here.\n                this.logger.warn(\"challenge without Digest qop different than 'auth' or 'auth-int', authentication aborted\");\n                return false;\n            }\n        }\n        else {\n            this.qop = undefined;\n        }\n        // Fill other attributes.\n        this.method = request.method;\n        this.uri = request.ruri;\n        this.cnonce = (0,_utils_js__WEBPACK_IMPORTED_MODULE_1__.createRandomToken)(12);\n        this.nc += 1;\n        this.updateNcHex();\n        // nc-value = 8LHEX. Max value = 'FFFFFFFF'.\n        if (this.nc === 4294967296) {\n            this.nc = 1;\n            this.ncHex = \"00000001\";\n        }\n        // Calculate the Digest \"response\" value.\n        this.calculateResponse(body);\n        return true;\n    }\n    /**\n     * Return the Proxy-Authorization or WWW-Authorization header value.\n     */\n    toString() {\n        const authParams = [];\n        if (!this.response) {\n            throw new Error(\"response field does not exist, cannot generate Authorization header\");\n        }\n        authParams.push(\"algorithm=\" + this.algorithm);\n        authParams.push('username=\"' + this.username + '\"');\n        authParams.push('realm=\"' + this.realm + '\"');\n        authParams.push('nonce=\"' + this.nonce + '\"');\n        authParams.push('uri=\"' + this.uri + '\"');\n        authParams.push('response=\"' + this.response + '\"');\n        if (this.opaque) {\n            authParams.push('opaque=\"' + this.opaque + '\"');\n        }\n        if (this.qop) {\n            authParams.push(\"qop=\" + this.qop);\n            authParams.push('cnonce=\"' + this.cnonce + '\"');\n            authParams.push(\"nc=\" + this.ncHex);\n        }\n        return \"Digest \" + authParams.join(\", \");\n    }\n    /**\n     * Generate the 'nc' value as required by Digest in this.ncHex by reading this.nc.\n     */\n    updateNcHex() {\n        const hex = Number(this.nc).toString(16);\n        this.ncHex = \"00000000\".substr(0, 8 - hex.length) + hex;\n    }\n    /**\n     * Generate Digest 'response' value.\n     */\n    calculateResponse(body) {\n        let ha1, ha2;\n        // HA1 = MD5(A1) = MD5(username:realm:password)\n        ha1 = this.ha1;\n        if (ha1 === \"\" || ha1 === undefined) {\n            ha1 = MD5(this.username + \":\" + this.realm + \":\" + this.password);\n        }\n        if (this.qop === \"auth\") {\n            // HA2 = MD5(A2) = MD5(method:digestURI)\n            ha2 = MD5(this.method + \":\" + this.uri);\n            // response = MD5(HA1:nonce:nonceCount:credentialsNonce:qop:HA2)`\n            this.response = MD5(ha1 + \":\" + this.nonce + \":\" + this.ncHex + \":\" + this.cnonce + \":auth:\" + ha2);\n        }\n        else if (this.qop === \"auth-int\") {\n            // HA2 = MD5(A2) = MD5(method:digestURI:MD5(entityBody))\n            ha2 = MD5(this.method + \":\" + this.uri + \":\" + MD5(body ? body : \"\"));\n            // response = MD5(HA1:nonce:nonceCount:credentialsNonce:qop:HA2)\n            this.response = MD5(ha1 + \":\" + this.nonce + \":\" + this.ncHex + \":\" + this.cnonce + \":auth-int:\" + ha2);\n        }\n        else if (this.qop === undefined) {\n            // HA2 = MD5(A2) = MD5(method:digestURI)\n            ha2 = MD5(this.method + \":\" + this.uri);\n            // response = MD5(HA1:nonce:HA2)\n            this.response = MD5(ha1 + \":\" + this.nonce + \":\" + ha2);\n        }\n    }\n}\n\n\n/***/ }),\n/* 60 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Md5\": () => (/* binding */ Md5)\n/* harmony export */ });\n/* eslint-disable */\n//\n// Scoped from: https://github.com/cotag/ts-md5\n//\n/*\n\nTypeScript Md5\n==============\n\nBased on work by\n* Joseph Myers: http://www.myersdaily.org/joseph/javascript/md5-text.html\n* André Cruz: https://github.com/satazor/SparkMD5\n* Raymond Hill: https://github.com/gorhill/yamd5.js\n\nEffectively a TypeScrypt re-write of Raymond Hill JS Library\n\nThe MIT License (MIT)\n\nCopyright (C) 2014 Raymond Hill\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n\n            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\n                    Version 2, December 2004\n\n Copyright (C) 2015 André Cruz <amdfcruz@gmail.com>\n\n Everyone is permitted to copy and distribute verbatim or modified\n copies of this license document, and changing it is allowed as long\n as the name is changed.\n\n            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\n   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n  0. You just DO WHAT THE FUCK YOU WANT TO.\n\n\n*/\nclass Md5 {\n    constructor() {\n        this._dataLength = 0;\n        this._bufferLength = 0;\n        this._state = new Int32Array(4);\n        this._buffer = new ArrayBuffer(68);\n        this._buffer8 = new Uint8Array(this._buffer, 0, 68);\n        this._buffer32 = new Uint32Array(this._buffer, 0, 17);\n        this.start();\n    }\n    static hashStr(str, raw = false) {\n        return this.onePassHasher\n            .start()\n            .appendStr(str)\n            .end(raw);\n    }\n    static hashAsciiStr(str, raw = false) {\n        return this.onePassHasher\n            .start()\n            .appendAsciiStr(str)\n            .end(raw);\n    }\n    static _hex(x) {\n        const hc = Md5.hexChars;\n        const ho = Md5.hexOut;\n        let n;\n        let offset;\n        let j;\n        let i;\n        for (i = 0; i < 4; i += 1) {\n            offset = i * 8;\n            n = x[i];\n            for (j = 0; j < 8; j += 2) {\n                ho[offset + 1 + j] = hc.charAt(n & 0x0F);\n                n >>>= 4;\n                ho[offset + 0 + j] = hc.charAt(n & 0x0F);\n                n >>>= 4;\n            }\n        }\n        return ho.join('');\n    }\n    static _md5cycle(x, k) {\n        let a = x[0];\n        let b = x[1];\n        let c = x[2];\n        let d = x[3];\n        // ff()\n        a += (b & c | ~b & d) + k[0] - 680876936 | 0;\n        a = (a << 7 | a >>> 25) + b | 0;\n        d += (a & b | ~a & c) + k[1] - 389564586 | 0;\n        d = (d << 12 | d >>> 20) + a | 0;\n        c += (d & a | ~d & b) + k[2] + 606105819 | 0;\n        c = (c << 17 | c >>> 15) + d | 0;\n        b += (c & d | ~c & a) + k[3] - 1044525330 | 0;\n        b = (b << 22 | b >>> 10) + c | 0;\n        a += (b & c | ~b & d) + k[4] - 176418897 | 0;\n        a = (a << 7 | a >>> 25) + b | 0;\n        d += (a & b | ~a & c) + k[5] + 1200080426 | 0;\n        d = (d << 12 | d >>> 20) + a | 0;\n        c += (d & a | ~d & b) + k[6] - 1473231341 | 0;\n        c = (c << 17 | c >>> 15) + d | 0;\n        b += (c & d | ~c & a) + k[7] - 45705983 | 0;\n        b = (b << 22 | b >>> 10) + c | 0;\n        a += (b & c | ~b & d) + k[8] + 1770035416 | 0;\n        a = (a << 7 | a >>> 25) + b | 0;\n        d += (a & b | ~a & c) + k[9] - 1958414417 | 0;\n        d = (d << 12 | d >>> 20) + a | 0;\n        c += (d & a | ~d & b) + k[10] - 42063 | 0;\n        c = (c << 17 | c >>> 15) + d | 0;\n        b += (c & d | ~c & a) + k[11] - 1990404162 | 0;\n        b = (b << 22 | b >>> 10) + c | 0;\n        a += (b & c | ~b & d) + k[12] + 1804603682 | 0;\n        a = (a << 7 | a >>> 25) + b | 0;\n        d += (a & b | ~a & c) + k[13] - 40341101 | 0;\n        d = (d << 12 | d >>> 20) + a | 0;\n        c += (d & a | ~d & b) + k[14] - 1502002290 | 0;\n        c = (c << 17 | c >>> 15) + d | 0;\n        b += (c & d | ~c & a) + k[15] + 1236535329 | 0;\n        b = (b << 22 | b >>> 10) + c | 0;\n        // gg()\n        a += (b & d | c & ~d) + k[1] - 165796510 | 0;\n        a = (a << 5 | a >>> 27) + b | 0;\n        d += (a & c | b & ~c) + k[6] - 1069501632 | 0;\n        d = (d << 9 | d >>> 23) + a | 0;\n        c += (d & b | a & ~b) + k[11] + 643717713 | 0;\n        c = (c << 14 | c >>> 18) + d | 0;\n        b += (c & a | d & ~a) + k[0] - 373897302 | 0;\n        b = (b << 20 | b >>> 12) + c | 0;\n        a += (b & d | c & ~d) + k[5] - 701558691 | 0;\n        a = (a << 5 | a >>> 27) + b | 0;\n        d += (a & c | b & ~c) + k[10] + 38016083 | 0;\n        d = (d << 9 | d >>> 23) + a | 0;\n        c += (d & b | a & ~b) + k[15] - 660478335 | 0;\n        c = (c << 14 | c >>> 18) + d | 0;\n        b += (c & a | d & ~a) + k[4] - 405537848 | 0;\n        b = (b << 20 | b >>> 12) + c | 0;\n        a += (b & d | c & ~d) + k[9] + 568446438 | 0;\n        a = (a << 5 | a >>> 27) + b | 0;\n        d += (a & c | b & ~c) + k[14] - 1019803690 | 0;\n        d = (d << 9 | d >>> 23) + a | 0;\n        c += (d & b | a & ~b) + k[3] - 187363961 | 0;\n        c = (c << 14 | c >>> 18) + d | 0;\n        b += (c & a | d & ~a) + k[8] + 1163531501 | 0;\n        b = (b << 20 | b >>> 12) + c | 0;\n        a += (b & d | c & ~d) + k[13] - 1444681467 | 0;\n        a = (a << 5 | a >>> 27) + b | 0;\n        d += (a & c | b & ~c) + k[2] - 51403784 | 0;\n        d = (d << 9 | d >>> 23) + a | 0;\n        c += (d & b | a & ~b) + k[7] + 1735328473 | 0;\n        c = (c << 14 | c >>> 18) + d | 0;\n        b += (c & a | d & ~a) + k[12] - 1926607734 | 0;\n        b = (b << 20 | b >>> 12) + c | 0;\n        // hh()\n        a += (b ^ c ^ d) + k[5] - 378558 | 0;\n        a = (a << 4 | a >>> 28) + b | 0;\n        d += (a ^ b ^ c) + k[8] - 2022574463 | 0;\n        d = (d << 11 | d >>> 21) + a | 0;\n        c += (d ^ a ^ b) + k[11] + 1839030562 | 0;\n        c = (c << 16 | c >>> 16) + d | 0;\n        b += (c ^ d ^ a) + k[14] - 35309556 | 0;\n        b = (b << 23 | b >>> 9) + c | 0;\n        a += (b ^ c ^ d) + k[1] - 1530992060 | 0;\n        a = (a << 4 | a >>> 28) + b | 0;\n        d += (a ^ b ^ c) + k[4] + 1272893353 | 0;\n        d = (d << 11 | d >>> 21) + a | 0;\n        c += (d ^ a ^ b) + k[7] - 155497632 | 0;\n        c = (c << 16 | c >>> 16) + d | 0;\n        b += (c ^ d ^ a) + k[10] - 1094730640 | 0;\n        b = (b << 23 | b >>> 9) + c | 0;\n        a += (b ^ c ^ d) + k[13] + 681279174 | 0;\n        a = (a << 4 | a >>> 28) + b | 0;\n        d += (a ^ b ^ c) + k[0] - 358537222 | 0;\n        d = (d << 11 | d >>> 21) + a | 0;\n        c += (d ^ a ^ b) + k[3] - 722521979 | 0;\n        c = (c << 16 | c >>> 16) + d | 0;\n        b += (c ^ d ^ a) + k[6] + 76029189 | 0;\n        b = (b << 23 | b >>> 9) + c | 0;\n        a += (b ^ c ^ d) + k[9] - 640364487 | 0;\n        a = (a << 4 | a >>> 28) + b | 0;\n        d += (a ^ b ^ c) + k[12] - 421815835 | 0;\n        d = (d << 11 | d >>> 21) + a | 0;\n        c += (d ^ a ^ b) + k[15] + 530742520 | 0;\n        c = (c << 16 | c >>> 16) + d | 0;\n        b += (c ^ d ^ a) + k[2] - 995338651 | 0;\n        b = (b << 23 | b >>> 9) + c | 0;\n        // ii()\n        a += (c ^ (b | ~d)) + k[0] - 198630844 | 0;\n        a = (a << 6 | a >>> 26) + b | 0;\n        d += (b ^ (a | ~c)) + k[7] + 1126891415 | 0;\n        d = (d << 10 | d >>> 22) + a | 0;\n        c += (a ^ (d | ~b)) + k[14] - 1416354905 | 0;\n        c = (c << 15 | c >>> 17) + d | 0;\n        b += (d ^ (c | ~a)) + k[5] - 57434055 | 0;\n        b = (b << 21 | b >>> 11) + c | 0;\n        a += (c ^ (b | ~d)) + k[12] + 1700485571 | 0;\n        a = (a << 6 | a >>> 26) + b | 0;\n        d += (b ^ (a | ~c)) + k[3] - 1894986606 | 0;\n        d = (d << 10 | d >>> 22) + a | 0;\n        c += (a ^ (d | ~b)) + k[10] - 1051523 | 0;\n        c = (c << 15 | c >>> 17) + d | 0;\n        b += (d ^ (c | ~a)) + k[1] - 2054922799 | 0;\n        b = (b << 21 | b >>> 11) + c | 0;\n        a += (c ^ (b | ~d)) + k[8] + 1873313359 | 0;\n        a = (a << 6 | a >>> 26) + b | 0;\n        d += (b ^ (a | ~c)) + k[15] - 30611744 | 0;\n        d = (d << 10 | d >>> 22) + a | 0;\n        c += (a ^ (d | ~b)) + k[6] - 1560198380 | 0;\n        c = (c << 15 | c >>> 17) + d | 0;\n        b += (d ^ (c | ~a)) + k[13] + 1309151649 | 0;\n        b = (b << 21 | b >>> 11) + c | 0;\n        a += (c ^ (b | ~d)) + k[4] - 145523070 | 0;\n        a = (a << 6 | a >>> 26) + b | 0;\n        d += (b ^ (a | ~c)) + k[11] - 1120210379 | 0;\n        d = (d << 10 | d >>> 22) + a | 0;\n        c += (a ^ (d | ~b)) + k[2] + 718787259 | 0;\n        c = (c << 15 | c >>> 17) + d | 0;\n        b += (d ^ (c | ~a)) + k[9] - 343485551 | 0;\n        b = (b << 21 | b >>> 11) + c | 0;\n        x[0] = a + x[0] | 0;\n        x[1] = b + x[1] | 0;\n        x[2] = c + x[2] | 0;\n        x[3] = d + x[3] | 0;\n    }\n    start() {\n        this._dataLength = 0;\n        this._bufferLength = 0;\n        this._state.set(Md5.stateIdentity);\n        return this;\n    }\n    // Char to code point to to array conversion:\n    // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt\n    // #Example.3A_Fixing_charCodeAt_to_handle_non-Basic-Multilingual-Plane_characters_if_their_presence_earlier_in_the_string_is_unknown\n    appendStr(str) {\n        const buf8 = this._buffer8;\n        const buf32 = this._buffer32;\n        let bufLen = this._bufferLength;\n        let code;\n        let i;\n        for (i = 0; i < str.length; i += 1) {\n            code = str.charCodeAt(i);\n            if (code < 128) {\n                buf8[bufLen++] = code;\n            }\n            else if (code < 0x800) {\n                buf8[bufLen++] = (code >>> 6) + 0xC0;\n                buf8[bufLen++] = code & 0x3F | 0x80;\n            }\n            else if (code < 0xD800 || code > 0xDBFF) {\n                buf8[bufLen++] = (code >>> 12) + 0xE0;\n                buf8[bufLen++] = (code >>> 6 & 0x3F) | 0x80;\n                buf8[bufLen++] = (code & 0x3F) | 0x80;\n            }\n            else {\n                code = ((code - 0xD800) * 0x400) + (str.charCodeAt(++i) - 0xDC00) + 0x10000;\n                if (code > 0x10FFFF) {\n                    throw new Error('Unicode standard supports code points up to U+10FFFF');\n                }\n                buf8[bufLen++] = (code >>> 18) + 0xF0;\n                buf8[bufLen++] = (code >>> 12 & 0x3F) | 0x80;\n                buf8[bufLen++] = (code >>> 6 & 0x3F) | 0x80;\n                buf8[bufLen++] = (code & 0x3F) | 0x80;\n            }\n            if (bufLen >= 64) {\n                this._dataLength += 64;\n                Md5._md5cycle(this._state, buf32);\n                bufLen -= 64;\n                buf32[0] = buf32[16];\n            }\n        }\n        this._bufferLength = bufLen;\n        return this;\n    }\n    appendAsciiStr(str) {\n        const buf8 = this._buffer8;\n        const buf32 = this._buffer32;\n        let bufLen = this._bufferLength;\n        let i;\n        let j = 0;\n        for (;;) {\n            i = Math.min(str.length - j, 64 - bufLen);\n            while (i--) {\n                buf8[bufLen++] = str.charCodeAt(j++);\n            }\n            if (bufLen < 64) {\n                break;\n            }\n            this._dataLength += 64;\n            Md5._md5cycle(this._state, buf32);\n            bufLen = 0;\n        }\n        this._bufferLength = bufLen;\n        return this;\n    }\n    appendByteArray(input) {\n        const buf8 = this._buffer8;\n        const buf32 = this._buffer32;\n        let bufLen = this._bufferLength;\n        let i;\n        let j = 0;\n        for (;;) {\n            i = Math.min(input.length - j, 64 - bufLen);\n            while (i--) {\n                buf8[bufLen++] = input[j++];\n            }\n            if (bufLen < 64) {\n                break;\n            }\n            this._dataLength += 64;\n            Md5._md5cycle(this._state, buf32);\n            bufLen = 0;\n        }\n        this._bufferLength = bufLen;\n        return this;\n    }\n    getState() {\n        const self = this;\n        const s = self._state;\n        return {\n            buffer: String.fromCharCode.apply(null, self._buffer8),\n            buflen: self._bufferLength,\n            length: self._dataLength,\n            state: [s[0], s[1], s[2], s[3]]\n        };\n    }\n    setState(state) {\n        const buf = state.buffer;\n        const x = state.state;\n        const s = this._state;\n        let i;\n        this._dataLength = state.length;\n        this._bufferLength = state.buflen;\n        s[0] = x[0];\n        s[1] = x[1];\n        s[2] = x[2];\n        s[3] = x[3];\n        for (i = 0; i < buf.length; i += 1) {\n            this._buffer8[i] = buf.charCodeAt(i);\n        }\n    }\n    end(raw = false) {\n        const bufLen = this._bufferLength;\n        const buf8 = this._buffer8;\n        const buf32 = this._buffer32;\n        const i = (bufLen >> 2) + 1;\n        let dataBitsLen;\n        this._dataLength += bufLen;\n        buf8[bufLen] = 0x80;\n        buf8[bufLen + 1] = buf8[bufLen + 2] = buf8[bufLen + 3] = 0;\n        buf32.set(Md5.buffer32Identity.subarray(i), i);\n        if (bufLen > 55) {\n            Md5._md5cycle(this._state, buf32);\n            buf32.set(Md5.buffer32Identity);\n        }\n        // Do the final computation based on the tail and length\n        // Beware that the final length may not fit in 32 bits so we take care of that\n        dataBitsLen = this._dataLength * 8;\n        if (dataBitsLen <= 0xFFFFFFFF) {\n            buf32[14] = dataBitsLen;\n        }\n        else {\n            const matches = dataBitsLen.toString(16).match(/(.*?)(.{0,8})$/);\n            if (matches === null) {\n                return;\n            }\n            const lo = parseInt(matches[2], 16);\n            const hi = parseInt(matches[1], 16) || 0;\n            buf32[14] = lo;\n            buf32[15] = hi;\n        }\n        Md5._md5cycle(this._state, buf32);\n        return raw ? this._state : Md5._hex(this._state);\n    }\n}\n// Private Static Variables\nMd5.stateIdentity = new Int32Array([1732584193, -271733879, -1732584194, 271733878]);\nMd5.buffer32Identity = new Int32Array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);\nMd5.hexChars = '0123456789abcdef';\nMd5.hexOut = [];\n// Permanent instance is to use for one-call hashing\nMd5.onePassHasher = new Md5();\nif (Md5.hashStr('hello') !== '5d41402abc4b2a76b9719d911017c592') {\n    console.error('Md5 self test failed.');\n}\n\n\n/***/ }),\n/* 61 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"UserAgentCore\": () => (/* binding */ UserAgentCore)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(30);\n/* harmony import */ var _messages_outgoing_request_message_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(28);\n/* harmony import */ var _messages_outgoing_response_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(84);\n/* harmony import */ var _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(72);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(65);\n/* harmony import */ var _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(64);\n/* harmony import */ var _user_agents_invite_user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(62);\n/* harmony import */ var _user_agents_invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(96);\n/* harmony import */ var _user_agents_message_user_agent_client_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(77);\n/* harmony import */ var _user_agents_message_user_agent_server_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(87);\n/* harmony import */ var _user_agents_notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(88);\n/* harmony import */ var _user_agents_publish_user_agent_client_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(91);\n/* harmony import */ var _user_agents_refer_user_agent_server_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(90);\n/* harmony import */ var _user_agents_register_user_agent_client_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(92);\n/* harmony import */ var _user_agents_register_user_agent_server_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(97);\n/* harmony import */ var _user_agents_subscribe_user_agent_client_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(93);\n/* harmony import */ var _user_agents_subscribe_user_agent_server_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(98);\n/* harmony import */ var _user_agents_user_agent_client_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(63);\n/* harmony import */ var _allowed_methods_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(29);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * This is ported from UA.C.ACCEPTED_BODY_TYPES.\n * FIXME: TODO: Should be configurable/variable.\n */\nconst acceptedBodyTypes = [\"application/sdp\", \"application/dtmf-relay\"];\n/**\n * User Agent Core.\n * @remarks\n * Core designates the functions specific to a particular type\n * of SIP entity, i.e., specific to either a stateful or stateless\n * proxy, a user agent or registrar.  All cores, except those for\n * the stateless proxy, are transaction users.\n * https://tools.ietf.org/html/rfc3261#section-6\n *\n * UAC Core: The set of processing functions required of a UAC that\n * reside above the transaction and transport layers.\n * https://tools.ietf.org/html/rfc3261#section-6\n *\n * UAS Core: The set of processing functions required at a UAS that\n * resides above the transaction and transport layers.\n * https://tools.ietf.org/html/rfc3261#section-6\n * @public\n */\nclass UserAgentCore {\n    /**\n     * Constructor.\n     * @param configuration - Configuration.\n     * @param delegate - Delegate.\n     */\n    constructor(configuration, delegate = {}) {\n        /** UACs. */\n        this.userAgentClients = new Map();\n        /** UASs. */\n        this.userAgentServers = new Map();\n        this.configuration = configuration;\n        this.delegate = delegate;\n        this.dialogs = new Map();\n        this.subscribers = new Map();\n        this.logger = configuration.loggerFactory.getLogger(\"sip.user-agent-core\");\n    }\n    /** Destructor. */\n    dispose() {\n        this.reset();\n    }\n    /** Reset. */\n    reset() {\n        this.dialogs.forEach((dialog) => dialog.dispose());\n        this.dialogs.clear();\n        this.subscribers.forEach((subscriber) => subscriber.dispose());\n        this.subscribers.clear();\n        this.userAgentClients.forEach((uac) => uac.dispose());\n        this.userAgentClients.clear();\n        this.userAgentServers.forEach((uac) => uac.dispose());\n        this.userAgentServers.clear();\n    }\n    /** Logger factory. */\n    get loggerFactory() {\n        return this.configuration.loggerFactory;\n    }\n    /** Transport. */\n    get transport() {\n        const transport = this.configuration.transportAccessor();\n        if (!transport) {\n            throw new Error(\"Transport undefined.\");\n        }\n        return transport;\n    }\n    /**\n     * Send INVITE.\n     * @param request - Outgoing request.\n     * @param delegate - Request delegate.\n     */\n    invite(request, delegate) {\n        return new _user_agents_invite_user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.InviteUserAgentClient(this, request, delegate);\n    }\n    /**\n     * Send MESSAGE.\n     * @param request - Outgoing request.\n     * @param delegate - Request delegate.\n     */\n    message(request, delegate) {\n        return new _user_agents_message_user_agent_client_js__WEBPACK_IMPORTED_MODULE_1__.MessageUserAgentClient(this, request, delegate);\n    }\n    /**\n     * Send PUBLISH.\n     * @param request - Outgoing request.\n     * @param delegate - Request delegate.\n     */\n    publish(request, delegate) {\n        return new _user_agents_publish_user_agent_client_js__WEBPACK_IMPORTED_MODULE_2__.PublishUserAgentClient(this, request, delegate);\n    }\n    /**\n     * Send REGISTER.\n     * @param request - Outgoing request.\n     * @param delegate - Request delegate.\n     */\n    register(request, delegate) {\n        return new _user_agents_register_user_agent_client_js__WEBPACK_IMPORTED_MODULE_3__.RegisterUserAgentClient(this, request, delegate);\n    }\n    /**\n     * Send SUBSCRIBE.\n     * @param request - Outgoing request.\n     * @param delegate - Request delegate.\n     */\n    subscribe(request, delegate) {\n        return new _user_agents_subscribe_user_agent_client_js__WEBPACK_IMPORTED_MODULE_4__.SubscribeUserAgentClient(this, request, delegate);\n    }\n    /**\n     * Send a request.\n     * @param request - Outgoing request.\n     * @param delegate - Request delegate.\n     */\n    request(request, delegate) {\n        return new _user_agents_user_agent_client_js__WEBPACK_IMPORTED_MODULE_5__.UserAgentClient(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_6__.NonInviteClientTransaction, this, request, delegate);\n    }\n    /**\n     * Outgoing request message factory function.\n     * @param method - Method.\n     * @param requestURI - Request-URI.\n     * @param fromURI - From URI.\n     * @param toURI - To URI.\n     * @param options - Request options.\n     * @param extraHeaders - Extra headers to add.\n     * @param body - Message body.\n     */\n    makeOutgoingRequestMessage(method, requestURI, fromURI, toURI, options, extraHeaders, body) {\n        // default values from user agent configuration\n        const callIdPrefix = this.configuration.sipjsId;\n        const fromDisplayName = this.configuration.displayName;\n        const forceRport = this.configuration.viaForceRport;\n        const hackViaTcp = this.configuration.hackViaTcp;\n        const optionTags = this.configuration.supportedOptionTags.slice();\n        if (method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.REGISTER) {\n            optionTags.push(\"path\", \"gruu\");\n        }\n        if (method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.INVITE && (this.configuration.contact.pubGruu || this.configuration.contact.tempGruu)) {\n            optionTags.push(\"gruu\");\n        }\n        const routeSet = this.configuration.routeSet;\n        const userAgentString = this.configuration.userAgentHeaderFieldValue;\n        const viaHost = this.configuration.viaHost;\n        const defaultOptions = {\n            callIdPrefix,\n            forceRport,\n            fromDisplayName,\n            hackViaTcp,\n            optionTags,\n            routeSet,\n            userAgentString,\n            viaHost\n        };\n        // merge provided options with default options\n        const requestOptions = Object.assign(Object.assign({}, defaultOptions), options);\n        return new _messages_outgoing_request_message_js__WEBPACK_IMPORTED_MODULE_8__.OutgoingRequestMessage(method, requestURI, fromURI, toURI, requestOptions, extraHeaders, body);\n    }\n    /**\n     * Handle an incoming request message from the transport.\n     * @param message - Incoming request message from transport layer.\n     */\n    receiveIncomingRequestFromTransport(message) {\n        this.receiveRequestFromTransport(message);\n    }\n    /**\n     * Handle an incoming response message from the transport.\n     * @param message - Incoming response message from transport layer.\n     */\n    receiveIncomingResponseFromTransport(message) {\n        this.receiveResponseFromTransport(message);\n    }\n    /**\n     * A stateless UAS is a UAS that does not maintain transaction state.\n     * It replies to requests normally, but discards any state that would\n     * ordinarily be retained by a UAS after a response has been sent.  If a\n     * stateless UAS receives a retransmission of a request, it regenerates\n     * the response and re-sends it, just as if it were replying to the first\n     * instance of the request. A UAS cannot be stateless unless the request\n     * processing for that method would always result in the same response\n     * if the requests are identical. This rules out stateless registrars,\n     * for example.  Stateless UASs do not use a transaction layer; they\n     * receive requests directly from the transport layer and send responses\n     * directly to the transport layer.\n     * https://tools.ietf.org/html/rfc3261#section-8.2.7\n     * @param message - Incoming request message to reply to.\n     * @param statusCode - Status code to reply with.\n     */\n    replyStateless(message, options) {\n        const userAgent = this.configuration.userAgentHeaderFieldValue;\n        const supported = this.configuration.supportedOptionTagsResponse;\n        options = Object.assign(Object.assign({}, options), { userAgent, supported });\n        const response = (0,_messages_outgoing_response_js__WEBPACK_IMPORTED_MODULE_9__.constructOutgoingResponse)(message, options);\n        this.transport.send(response.message).catch((error) => {\n            // If the transport rejects, it SHOULD reject with a TransportError.\n            // But the transport may be external code, so we are careful...\n            if (error instanceof Error) {\n                this.logger.error(error.message);\n            }\n            this.logger.error(`Transport error occurred sending stateless reply to ${message.method} request.`);\n            // TODO: Currently there is no hook to provide notification that a transport error occurred\n            // and throwing would result in an uncaught error (in promise), so we silently eat the error.\n            // Furthermore, silently eating stateless reply transport errors is arguably what we want to do here.\n        });\n        return response;\n    }\n    /**\n     * In Section 18.2.1, replace the last paragraph with:\n     *\n     * Next, the server transport attempts to match the request to a\n     * server transaction.  It does so using the matching rules described\n     * in Section 17.2.3.  If a matching server transaction is found, the\n     * request is passed to that transaction for processing.  If no match\n     * is found, the request is passed to the core, which may decide to\n     * construct a new server transaction for that request.\n     * https://tools.ietf.org/html/rfc6026#section-8.10\n     * @param message - Incoming request message from transport layer.\n     */\n    receiveRequestFromTransport(message) {\n        // When a request is received from the network by the server, it has to\n        // be matched to an existing transaction.  This is accomplished in the\n        // following manner.\n        //\n        // The branch parameter in the topmost Via header field of the request\n        // is examined.  If it is present and begins with the magic cookie\n        // \"z9hG4bK\", the request was generated by a client transaction\n        // compliant to this specification.  Therefore, the branch parameter\n        // will be unique across all transactions sent by that client.  The\n        // request matches a transaction if:\n        //\n        //    1. the branch parameter in the request is equal to the one in the\n        //       top Via header field of the request that created the\n        //       transaction, and\n        //\n        //    2. the sent-by value in the top Via of the request is equal to the\n        //       one in the request that created the transaction, and\n        //\n        //    3. the method of the request matches the one that created the\n        //       transaction, except for ACK, where the method of the request\n        //       that created the transaction is INVITE.\n        //\n        // This matching rule applies to both INVITE and non-INVITE transactions\n        // alike.\n        //\n        //    The sent-by value is used as part of the matching process because\n        //    there could be accidental or malicious duplication of branch\n        //    parameters from different clients.\n        // https://tools.ietf.org/html/rfc3261#section-17.2.3\n        const transactionId = message.viaBranch; // FIXME: Currently only using rule 1...\n        const uas = this.userAgentServers.get(transactionId);\n        // When receiving an ACK that matches an existing INVITE server\n        // transaction and that does not contain a branch parameter containing\n        // the magic cookie defined in RFC 3261, the matching transaction MUST\n        // be checked to see if it is in the \"Accepted\" state.  If it is, then\n        // the ACK must be passed directly to the transaction user instead of\n        // being absorbed by the transaction state machine.  This is necessary\n        // as requests from RFC 2543 clients will not include a unique branch\n        // parameter, and the mechanisms for calculating the transaction ID from\n        // such a request will be the same for both INVITE and ACKs.\n        // https://tools.ietf.org/html/rfc6026#section-6\n        // Any ACKs received from the network while in the \"Accepted\" state MUST be\n        // passed directly to the TU and not absorbed.\n        // https://tools.ietf.org/html/rfc6026#section-7.1\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.ACK) {\n            if (uas && uas.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_10__.TransactionState.Accepted) {\n                if (uas instanceof _user_agents_invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_11__.InviteUserAgentServer) {\n                    // These are ACKs matching an INVITE server transaction.\n                    // These should never happen with RFC 3261 compliant user agents\n                    // (would be a broken ACK to negative final response or something)\n                    // but is apparently how RFC 2543 user agents do things.\n                    // We are not currently supporting this case.\n                    // NOTE: Not backwards compatible with RFC 2543 (no support for strict-routing).\n                    this.logger.warn(`Discarding out of dialog ACK after 2xx response sent on transaction ${transactionId}.`);\n                    return;\n                }\n            }\n        }\n        // The CANCEL method requests that the TU at the server side cancel a\n        // pending transaction.  The TU determines the transaction to be\n        // cancelled by taking the CANCEL request, and then assuming that the\n        // request method is anything but CANCEL or ACK and applying the\n        // transaction matching procedures of Section 17.2.3.  The matching\n        // transaction is the one to be cancelled.\n        // https://tools.ietf.org/html/rfc3261#section-9.2\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.CANCEL) {\n            if (uas) {\n                // Regardless of the method of the original request, as long as the\n                // CANCEL matched an existing transaction, the UAS answers the CANCEL\n                // request itself with a 200 (OK) response.\n                // https://tools.ietf.org/html/rfc3261#section-9.2\n                this.replyStateless(message, { statusCode: 200 });\n                // If the transaction for the original request still exists, the behavior\n                // of the UAS on receiving a CANCEL request depends on whether it has already\n                // sent a final response for the original request. If it has, the CANCEL\n                // request has no effect on the processing of the original request, no\n                // effect on any session state, and no effect on the responses generated\n                // for the original request. If the UAS has not issued a final response\n                // for the original request, its behavior depends on the method of the\n                // original request. If the original request was an INVITE, the UAS\n                // SHOULD immediately respond to the INVITE with a 487 (Request\n                // Terminated).\n                // https://tools.ietf.org/html/rfc3261#section-9.2\n                if (uas.transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_12__.InviteServerTransaction &&\n                    uas.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_10__.TransactionState.Proceeding) {\n                    if (uas instanceof _user_agents_invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_11__.InviteUserAgentServer) {\n                        uas.receiveCancel(message);\n                    }\n                    // A CANCEL request has no impact on the processing of\n                    // transactions with any other method defined in this specification.\n                    // https://tools.ietf.org/html/rfc3261#section-9.2\n                }\n            }\n            else {\n                // If the UAS did not find a matching transaction for the CANCEL\n                // according to the procedure above, it SHOULD respond to the CANCEL\n                // with a 481 (Call Leg/Transaction Does Not Exist).\n                // https://tools.ietf.org/html/rfc3261#section-9.2\n                this.replyStateless(message, { statusCode: 481 });\n            }\n            return;\n        }\n        // If a matching server transaction is found, the request is passed to that\n        // transaction for processing.\n        // https://tools.ietf.org/html/rfc6026#section-8.10\n        if (uas) {\n            uas.transaction.receiveRequest(message);\n            return;\n        }\n        // If no match is found, the request is passed to the core, which may decide to\n        // construct a new server transaction for that request.\n        // https://tools.ietf.org/html/rfc6026#section-8.10\n        this.receiveRequest(message);\n        return;\n    }\n    /**\n     * UAC and UAS procedures depend strongly on two factors.  First, based\n     * on whether the request or response is inside or outside of a dialog,\n     * and second, based on the method of a request.  Dialogs are discussed\n     * thoroughly in Section 12; they represent a peer-to-peer relationship\n     * between user agents and are established by specific SIP methods, such\n     * as INVITE.\n     * @param message - Incoming request message.\n     */\n    receiveRequest(message) {\n        // 8.2 UAS Behavior\n        // UASs SHOULD process the requests in the order of the steps that\n        // follow in this section (that is, starting with authentication, then\n        // inspecting the method, the header fields, and so on throughout the\n        // remainder of this section).\n        // https://tools.ietf.org/html/rfc3261#section-8.2\n        // 8.2.1 Method Inspection\n        // Once a request is authenticated (or authentication is skipped), the\n        // UAS MUST inspect the method of the request.  If the UAS recognizes\n        // but does not support the method of a request, it MUST generate a 405\n        // (Method Not Allowed) response.  Procedures for generating responses\n        // are described in Section 8.2.6.  The UAS MUST also add an Allow\n        // header field to the 405 (Method Not Allowed) response.  The Allow\n        // header field MUST list the set of methods supported by the UAS\n        // generating the message.\n        // https://tools.ietf.org/html/rfc3261#section-8.2.1\n        if (!_allowed_methods_js__WEBPACK_IMPORTED_MODULE_13__.AllowedMethods.includes(message.method)) {\n            const allowHeader = \"Allow: \" + _allowed_methods_js__WEBPACK_IMPORTED_MODULE_13__.AllowedMethods.toString();\n            this.replyStateless(message, {\n                statusCode: 405,\n                extraHeaders: [allowHeader]\n            });\n            return;\n        }\n        // 8.2.2 Header Inspection\n        // https://tools.ietf.org/html/rfc3261#section-8.2.2\n        if (!message.ruri) {\n            // FIXME: A request message should always have an ruri\n            throw new Error(\"Request-URI undefined.\");\n        }\n        // 8.2.2.1 To and Request-URI\n        // If the Request-URI uses a scheme not supported by the UAS, it SHOULD\n        // reject the request with a 416 (Unsupported URI Scheme) response.\n        // https://tools.ietf.org/html/rfc3261#section-8.2.2.1\n        if (message.ruri.scheme !== \"sip\") {\n            this.replyStateless(message, { statusCode: 416 });\n            return;\n        }\n        // 8.2.2.1 To and Request-URI\n        // If the Request-URI does not identify an address that the\n        // UAS is willing to accept requests for, it SHOULD reject\n        // the request with a 404 (Not Found) response.\n        // https://tools.ietf.org/html/rfc3261#section-8.2.2.1\n        const ruri = message.ruri;\n        const ruriMatches = (uri) => {\n            return !!uri && uri.user === ruri.user;\n        };\n        if (!ruriMatches(this.configuration.aor) &&\n            !(ruriMatches(this.configuration.contact.uri) ||\n                ruriMatches(this.configuration.contact.pubGruu) ||\n                ruriMatches(this.configuration.contact.tempGruu))) {\n            this.logger.warn(\"Request-URI does not point to us.\");\n            if (message.method !== _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.ACK) {\n                this.replyStateless(message, { statusCode: 404 });\n            }\n            return;\n        }\n        // 8.2.2.1 To and Request-URI\n        // Other potential sources of received Request-URIs include\n        // the Contact header fields of requests and responses sent by the UA\n        // that establish or refresh dialogs.\n        // https://tools.ietf.org/html/rfc3261#section-8.2.2.1\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.INVITE) {\n            if (!message.hasHeader(\"Contact\")) {\n                this.replyStateless(message, {\n                    statusCode: 400,\n                    reasonPhrase: \"Missing Contact Header\"\n                });\n                return;\n            }\n        }\n        // 8.2.2.2 Merged Requests\n        // If the request has no tag in the To header field, the UAS core MUST\n        // check the request against ongoing transactions.  If the From tag,\n        // Call-ID, and CSeq exactly match those associated with an ongoing\n        // transaction, but the request does not match that transaction (based\n        // on the matching rules in Section 17.2.3), the UAS core SHOULD\n        // generate a 482 (Loop Detected) response and pass it to the server\n        // transaction.\n        //\n        //    The same request has arrived at the UAS more than once, following\n        //    different paths, most likely due to forking.  The UAS processes\n        //    the first such request received and responds with a 482 (Loop\n        //    Detected) to the rest of them.\n        // https://tools.ietf.org/html/rfc3261#section-8.2.2.2\n        if (!message.toTag) {\n            const transactionId = message.viaBranch;\n            if (!this.userAgentServers.has(transactionId)) {\n                const mergedRequest = Array.from(this.userAgentServers.values()).some((uas) => uas.transaction.request.fromTag === message.fromTag &&\n                    uas.transaction.request.callId === message.callId &&\n                    uas.transaction.request.cseq === message.cseq);\n                if (mergedRequest) {\n                    this.replyStateless(message, { statusCode: 482 });\n                    return;\n                }\n            }\n        }\n        // 8.2.2.3 Require\n        // https://tools.ietf.org/html/rfc3261#section-8.2.2.3\n        // TODO\n        // 8.2.3 Content Processing\n        // https://tools.ietf.org/html/rfc3261#section-8.2.3\n        // TODO\n        // 8.2.4 Applying Extensions\n        // https://tools.ietf.org/html/rfc3261#section-8.2.4\n        // TODO\n        // 8.2.5 Processing the Request\n        // Assuming all of the checks in the previous subsections are passed,\n        // the UAS processing becomes method-specific.\n        // https://tools.ietf.org/html/rfc3261#section-8.2.5\n        // The UAS will receive the request from the transaction layer.  If the\n        // request has a tag in the To header field, the UAS core computes the\n        // dialog identifier corresponding to the request and compares it with\n        // existing dialogs.  If there is a match, this is a mid-dialog request.\n        // In that case, the UAS first applies the same processing rules for\n        // requests outside of a dialog, discussed in Section 8.2.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        if (message.toTag) {\n            this.receiveInsideDialogRequest(message);\n        }\n        else {\n            this.receiveOutsideDialogRequest(message);\n        }\n        return;\n    }\n    /**\n     * Once a dialog has been established between two UAs, either of them\n     * MAY initiate new transactions as needed within the dialog.  The UA\n     * sending the request will take the UAC role for the transaction.  The\n     * UA receiving the request will take the UAS role.  Note that these may\n     * be different roles than the UAs held during the transaction that\n     * established the dialog.\n     * https://tools.ietf.org/html/rfc3261#section-12.2\n     * @param message - Incoming request message.\n     */\n    receiveInsideDialogRequest(message) {\n        // NOTIFY requests are matched to such SUBSCRIBE requests if they\n        // contain the same \"Call-ID\", a \"To\" header field \"tag\" parameter that\n        // matches the \"From\" header field \"tag\" parameter of the SUBSCRIBE\n        // request, and the same \"Event\" header field.  Rules for comparisons of\n        // the \"Event\" header fields are described in Section 8.2.1.\n        // https://tools.ietf.org/html/rfc6665#section-4.4.1\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.NOTIFY) {\n            const event = message.parseHeader(\"Event\");\n            if (!event || !event.event) {\n                this.replyStateless(message, { statusCode: 489 });\n                return;\n            }\n            // FIXME: Subscriber id should also matching on event id.\n            const subscriberId = message.callId + message.toTag + event.event;\n            const subscriber = this.subscribers.get(subscriberId);\n            if (subscriber) {\n                const uas = new _user_agents_notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_14__.NotifyUserAgentServer(this, message);\n                subscriber.onNotify(uas);\n                return;\n            }\n        }\n        // Requests sent within a dialog, as any other requests, are atomic.  If\n        // a particular request is accepted by the UAS, all the state changes\n        // associated with it are performed.  If the request is rejected, none\n        // of the state changes are performed.\n        //\n        //    Note that some requests, such as INVITEs, affect several pieces of\n        //    state.\n        //\n        // The UAS will receive the request from the transaction layer.  If the\n        // request has a tag in the To header field, the UAS core computes the\n        // dialog identifier corresponding to the request and compares it with\n        // existing dialogs.  If there is a match, this is a mid-dialog request.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        const dialogId = message.callId + message.toTag + message.fromTag;\n        const dialog = this.dialogs.get(dialogId);\n        if (dialog) {\n            // [Sip-implementors] Reg. SIP reinvite, UPDATE and OPTIONS\n            // You got the question right.\n            //\n            // And you got the right answer too. :-)\n            //\n            //   Thanks,\n            //   Paul\n            //\n            // Robert Sparks wrote:\n            // > So I've lost track of the question during the musing.\n            // >\n            // > I _think_ the fundamental question being asked is this:\n            // >\n            // > Is an endpoint required to reject (with a 481) an OPTIONS request that\n            // > arrives with at to-tag but does not match any existing dialog state.\n            // > (Assuming some earlier requirement hasn't forced another error code). Or\n            // > is it OK if it just sends\n            // > a 200 OK anyhow.\n            // >\n            // > My take on the collection of specs is that its _not_ ok for it to send\n            // > the 200 OK anyhow and that it is required to send\n            // > the 481. I base this primarily on these sentences from 11.2 in 3261:\n            // >\n            // >    The response to an OPTIONS is constructed using the standard rules\n            // >    for a SIP response as discussed in Section 8.2.6.  The response code\n            // >    chosen MUST be the same that would have been chosen had the request\n            // >    been an INVITE.\n            // >\n            // > Did I miss the point of the question?\n            // >\n            // > On May 15, 2008, at 12:48 PM, Paul Kyzivat wrote:\n            // >\n            // >> [Including Robert in hopes of getting his insight on this.]\n            // https://lists.cs.columbia.edu/pipermail/sip-implementors/2008-May/019178.html\n            //\n            // Requests that do not change in any way the state of a dialog may be\n            // received within a dialog (for example, an OPTIONS request).  They are\n            // processed as if they had been received outside the dialog.\n            // https://tools.ietf.org/html/rfc3261#section-12.2.2\n            if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.OPTIONS) {\n                const allowHeader = \"Allow: \" + _allowed_methods_js__WEBPACK_IMPORTED_MODULE_13__.AllowedMethods.toString();\n                const acceptHeader = \"Accept: \" + acceptedBodyTypes.toString();\n                this.replyStateless(message, {\n                    statusCode: 200,\n                    extraHeaders: [allowHeader, acceptHeader]\n                });\n                return;\n            }\n            // Pass the incoming request to the dialog for further handling.\n            dialog.receiveRequest(message);\n            return;\n        }\n        // The most important behaviors of a stateless UAS are the following:\n        // ...\n        // o  A stateless UAS MUST ignore ACK requests.\n        // ...\n        // https://tools.ietf.org/html/rfc3261#section-8.2.7\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.ACK) {\n            // If a final response to an INVITE was sent statelessly,\n            // the corresponding ACK:\n            // - will not match an existing transaction\n            // - may have tag in the To header field\n            // - not not match any existing dialogs\n            // Absorb unmatched ACKs.\n            return;\n        }\n        // If the request has a tag in the To header field, but the dialog\n        // identifier does not match any existing dialogs, the UAS may have\n        // crashed and restarted, or it may have received a request for a\n        // different (possibly failed) UAS (the UASs can construct the To tags\n        // so that a UAS can identify that the tag was for a UAS for which it is\n        // providing recovery).  Another possibility is that the incoming\n        // request has been simply mis-routed.  Based on the To tag, the UAS MAY\n        // either accept or reject the request.  Accepting the request for\n        // acceptable To tags provides robustness, so that dialogs can persist\n        // even through crashes.  UAs wishing to support this capability must\n        // take into consideration some issues such as choosing monotonically\n        // increasing CSeq sequence numbers even across reboots, reconstructing\n        // the route set, and accepting out-of-range RTP timestamps and sequence\n        // numbers.\n        //\n        // If the UAS wishes to reject the request because it does not wish to\n        // recreate the dialog, it MUST respond to the request with a 481\n        // (Call/Transaction Does Not Exist) status code and pass that to the\n        // server transaction.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        this.replyStateless(message, { statusCode: 481 });\n        return;\n    }\n    /**\n     * Assuming all of the checks in the previous subsections are passed,\n     * the UAS processing becomes method-specific.\n     *  https://tools.ietf.org/html/rfc3261#section-8.2.5\n     * @param message - Incoming request message.\n     */\n    receiveOutsideDialogRequest(message) {\n        switch (message.method) {\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.ACK:\n                // Absorb stray out of dialog ACKs\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.BYE:\n                // If the BYE does not match an existing dialog, the UAS core SHOULD\n                // generate a 481 (Call/Transaction Does Not Exist) response and pass\n                // that to the server transaction. This rule means that a BYE sent\n                // without tags by a UAC will be rejected.\n                // https://tools.ietf.org/html/rfc3261#section-15.1.2\n                this.replyStateless(message, { statusCode: 481 });\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.CANCEL:\n                throw new Error(`Unexpected out of dialog request method ${message.method}.`);\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.INFO:\n                // Use of the INFO method does not constitute a separate dialog usage.\n                // INFO messages are always part of, and share the fate of, an invite\n                // dialog usage [RFC5057].  INFO messages cannot be sent as part of\n                // other dialog usages, or outside an existing dialog.\n                // https://tools.ietf.org/html/rfc6086#section-1\n                this.replyStateless(message, { statusCode: 405 }); // Should never happen\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.INVITE:\n                // https://tools.ietf.org/html/rfc3261#section-13.3.1\n                {\n                    const uas = new _user_agents_invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_11__.InviteUserAgentServer(this, message);\n                    this.delegate.onInvite ? this.delegate.onInvite(uas) : uas.reject();\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.MESSAGE:\n                // MESSAGE requests are discouraged inside a dialog.  Implementations\n                // are restricted from creating a usage for the purpose of carrying a\n                // sequence of MESSAGE requests (though some implementations use it that\n                // way, against the standard recommendation).\n                // https://tools.ietf.org/html/rfc5057#section-5.3\n                {\n                    const uas = new _user_agents_message_user_agent_server_js__WEBPACK_IMPORTED_MODULE_15__.MessageUserAgentServer(this, message);\n                    this.delegate.onMessage ? this.delegate.onMessage(uas) : uas.accept();\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.NOTIFY:\n                // Obsoleted by: RFC 6665\n                // If any non-SUBSCRIBE mechanisms are defined to create subscriptions,\n                // it is the responsibility of the parties defining those mechanisms to\n                // ensure that correlation of a NOTIFY message to the corresponding\n                // subscription is possible.  Designers of such mechanisms are also\n                // warned to make a distinction between sending a NOTIFY message to a\n                // subscriber who is aware of the subscription, and sending a NOTIFY\n                // message to an unsuspecting node.  The latter behavior is invalid, and\n                // MUST receive a \"481 Subscription does not exist\" response (unless\n                // some other 400- or 500-class error code is more applicable), as\n                // described in section 3.2.4.  In other words, knowledge of a\n                // subscription must exist in both the subscriber and the notifier to be\n                // valid, even if installed via a non-SUBSCRIBE mechanism.\n                // https://tools.ietf.org/html/rfc3265#section-3.2\n                //\n                // NOTIFY requests are sent to inform subscribers of changes in state to\n                // which the subscriber has a subscription.  Subscriptions are created\n                // using the SUBSCRIBE method.  In legacy implementations, it is\n                // possible that other means of subscription creation have been used.\n                // However, this specification does not allow the creation of\n                // subscriptions except through SUBSCRIBE requests and (for backwards-\n                // compatibility) REFER requests [RFC3515].\n                // https://tools.ietf.org/html/rfc6665#section-3.2\n                {\n                    const uas = new _user_agents_notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_14__.NotifyUserAgentServer(this, message);\n                    this.delegate.onNotify ? this.delegate.onNotify(uas) : uas.reject({ statusCode: 405 });\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.OPTIONS:\n                // https://tools.ietf.org/html/rfc3261#section-11.2\n                {\n                    const allowHeader = \"Allow: \" + _allowed_methods_js__WEBPACK_IMPORTED_MODULE_13__.AllowedMethods.toString();\n                    const acceptHeader = \"Accept: \" + acceptedBodyTypes.toString();\n                    this.replyStateless(message, {\n                        statusCode: 200,\n                        extraHeaders: [allowHeader, acceptHeader]\n                    });\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.REFER:\n                // https://tools.ietf.org/html/rfc3515#section-2.4.2\n                {\n                    const uas = new _user_agents_refer_user_agent_server_js__WEBPACK_IMPORTED_MODULE_16__.ReferUserAgentServer(this, message);\n                    this.delegate.onRefer ? this.delegate.onRefer(uas) : uas.reject({ statusCode: 405 });\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.REGISTER:\n                // https://tools.ietf.org/html/rfc3261#section-10.3\n                {\n                    const uas = new _user_agents_register_user_agent_server_js__WEBPACK_IMPORTED_MODULE_17__.RegisterUserAgentServer(this, message);\n                    this.delegate.onRegister ? this.delegate.onRegister(uas) : uas.reject({ statusCode: 405 });\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_7__.C.SUBSCRIBE:\n                // https://tools.ietf.org/html/rfc6665#section-4.2\n                {\n                    const uas = new _user_agents_subscribe_user_agent_server_js__WEBPACK_IMPORTED_MODULE_18__.SubscribeUserAgentServer(this, message);\n                    this.delegate.onSubscribe ? this.delegate.onSubscribe(uas) : uas.reject({ statusCode: 480 });\n                }\n                break;\n            default:\n                throw new Error(`Unexpected out of dialog request method ${message.method}.`);\n        }\n        return;\n    }\n    /**\n     * Responses are first processed by the transport layer and then passed\n     * up to the transaction layer.  The transaction layer performs its\n     * processing and then passes the response up to the TU.  The majority\n     * of response processing in the TU is method specific.  However, there\n     * are some general behaviors independent of the method.\n     * https://tools.ietf.org/html/rfc3261#section-8.1.3\n     * @param message - Incoming response message from transport layer.\n     */\n    receiveResponseFromTransport(message) {\n        // 8.1.3.1 Transaction Layer Errors\n        // https://tools.ietf.org/html/rfc3261#section-8.1.3.1\n        // Handled by transaction layer callbacks.\n        // 8.1.3.2 Unrecognized Responses\n        // https://tools.ietf.org/html/rfc3261#section-8.1.3.1\n        // TODO\n        // 8.1.3.3 Vias\n        // https://tools.ietf.org/html/rfc3261#section-8.1.3.3\n        if (message.getHeaders(\"via\").length > 1) {\n            this.logger.warn(\"More than one Via header field present in the response, dropping\");\n            return;\n        }\n        // 8.1.3.4 Processing 3xx Responses\n        // https://tools.ietf.org/html/rfc3261#section-8.1.3.4\n        // TODO\n        // 8.1.3.5 Processing 4xx Responses\n        // https://tools.ietf.org/html/rfc3261#section-8.1.3.5\n        // TODO\n        // When the transport layer in the client receives a response, it has to\n        // determine which client transaction will handle the response, so that\n        // the processing of Sections 17.1.1 and 17.1.2 can take place.  The\n        // branch parameter in the top Via header field is used for this\n        // purpose.  A response matches a client transaction under two\n        // conditions:\n        //\n        //    1.  If the response has the same value of the branch parameter in\n        //        the top Via header field as the branch parameter in the top\n        //        Via header field of the request that created the transaction.\n        //\n        //    2.  If the method parameter in the CSeq header field matches the\n        //        method of the request that created the transaction.  The\n        //        method is needed since a CANCEL request constitutes a\n        //        different transaction, but shares the same value of the branch\n        //        parameter.\n        // https://tools.ietf.org/html/rfc3261#section-17.1.3\n        const userAgentClientId = message.viaBranch + message.method;\n        const userAgentClient = this.userAgentClients.get(userAgentClientId);\n        // The client transport uses the matching procedures of Section\n        // 17.1.3 to attempt to match the response to an existing\n        // transaction.  If there is a match, the response MUST be passed to\n        // that transaction.  Otherwise, any element other than a stateless\n        // proxy MUST silently discard the response.\n        // https://tools.ietf.org/html/rfc6026#section-8.9\n        if (userAgentClient) {\n            userAgentClient.transaction.receiveResponse(message);\n        }\n        else {\n            this.logger.warn(`Discarding unmatched ${message.statusCode} response to ${message.method} ${userAgentClientId}.`);\n        }\n    }\n}\n\n\n/***/ }),\n/* 62 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"InviteUserAgentClient\": () => (/* binding */ InviteUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _dialogs_dialog_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(70);\n/* harmony import */ var _dialogs_session_dialog_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(71);\n/* harmony import */ var _session_session_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(31);\n/* harmony import */ var _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(69);\n/* harmony import */ var _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(64);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n\n\n\n/**\n * INVITE UAC.\n * @remarks\n * 13 Initiating a Session\n * https://tools.ietf.org/html/rfc3261#section-13\n * 13.1 Overview\n * https://tools.ietf.org/html/rfc3261#section-13.1\n * 13.2 UAC Processing\n * https://tools.ietf.org/html/rfc3261#section-13.2\n * @public\n */\nclass InviteUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(core, message, delegate) {\n        super(_transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteClientTransaction, core, message, delegate);\n        this.confirmedDialogAcks = new Map();\n        this.confirmedDialogs = new Map();\n        this.earlyDialogs = new Map();\n        this.delegate = delegate;\n    }\n    dispose() {\n        // The UAC core considers the INVITE transaction completed 64*T1 seconds\n        // after the reception of the first 2xx response.  At this point all the\n        // early dialogs that have not transitioned to established dialogs are\n        // terminated.  Once the INVITE transaction is considered completed by\n        // the UAC core, no more new 2xx responses are expected to arrive.\n        //\n        // If, after acknowledging any 2xx response to an INVITE, the UAC does\n        // not want to continue with that dialog, then the UAC MUST terminate\n        // the dialog by sending a BYE request as described in Section 15.\n        // https://tools.ietf.org/html/rfc3261#section-13.2.2.4\n        this.earlyDialogs.forEach((earlyDialog) => earlyDialog.dispose());\n        this.earlyDialogs.clear();\n        super.dispose();\n    }\n    /**\n     * Special case for transport error while sending ACK.\n     * @param error - Transport error\n     */\n    onTransportError(error) {\n        if (this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_2__.TransactionState.Calling) {\n            return super.onTransportError(error);\n        }\n        // If not in 'calling' state, the transport error occurred while sending an ACK.\n        this.logger.error(error.message);\n        this.logger.error(\"User agent client request transport error while sending ACK.\");\n    }\n    /**\n     * Once the INVITE has been passed to the INVITE client transaction, the\n     * UAC waits for responses for the INVITE.\n     * https://tools.ietf.org/html/rfc3261#section-13.2.2\n     * @param incomingResponse - Incoming response to INVITE request.\n     */\n    receiveResponse(message) {\n        if (!this.authenticationGuard(message)) {\n            return;\n        }\n        const statusCode = message.statusCode ? message.statusCode.toString() : \"\";\n        if (!statusCode) {\n            throw new Error(\"Response status code undefined.\");\n        }\n        switch (true) {\n            case /^100$/.test(statusCode):\n                if (this.delegate && this.delegate.onTrying) {\n                    this.delegate.onTrying({ message });\n                }\n                return;\n            case /^1[0-9]{2}$/.test(statusCode):\n                // Zero, one or multiple provisional responses may arrive before one or\n                // more final responses are received.  Provisional responses for an\n                // INVITE request can create \"early dialogs\".  If a provisional response\n                // has a tag in the To field, and if the dialog ID of the response does\n                // not match an existing dialog, one is constructed using the procedures\n                // defined in Section 12.1.2.\n                //\n                // The early dialog will only be needed if the UAC needs to send a\n                // request to its peer within the dialog before the initial INVITE\n                // transaction completes.  Header fields present in a provisional\n                // response are applicable as long as the dialog is in the early state\n                // (for example, an Allow header field in a provisional response\n                // contains the methods that can be used in the dialog while this is in\n                // the early state).\n                // https://tools.ietf.org/html/rfc3261#section-13.2.2.1\n                {\n                    // Dialogs are created through the generation of non-failure responses\n                    // to requests with specific methods.  Within this specification, only\n                    // 2xx and 101-199 responses with a To tag, where the request was\n                    // INVITE, will establish a dialog.  A dialog established by a non-final\n                    // response to a request is in the \"early\" state and it is called an\n                    // early dialog.\n                    // https://tools.ietf.org/html/rfc3261#section-12.1\n                    // Provisional without to tag, no dialog to create.\n                    if (!message.toTag) {\n                        this.logger.warn(\"Non-100 1xx INVITE response received without a to tag, dropping.\");\n                        return;\n                    }\n                    // When a UAS responds to a request with a response that establishes a\n                    // dialog (such as a 2xx to INVITE), the UAS MUST copy all Record-Route\n                    // header field values from the request into the response (including the\n                    // URIs, URI parameters, and any Record-Route header field parameters,\n                    // whether they are known or unknown to the UAS) and MUST maintain the\n                    // order of those values.  The UAS MUST add a Contact header field to\n                    // the response.\n                    // https://tools.ietf.org/html/rfc3261#section-12.1.1\n                    // Provisional without Contact header field, malformed response.\n                    const contact = message.parseHeader(\"contact\");\n                    if (!contact) {\n                        this.logger.error(\"Non-100 1xx INVITE response received without a Contact header field, dropping.\");\n                        return;\n                    }\n                    // Compute dialog state.\n                    const dialogState = _dialogs_dialog_js__WEBPACK_IMPORTED_MODULE_3__.Dialog.initialDialogStateForUserAgentClient(this.message, message);\n                    // Have existing early dialog or create a new one.\n                    let earlyDialog = this.earlyDialogs.get(dialogState.id);\n                    if (!earlyDialog) {\n                        const transaction = this.transaction;\n                        if (!(transaction instanceof _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteClientTransaction)) {\n                            throw new Error(\"Transaction not instance of InviteClientTransaction.\");\n                        }\n                        earlyDialog = new _dialogs_session_dialog_js__WEBPACK_IMPORTED_MODULE_4__.SessionDialog(transaction, this.core, dialogState);\n                        this.earlyDialogs.set(earlyDialog.id, earlyDialog);\n                    }\n                    // Guard against out of order reliable provisional responses.\n                    // Note that this is where the rseq tracking is done.\n                    if (!earlyDialog.reliableSequenceGuard(message)) {\n                        this.logger.warn(\"1xx INVITE reliable response received out of order or is a retransmission, dropping.\");\n                        return;\n                    }\n                    // If the initial offer is in an INVITE, the answer MUST be in a\n                    // reliable non-failure message from UAS back to UAC which is\n                    // correlated to that INVITE.  For this specification, that is\n                    // only the final 2xx response to that INVITE.  That same exact\n                    // answer MAY also be placed in any provisional responses sent\n                    // prior to the answer.  The UAC MUST treat the first session\n                    // description it receives as the answer, and MUST ignore any\n                    // session descriptions in subsequent responses to the initial\n                    // INVITE.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                    if (earlyDialog.signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Initial ||\n                        earlyDialog.signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.HaveLocalOffer) {\n                        earlyDialog.signalingStateTransition(message);\n                    }\n                    // Pass response to delegate.\n                    const session = earlyDialog;\n                    if (this.delegate && this.delegate.onProgress) {\n                        this.delegate.onProgress({\n                            message,\n                            session,\n                            prack: (options) => {\n                                const outgoingPrackRequest = session.prack(undefined, options);\n                                return outgoingPrackRequest;\n                            }\n                        });\n                    }\n                }\n                return;\n            case /^2[0-9]{2}$/.test(statusCode):\n                // Multiple 2xx responses may arrive at the UAC for a single INVITE\n                // request due to a forking proxy.  Each response is distinguished by\n                // the tag parameter in the To header field, and each represents a\n                // distinct dialog, with a distinct dialog identifier.\n                //\n                // If the dialog identifier in the 2xx response matches the dialog\n                // identifier of an existing dialog, the dialog MUST be transitioned to\n                // the \"confirmed\" state, and the route set for the dialog MUST be\n                // recomputed based on the 2xx response using the procedures of Section\n                // 12.2.1.2.  Otherwise, a new dialog in the \"confirmed\" state MUST be\n                // constructed using the procedures of Section 12.1.2.\n                // https://tools.ietf.org/html/rfc3261#section-13.2.2.4\n                {\n                    // Dialogs are created through the generation of non-failure responses\n                    // to requests with specific methods.  Within this specification, only\n                    // 2xx and 101-199 responses with a To tag, where the request was\n                    // INVITE, will establish a dialog.  A dialog established by a non-final\n                    // response to a request is in the \"early\" state and it is called an\n                    // early dialog.\n                    // https://tools.ietf.org/html/rfc3261#section-12.1\n                    // Final without to tag, malformed response.\n                    if (!message.toTag) {\n                        this.logger.error(\"2xx INVITE response received without a to tag, dropping.\");\n                        return;\n                    }\n                    // When a UAS responds to a request with a response that establishes a\n                    // dialog (such as a 2xx to INVITE), the UAS MUST copy all Record-Route\n                    // header field values from the request into the response (including the\n                    // URIs, URI parameters, and any Record-Route header field parameters,\n                    // whether they are known or unknown to the UAS) and MUST maintain the\n                    // order of those values.  The UAS MUST add a Contact header field to\n                    // the response.\n                    // https://tools.ietf.org/html/rfc3261#section-12.1.1\n                    // Final without Contact header field, malformed response.\n                    const contact = message.parseHeader(\"contact\");\n                    if (!contact) {\n                        this.logger.error(\"2xx INVITE response received without a Contact header field, dropping.\");\n                        return;\n                    }\n                    // Compute dialog state.\n                    const dialogState = _dialogs_dialog_js__WEBPACK_IMPORTED_MODULE_3__.Dialog.initialDialogStateForUserAgentClient(this.message, message);\n                    // NOTE: Currently our transaction layer is caching the 2xx ACKs and\n                    // handling retransmissions of the ACK which is an approach which is\n                    // not to spec. In any event, this block is intended to provide a to\n                    // spec implementation of ACK retransmissions, but it should not be\n                    // hit currently.\n                    let dialog = this.confirmedDialogs.get(dialogState.id);\n                    if (dialog) {\n                        // Once the ACK has been constructed, the procedures of [4] are used to\n                        // determine the destination address, port and transport.  However, the\n                        // request is passed to the transport layer directly for transmission,\n                        // rather than a client transaction.  This is because the UAC core\n                        // handles retransmissions of the ACK, not the transaction layer.  The\n                        // ACK MUST be passed to the client transport every time a\n                        // retransmission of the 2xx final response that triggered the ACK\n                        // arrives.\n                        // https://tools.ietf.org/html/rfc3261#section-13.2.2.4\n                        const outgoingAckRequest = this.confirmedDialogAcks.get(dialogState.id);\n                        if (outgoingAckRequest) {\n                            const transaction = this.transaction;\n                            if (!(transaction instanceof _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteClientTransaction)) {\n                                throw new Error(\"Client transaction not instance of InviteClientTransaction.\");\n                            }\n                            transaction.ackResponse(outgoingAckRequest.message);\n                        }\n                        else {\n                            // If still waiting for an ACK, drop the retransmission of the 2xx final response.\n                        }\n                        return;\n                    }\n                    // If the dialog identifier in the 2xx response matches the dialog\n                    // identifier of an existing dialog, the dialog MUST be transitioned to\n                    // the \"confirmed\" state, and the route set for the dialog MUST be\n                    // recomputed based on the 2xx response using the procedures of Section\n                    // 12.2.1.2. Otherwise, a new dialog in the \"confirmed\" state MUST be\n                    // constructed using the procedures of Section 12.1.2.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.2.4\n                    dialog = this.earlyDialogs.get(dialogState.id);\n                    if (dialog) {\n                        dialog.confirm();\n                        dialog.recomputeRouteSet(message);\n                        this.earlyDialogs.delete(dialog.id);\n                        this.confirmedDialogs.set(dialog.id, dialog);\n                    }\n                    else {\n                        const transaction = this.transaction;\n                        if (!(transaction instanceof _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteClientTransaction)) {\n                            throw new Error(\"Transaction not instance of InviteClientTransaction.\");\n                        }\n                        dialog = new _dialogs_session_dialog_js__WEBPACK_IMPORTED_MODULE_4__.SessionDialog(transaction, this.core, dialogState);\n                        this.confirmedDialogs.set(dialog.id, dialog);\n                    }\n                    // If the initial offer is in an INVITE, the answer MUST be in a\n                    // reliable non-failure message from UAS back to UAC which is\n                    // correlated to that INVITE.  For this specification, that is\n                    // only the final 2xx response to that INVITE.  That same exact\n                    // answer MAY also be placed in any provisional responses sent\n                    // prior to the answer.  The UAC MUST treat the first session\n                    // description it receives as the answer, and MUST ignore any\n                    // session descriptions in subsequent responses to the initial\n                    // INVITE.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                    if (dialog.signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.Initial ||\n                        dialog.signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_5__.SignalingState.HaveLocalOffer) {\n                        dialog.signalingStateTransition(message);\n                    }\n                    // Session Initiated! :)\n                    const session = dialog;\n                    // The UAC core MUST generate an ACK request for each 2xx received from\n                    // the transaction layer.  The header fields of the ACK are constructed\n                    // in the same way as for any request sent within a dialog (see Section\n                    // 12) with the exception of the CSeq and the header fields related to\n                    // authentication.  The sequence number of the CSeq header field MUST be\n                    // the same as the INVITE being acknowledged, but the CSeq method MUST\n                    // be ACK.  The ACK MUST contain the same credentials as the INVITE.  If\n                    // the 2xx contains an offer (based on the rules above), the ACK MUST\n                    // carry an answer in its body.  If the offer in the 2xx response is not\n                    // acceptable, the UAC core MUST generate a valid answer in the ACK and\n                    // then send a BYE immediately.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.2.4\n                    if (this.delegate && this.delegate.onAccept) {\n                        this.delegate.onAccept({\n                            message,\n                            session,\n                            ack: (options) => {\n                                const outgoingAckRequest = session.ack(options);\n                                this.confirmedDialogAcks.set(session.id, outgoingAckRequest);\n                                return outgoingAckRequest;\n                            }\n                        });\n                    }\n                    else {\n                        const outgoingAckRequest = session.ack();\n                        this.confirmedDialogAcks.set(session.id, outgoingAckRequest);\n                    }\n                }\n                return;\n            case /^3[0-9]{2}$/.test(statusCode):\n                // 12.3 Termination of a Dialog\n                //\n                // Independent of the method, if a request outside of a dialog generates\n                // a non-2xx final response, any early dialogs created through\n                // provisional responses to that request are terminated.  The mechanism\n                // for terminating confirmed dialogs is method specific.  In this\n                // specification, the BYE method terminates a session and the dialog\n                // associated with it.  See Section 15 for details.\n                // https://tools.ietf.org/html/rfc3261#section-12.3\n                // All early dialogs are considered terminated upon reception of the\n                // non-2xx final response.\n                //\n                // After having received the non-2xx final response the UAC core\n                // considers the INVITE transaction completed.  The INVITE client\n                // transaction handles the generation of ACKs for the response (see\n                // Section 17).\n                // https://tools.ietf.org/html/rfc3261#section-13.2.2.3\n                this.earlyDialogs.forEach((earlyDialog) => earlyDialog.dispose());\n                this.earlyDialogs.clear();\n                // A 3xx response may contain one or more Contact header field values\n                // providing new addresses where the callee might be reachable.\n                // Depending on the status code of the 3xx response (see Section 21.3),\n                // the UAC MAY choose to try those new addresses.\n                // https://tools.ietf.org/html/rfc3261#section-13.2.2.2\n                if (this.delegate && this.delegate.onRedirect) {\n                    this.delegate.onRedirect({ message });\n                }\n                return;\n            case /^[4-6][0-9]{2}$/.test(statusCode):\n                // 12.3 Termination of a Dialog\n                //\n                // Independent of the method, if a request outside of a dialog generates\n                // a non-2xx final response, any early dialogs created through\n                // provisional responses to that request are terminated.  The mechanism\n                // for terminating confirmed dialogs is method specific.  In this\n                // specification, the BYE method terminates a session and the dialog\n                // associated with it.  See Section 15 for details.\n                // https://tools.ietf.org/html/rfc3261#section-12.3\n                // All early dialogs are considered terminated upon reception of the\n                // non-2xx final response.\n                //\n                // After having received the non-2xx final response the UAC core\n                // considers the INVITE transaction completed.  The INVITE client\n                // transaction handles the generation of ACKs for the response (see\n                // Section 17).\n                // https://tools.ietf.org/html/rfc3261#section-13.2.2.3\n                this.earlyDialogs.forEach((earlyDialog) => earlyDialog.dispose());\n                this.earlyDialogs.clear();\n                // A single non-2xx final response may be received for the INVITE.  4xx,\n                // 5xx and 6xx responses may contain a Contact header field value\n                // indicating the location where additional information about the error\n                // can be found.  Subsequent final responses (which would only arrive\n                // under error conditions) MUST be ignored.\n                // https://tools.ietf.org/html/rfc3261#section-13.2.2.3\n                if (this.delegate && this.delegate.onReject) {\n                    this.delegate.onReject({ message });\n                }\n                return;\n            default:\n                throw new Error(`Invalid status code ${statusCode}`);\n        }\n        throw new Error(`Executing what should be an unreachable code path receiving ${statusCode} response.`);\n    }\n}\n\n\n/***/ }),\n/* 63 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"UserAgentClient\": () => (/* binding */ UserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(30);\n/* harmony import */ var _messages_incoming_response_message_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(27);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(65);\n/* harmony import */ var _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(64);\n\n\n\n\n/**\n * User Agent Client (UAC).\n * @remarks\n * A user agent client is a logical entity\n * that creates a new request, and then uses the client\n * transaction state machinery to send it.  The role of UAC lasts\n * only for the duration of that transaction.  In other words, if\n * a piece of software initiates a request, it acts as a UAC for\n * the duration of that transaction.  If it receives a request\n * later, it assumes the role of a user agent server for the\n * processing of that transaction.\n * https://tools.ietf.org/html/rfc3261#section-6\n * @public\n */\nclass UserAgentClient {\n    constructor(transactionConstructor, core, message, delegate) {\n        this.transactionConstructor = transactionConstructor;\n        this.core = core;\n        this.message = message;\n        this.delegate = delegate;\n        this.challenged = false;\n        this.stale = false;\n        this.logger = this.loggerFactory.getLogger(\"sip.user-agent-client\");\n        this.init();\n    }\n    dispose() {\n        this.transaction.dispose();\n    }\n    get loggerFactory() {\n        return this.core.loggerFactory;\n    }\n    /** The transaction associated with this request. */\n    get transaction() {\n        if (!this._transaction) {\n            throw new Error(\"Transaction undefined.\");\n        }\n        return this._transaction;\n    }\n    /**\n     * Since requests other than INVITE are responded to immediately, sending a\n     * CANCEL for a non-INVITE request would always create a race condition.\n     * A CANCEL request SHOULD NOT be sent to cancel a request other than INVITE.\n     * https://tools.ietf.org/html/rfc3261#section-9.1\n     * @param options - Cancel options bucket.\n     */\n    cancel(reason, options = {}) {\n        if (!this.transaction) {\n            throw new Error(\"Transaction undefined.\");\n        }\n        if (!this.message.to) {\n            throw new Error(\"To undefined.\");\n        }\n        if (!this.message.from) {\n            throw new Error(\"From undefined.\");\n        }\n        // The following procedures are used to construct a CANCEL request.  The\n        // Request-URI, Call-ID, To, the numeric part of CSeq, and From header\n        // fields in the CANCEL request MUST be identical to those in the\n        // request being cancelled, including tags.  A CANCEL constructed by a\n        // client MUST have only a single Via header field value matching the\n        // top Via value in the request being cancelled.  Using the same values\n        // for these header fields allows the CANCEL to be matched with the\n        // request it cancels (Section 9.2 indicates how such matching occurs).\n        // However, the method part of the CSeq header field MUST have a value\n        // of CANCEL.  This allows it to be identified and processed as a\n        // transaction in its own right (See Section 17).\n        // https://tools.ietf.org/html/rfc3261#section-9.1\n        const message = this.core.makeOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_0__.C.CANCEL, this.message.ruri, this.message.from.uri, this.message.to.uri, {\n            toTag: this.message.toTag,\n            fromTag: this.message.fromTag,\n            callId: this.message.callId,\n            cseq: this.message.cseq\n        }, options.extraHeaders);\n        // TODO: Revisit this.\n        // The CANCEL needs to use the same branch parameter so that\n        // it matches the INVITE transaction, but this is a hacky way to do this.\n        // Or at the very least not well documented. If the the branch parameter\n        // is set on the outgoing request, the transaction will use it.\n        // Otherwise the transaction will make a new one.\n        message.branch = this.message.branch;\n        if (this.message.headers.Route) {\n            message.headers.Route = this.message.headers.Route;\n        }\n        if (reason) {\n            message.setHeader(\"Reason\", reason);\n        }\n        // If no provisional response has been received, the CANCEL request MUST\n        // NOT be sent; rather, the client MUST wait for the arrival of a\n        // provisional response before sending the request. If the original\n        // request has generated a final response, the CANCEL SHOULD NOT be\n        // sent, as it is an effective no-op, since CANCEL has no effect on\n        // requests that have already generated a final response.\n        // https://tools.ietf.org/html/rfc3261#section-9.1\n        if (this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding) {\n            new UserAgentClient(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.NonInviteClientTransaction, this.core, message);\n        }\n        else {\n            this.transaction.addStateChangeListener(() => {\n                if (this.transaction && this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding) {\n                    new UserAgentClient(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.NonInviteClientTransaction, this.core, message);\n                }\n            }, { once: true });\n        }\n        return message;\n    }\n    /**\n     * If a 401 (Unauthorized) or 407 (Proxy Authentication Required)\n     * response is received, the UAC SHOULD follow the authorization\n     * procedures of Section 22.2 and Section 22.3 to retry the request with\n     * credentials.\n     * https://tools.ietf.org/html/rfc3261#section-8.1.3.5\n     * 22 Usage of HTTP Authentication\n     * https://tools.ietf.org/html/rfc3261#section-22\n     * 22.1 Framework\n     * https://tools.ietf.org/html/rfc3261#section-22.1\n     * 22.2 User-to-User Authentication\n     * https://tools.ietf.org/html/rfc3261#section-22.2\n     * 22.3 Proxy-to-User Authentication\n     * https://tools.ietf.org/html/rfc3261#section-22.3\n     *\n     * FIXME: This \"guard for and retry the request with credentials\"\n     * implementation is not complete and at best minimally passable.\n     * @param response - The incoming response to guard.\n     * @param dialog - If defined, the dialog within which the response was received.\n     * @returns True if the program execution is to continue in the branch in question.\n     *          Otherwise the request is retried with credentials and current request processing must stop.\n     */\n    authenticationGuard(message, dialog) {\n        const statusCode = message.statusCode;\n        if (!statusCode) {\n            throw new Error(\"Response status code undefined.\");\n        }\n        // If a 401 (Unauthorized) or 407 (Proxy Authentication Required)\n        // response is received, the UAC SHOULD follow the authorization\n        // procedures of Section 22.2 and Section 22.3 to retry the request with\n        // credentials.\n        // https://tools.ietf.org/html/rfc3261#section-8.1.3.5\n        if (statusCode !== 401 && statusCode !== 407) {\n            return true;\n        }\n        // Get and parse the appropriate WWW-Authenticate or Proxy-Authenticate header.\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        let challenge;\n        let authorizationHeaderName;\n        if (statusCode === 401) {\n            challenge = message.parseHeader(\"www-authenticate\");\n            authorizationHeaderName = \"authorization\";\n        }\n        else {\n            challenge = message.parseHeader(\"proxy-authenticate\");\n            authorizationHeaderName = \"proxy-authorization\";\n        }\n        // Verify it seems a valid challenge.\n        if (!challenge) {\n            this.logger.warn(statusCode + \" with wrong or missing challenge, cannot authenticate\");\n            return true;\n        }\n        // Avoid infinite authentications.\n        if (this.challenged && (this.stale || challenge.stale !== true)) {\n            this.logger.warn(statusCode + \" apparently in authentication loop, cannot authenticate\");\n            return true;\n        }\n        // Get credentials.\n        if (!this.credentials) {\n            this.credentials = this.core.configuration.authenticationFactory();\n            if (!this.credentials) {\n                this.logger.warn(\"Unable to obtain credentials, cannot authenticate\");\n                return true;\n            }\n        }\n        // Verify that the challenge is really valid.\n        if (!this.credentials.authenticate(this.message, challenge)) {\n            return true;\n        }\n        this.challenged = true;\n        if (challenge.stale) {\n            this.stale = true;\n        }\n        // If response to out of dialog request, assume incrementing the CSeq will suffice.\n        let cseq = (this.message.cseq += 1);\n        // If response to in dialog request, get a valid next CSeq number.\n        if (dialog && dialog.localSequenceNumber) {\n            dialog.incrementLocalSequenceNumber();\n            cseq = this.message.cseq = dialog.localSequenceNumber;\n        }\n        this.message.setHeader(\"cseq\", cseq + \" \" + this.message.method);\n        this.message.setHeader(authorizationHeaderName, this.credentials.toString());\n        // Calling init (again) will swap out our existing client transaction with a new one.\n        // FIXME: HACK: An assumption is being made here that there is nothing that needs to\n        // be cleaned up beyond the client transaction which is being replaced. For example,\n        // it is assumed that no early dialogs have been created.\n        this.init();\n        return false;\n    }\n    /**\n     * 8.1.3.1 Transaction Layer Errors\n     * In some cases, the response returned by the transaction layer will\n     * not be a SIP message, but rather a transaction layer error.  When a\n     * timeout error is received from the transaction layer, it MUST be\n     * treated as if a 408 (Request Timeout) status code has been received.\n     * If a fatal transport error is reported by the transport layer\n     * (generally, due to fatal ICMP errors in UDP or connection failures in\n     * TCP), the condition MUST be treated as a 503 (Service Unavailable)\n     * status code.\n     * https://tools.ietf.org/html/rfc3261#section-8.1.3.1\n     */\n    onRequestTimeout() {\n        this.logger.warn(\"User agent client request timed out. Generating internal 408 Request Timeout.\");\n        const message = new _messages_incoming_response_message_js__WEBPACK_IMPORTED_MODULE_3__.IncomingResponseMessage();\n        message.statusCode = 408;\n        message.reasonPhrase = \"Request Timeout\";\n        this.receiveResponse(message);\n        return;\n    }\n    /**\n     * 8.1.3.1 Transaction Layer Errors\n     * In some cases, the response returned by the transaction layer will\n     * not be a SIP message, but rather a transaction layer error.  When a\n     * timeout error is received from the transaction layer, it MUST be\n     * treated as if a 408 (Request Timeout) status code has been received.\n     * If a fatal transport error is reported by the transport layer\n     * (generally, due to fatal ICMP errors in UDP or connection failures in\n     * TCP), the condition MUST be treated as a 503 (Service Unavailable)\n     * status code.\n     * https://tools.ietf.org/html/rfc3261#section-8.1.3.1\n     * @param error - Transport error\n     */\n    onTransportError(error) {\n        this.logger.error(error.message);\n        this.logger.error(\"User agent client request transport error. Generating internal 503 Service Unavailable.\");\n        const message = new _messages_incoming_response_message_js__WEBPACK_IMPORTED_MODULE_3__.IncomingResponseMessage();\n        message.statusCode = 503;\n        message.reasonPhrase = \"Service Unavailable\";\n        this.receiveResponse(message);\n    }\n    /**\n     * Receive a response from the transaction layer.\n     * @param message - Incoming response message.\n     */\n    receiveResponse(message) {\n        if (!this.authenticationGuard(message)) {\n            return;\n        }\n        const statusCode = message.statusCode ? message.statusCode.toString() : \"\";\n        if (!statusCode) {\n            throw new Error(\"Response status code undefined.\");\n        }\n        switch (true) {\n            case /^100$/.test(statusCode):\n                if (this.delegate && this.delegate.onTrying) {\n                    this.delegate.onTrying({ message });\n                }\n                break;\n            case /^1[0-9]{2}$/.test(statusCode):\n                if (this.delegate && this.delegate.onProgress) {\n                    this.delegate.onProgress({ message });\n                }\n                break;\n            case /^2[0-9]{2}$/.test(statusCode):\n                if (this.delegate && this.delegate.onAccept) {\n                    this.delegate.onAccept({ message });\n                }\n                break;\n            case /^3[0-9]{2}$/.test(statusCode):\n                if (this.delegate && this.delegate.onRedirect) {\n                    this.delegate.onRedirect({ message });\n                }\n                break;\n            case /^[4-6][0-9]{2}$/.test(statusCode):\n                if (this.delegate && this.delegate.onReject) {\n                    this.delegate.onReject({ message });\n                }\n                break;\n            default:\n                throw new Error(`Invalid status code ${statusCode}`);\n        }\n    }\n    init() {\n        // We are the transaction user.\n        const user = {\n            loggerFactory: this.loggerFactory,\n            onRequestTimeout: () => this.onRequestTimeout(),\n            onStateChange: (newState) => {\n                if (newState === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated) {\n                    // Remove the terminated transaction from the core.\n                    // eslint-disable-next-line @typescript-eslint/no-use-before-define\n                    this.core.userAgentClients.delete(userAgentClientId);\n                    // FIXME: HACK: Our transaction may have been swapped out with a new one\n                    // post authentication (see above), so make sure to only to dispose of\n                    // ourselves if this terminating transaction is our current transaction.\n                    // eslint-disable-next-line @typescript-eslint/no-use-before-define\n                    if (transaction === this._transaction) {\n                        this.dispose();\n                    }\n                }\n            },\n            onTransportError: (error) => this.onTransportError(error),\n            receiveResponse: (message) => this.receiveResponse(message)\n        };\n        // Create a new transaction with us as the user.\n        const transaction = new this.transactionConstructor(this.message, this.core.transport, user);\n        this._transaction = transaction;\n        // Add the new transaction to the core.\n        const userAgentClientId = transaction.id + transaction.request.method;\n        this.core.userAgentClients.set(userAgentClientId, this);\n    }\n}\n\n\n/***/ }),\n/* 64 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"TransactionState\": () => (/* binding */ TransactionState)\n/* harmony export */ });\n/**\n * Transaction state.\n * @public\n */\nvar TransactionState;\n(function (TransactionState) {\n    TransactionState[\"Accepted\"] = \"Accepted\";\n    TransactionState[\"Calling\"] = \"Calling\";\n    TransactionState[\"Completed\"] = \"Completed\";\n    TransactionState[\"Confirmed\"] = \"Confirmed\";\n    TransactionState[\"Proceeding\"] = \"Proceeding\";\n    TransactionState[\"Terminated\"] = \"Terminated\";\n    TransactionState[\"Trying\"] = \"Trying\";\n})(TransactionState = TransactionState || (TransactionState = {}));\n\n\n/***/ }),\n/* 65 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"NonInviteClientTransaction\": () => (/* binding */ NonInviteClientTransaction)\n/* harmony export */ });\n/* harmony import */ var _timers_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(37);\n/* harmony import */ var _client_transaction_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(66);\n/* harmony import */ var _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(64);\n\n\n\n/**\n * Non-INVITE Client Transaction.\n * @remarks\n * Non-INVITE transactions do not make use of ACK.\n * They are simple request-response interactions.\n * https://tools.ietf.org/html/rfc3261#section-17.1.2\n * @public\n */\nclass NonInviteClientTransaction extends _client_transaction_js__WEBPACK_IMPORTED_MODULE_0__.ClientTransaction {\n    /**\n     * Constructor\n     * Upon construction, the outgoing request's Via header is updated by calling `setViaHeader`.\n     * Then `toString` is called on the outgoing request and the message is sent via the transport.\n     * After construction the transaction will be in the \"calling\" state and the transaction id\n     * will equal the branch parameter set in the Via header of the outgoing request.\n     * https://tools.ietf.org/html/rfc3261#section-17.1.2\n     * @param request - The outgoing Non-INVITE request.\n     * @param transport - The transport.\n     * @param user - The transaction user.\n     */\n    constructor(request, transport, user) {\n        super(request, transport, user, _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying, \"sip.transaction.nict\");\n        // FIXME: Timer E for unreliable transports not implemented.\n        //\n        // The \"Trying\" state is entered when the TU initiates a new client\n        // transaction with a request.  When entering this state, the client\n        // transaction SHOULD set timer F to fire in 64*T1 seconds. The request\n        // MUST be passed to the transport layer for transmission.\n        // https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n        this.F = setTimeout(() => this.timerF(), _timers_js__WEBPACK_IMPORTED_MODULE_2__.Timers.TIMER_F);\n        this.send(request.toString()).catch((error) => {\n            this.logTransportError(error, \"Failed to send initial outgoing request.\");\n        });\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        if (this.F) {\n            clearTimeout(this.F);\n            this.F = undefined;\n        }\n        if (this.K) {\n            clearTimeout(this.K);\n            this.K = undefined;\n        }\n        super.dispose();\n    }\n    /** Transaction kind. Deprecated. */\n    get kind() {\n        return \"nict\";\n    }\n    /**\n     * Handler for incoming responses from the transport which match this transaction.\n     * @param response - The incoming response.\n     */\n    receiveResponse(response) {\n        const statusCode = response.statusCode;\n        if (!statusCode || statusCode < 100 || statusCode > 699) {\n            throw new Error(`Invalid status code ${statusCode}`);\n        }\n        switch (this.state) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying:\n                // If a provisional response is received while in the \"Trying\" state, the\n                // response MUST be passed to the TU, and then the client transaction\n                // SHOULD move to the \"Proceeding\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n                if (statusCode >= 100 && statusCode <= 199) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding);\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                // If a final response (status codes 200-699) is received while in the\n                // \"Trying\" state, the response MUST be passed to the TU, and the\n                // client transaction MUST transition to the \"Completed\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n                if (statusCode >= 200 && statusCode <= 699) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed);\n                    if (statusCode === 408) {\n                        this.onRequestTimeout();\n                        return;\n                    }\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                // If a provisional response is received while in the \"Proceeding\" state,\n                // the response MUST be passed to the TU. (From Figure 6)\n                // https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n                if (statusCode >= 100 && statusCode <= 199) {\n                    if (this.user.receiveResponse) {\n                        return this.user.receiveResponse(response);\n                    }\n                }\n                // If a final response (status codes 200-699) is received while in the\n                // \"Proceeding\" state, the response MUST be passed to the TU, and the\n                // client transaction MUST transition to the \"Completed\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n                if (statusCode >= 200 && statusCode <= 699) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed);\n                    if (statusCode === 408) {\n                        this.onRequestTimeout();\n                        return;\n                    }\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                // The \"Completed\" state exists to buffer any additional response\n                // retransmissions that may be received (which is why the client\n                // transaction remains there only for unreliable transports).\n                // https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n                return;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                // For good measure just absorb additional response retransmissions.\n                return;\n            default:\n                throw new Error(`Invalid state ${this.state}`);\n        }\n        const message = `Non-INVITE client transaction received unexpected ${statusCode} response while in state ${this.state}.`;\n        this.logger.warn(message);\n        return;\n    }\n    /**\n     * The client transaction SHOULD inform the TU that a transport failure has occurred,\n     * and the client transaction SHOULD transition directly to the \"Terminated\" state.\n     * The TU will handle the fail over mechanisms described in [4].\n     * https://tools.ietf.org/html/rfc3261#section-17.1.4\n     * @param error - Transport error\n     */\n    onTransportError(error) {\n        if (this.user.onTransportError) {\n            this.user.onTransportError(error);\n        }\n        this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated, true);\n    }\n    /** For logging. */\n    typeToString() {\n        return \"non-INVITE client transaction\";\n    }\n    /**\n     * Execute a state transition.\n     * @param newState - New state.\n     */\n    stateTransition(newState, dueToTransportError = false) {\n        // Assert valid state transitions.\n        const invalidStateTransition = () => {\n            throw new Error(`Invalid state transition from ${this.state} to ${newState}`);\n        };\n        switch (newState) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying:\n                invalidStateTransition();\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying) {\n                    invalidStateTransition();\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying && this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding) {\n                    invalidStateTransition();\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying &&\n                    this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding &&\n                    this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n                    if (!dueToTransportError) {\n                        invalidStateTransition();\n                    }\n                }\n                break;\n            default:\n                invalidStateTransition();\n        }\n        // Once the client transaction enters the \"Completed\" state, it MUST set\n        // Timer K to fire in T4 seconds for unreliable transports, and zero\n        // seconds for reliable transports  The \"Completed\" state exists to\n        // buffer any additional response retransmissions that may be received\n        // (which is why the client transaction remains there only for unreliable transports).\n        // https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n            if (this.F) {\n                clearTimeout(this.F);\n                this.F = undefined;\n            }\n            this.K = setTimeout(() => this.timerK(), _timers_js__WEBPACK_IMPORTED_MODULE_2__.Timers.TIMER_K);\n        }\n        // Once the transaction is in the terminated state, it MUST be destroyed immediately.\n        // https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated) {\n            this.dispose();\n        }\n        // Update state.\n        this.setState(newState);\n    }\n    /**\n     * If Timer F fires while the client transaction is still in the\n     * \"Trying\" state, the client transaction SHOULD inform the TU about the\n     * timeout, and then it SHOULD enter the \"Terminated\" state.\n     * If timer F fires while in the \"Proceeding\" state, the TU MUST be informed of\n     * a timeout, and the client transaction MUST transition to the terminated state.\n     * https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n     */\n    timerF() {\n        this.logger.debug(`Timer F expired for non-INVITE client transaction ${this.id}.`);\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying || this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding) {\n            this.onRequestTimeout();\n            this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n        }\n    }\n    /**\n     * If Timer K fires while in this (COMPLETED) state, the client transaction\n     * MUST transition to the \"Terminated\" state.\n     * https://tools.ietf.org/html/rfc3261#section-17.1.2.2\n     */\n    timerK() {\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n            this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n        }\n    }\n}\n\n\n/***/ }),\n/* 66 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ClientTransaction\": () => (/* binding */ ClientTransaction)\n/* harmony export */ });\n/* harmony import */ var _transaction_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(67);\n\n/**\n * Client Transaction.\n * @remarks\n * The client transaction provides its functionality through the\n * maintenance of a state machine.\n *\n * The TU communicates with the client transaction through a simple\n * interface.  When the TU wishes to initiate a new transaction, it\n * creates a client transaction and passes it the SIP request to send\n * and an IP address, port, and transport to which to send it.  The\n * client transaction begins execution of its state machine.  Valid\n * responses are passed up to the TU from the client transaction.\n * https://tools.ietf.org/html/rfc3261#section-17.1\n * @public\n */\nclass ClientTransaction extends _transaction_js__WEBPACK_IMPORTED_MODULE_0__.Transaction {\n    constructor(_request, transport, user, state, loggerCategory) {\n        super(transport, user, ClientTransaction.makeId(_request), state, loggerCategory);\n        this._request = _request;\n        this.user = user;\n        // The Via header field indicates the transport used for the transaction\n        // and identifies the location where the response is to be sent.  A Via\n        // header field value is added only after the transport that will be\n        // used to reach the next hop has been selected (which may involve the\n        // usage of the procedures in [4]).\n        // https://tools.ietf.org/html/rfc3261#section-8.1.1.7\n        _request.setViaHeader(this.id, transport.protocol);\n    }\n    static makeId(request) {\n        if (request.method === \"CANCEL\") {\n            if (!request.branch) {\n                throw new Error(\"Outgoing CANCEL request without a branch.\");\n            }\n            return request.branch;\n        }\n        else {\n            return \"z9hG4bK\" + Math.floor(Math.random() * 10000000);\n        }\n    }\n    /** The outgoing request the transaction handling. */\n    get request() {\n        return this._request;\n    }\n    /**\n     * A 408 to non-INVITE will always arrive too late to be useful ([3]),\n     * The client already has full knowledge of the timeout. The only\n     * information this message would convey is whether or not the server\n     * believed the transaction timed out. However, with the current design\n     * of the NIT, a client cannot do anything with this knowledge. Thus,\n     * the 408 is simply wasting network resources and contributes to the\n     * response bombardment illustrated in [3].\n     * https://tools.ietf.org/html/rfc4320#section-4.1\n     */\n    onRequestTimeout() {\n        if (this.user.onRequestTimeout) {\n            this.user.onRequestTimeout();\n        }\n    }\n}\n\n\n/***/ }),\n/* 67 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Transaction\": () => (/* binding */ Transaction)\n/* harmony export */ });\n/* harmony import */ var _exceptions_transport_error_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(68);\n\n/**\n * Transaction.\n * @remarks\n * SIP is a transactional protocol: interactions between components take\n * place in a series of independent message exchanges.  Specifically, a\n * SIP transaction consists of a single request and any responses to\n * that request, which include zero or more provisional responses and\n * one or more final responses.  In the case of a transaction where the\n * request was an INVITE (known as an INVITE transaction), the\n * transaction also includes the ACK only if the final response was not\n * a 2xx response.  If the response was a 2xx, the ACK is not considered\n * part of the transaction.\n * https://tools.ietf.org/html/rfc3261#section-17\n * @public\n */\nclass Transaction {\n    constructor(_transport, _user, _id, _state, loggerCategory) {\n        this._transport = _transport;\n        this._user = _user;\n        this._id = _id;\n        this._state = _state;\n        this.listeners = new Array();\n        this.logger = _user.loggerFactory.getLogger(loggerCategory, _id);\n        this.logger.debug(`Constructing ${this.typeToString()} with id ${this.id}.`);\n    }\n    /**\n     * Destructor.\n     * Once the transaction is in the \"terminated\" state, it is destroyed\n     * immediately and there is no need to call `dispose`. However, if a\n     * transaction needs to be ended prematurely, the transaction user may\n     * do so by calling this method (for example, perhaps the UA is shutting down).\n     * No state transition will occur upon calling this method, all outstanding\n     * transmission timers will be cancelled, and use of the transaction after\n     * calling `dispose` is undefined.\n     */\n    dispose() {\n        this.logger.debug(`Destroyed ${this.typeToString()} with id ${this.id}.`);\n    }\n    /** Transaction id. */\n    get id() {\n        return this._id;\n    }\n    /** Transaction kind. Deprecated. */\n    get kind() {\n        throw new Error(\"Invalid kind.\");\n    }\n    /** Transaction state. */\n    get state() {\n        return this._state;\n    }\n    /** Transaction transport. */\n    get transport() {\n        return this._transport;\n    }\n    /**\n     * Sets up a function that will be called whenever the transaction state changes.\n     * @param listener - Callback function.\n     * @param options - An options object that specifies characteristics about the listener.\n     *                  If once true, indicates that the listener should be invoked at most once after being added.\n     *                  If once true, the listener would be automatically removed when invoked.\n     */\n    addStateChangeListener(listener, options) {\n        const onceWrapper = () => {\n            this.removeStateChangeListener(onceWrapper);\n            listener();\n        };\n        (options === null || options === void 0 ? void 0 : options.once) === true ? this.listeners.push(onceWrapper) : this.listeners.push(listener);\n    }\n    /**\n     * This is currently public so tests may spy on it.\n     * @internal\n     */\n    notifyStateChangeListeners() {\n        this.listeners.slice().forEach((listener) => listener());\n    }\n    /**\n     * Removes a listener previously registered with addStateListener.\n     * @param listener - Callback function.\n     */\n    removeStateChangeListener(listener) {\n        this.listeners = this.listeners.filter((l) => l !== listener);\n    }\n    logTransportError(error, message) {\n        this.logger.error(error.message);\n        this.logger.error(`Transport error occurred in ${this.typeToString()} with id ${this.id}.`);\n        this.logger.error(message);\n    }\n    /**\n     * Pass message to transport for transmission. If transport fails,\n     * the transaction user is notified by callback to onTransportError().\n     * @returns\n     * Rejects with `TransportError` if transport fails.\n     */\n    send(message) {\n        return this.transport.send(message).catch((error) => {\n            // If the transport rejects, it SHOULD reject with a TransportError.\n            // But the transport may be external code, so we are careful\n            // make sure we convert it to a TransportError if need be.\n            if (error instanceof _exceptions_transport_error_js__WEBPACK_IMPORTED_MODULE_0__.TransportError) {\n                this.onTransportError(error);\n                throw error;\n            }\n            let transportError;\n            if (error && typeof error.message === \"string\") {\n                transportError = new _exceptions_transport_error_js__WEBPACK_IMPORTED_MODULE_0__.TransportError(error.message);\n            }\n            else {\n                transportError = new _exceptions_transport_error_js__WEBPACK_IMPORTED_MODULE_0__.TransportError();\n            }\n            this.onTransportError(transportError);\n            throw transportError;\n        });\n    }\n    setState(state) {\n        this.logger.debug(`State change to \"${state}\" on ${this.typeToString()} with id ${this.id}.`);\n        this._state = state;\n        if (this._user.onStateChange) {\n            this._user.onStateChange(state);\n        }\n        this.notifyStateChangeListeners();\n    }\n    typeToString() {\n        return \"UnknownType\";\n    }\n}\n\n\n/***/ }),\n/* 68 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"TransportError\": () => (/* binding */ TransportError)\n/* harmony export */ });\n/* harmony import */ var _exception_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);\n\n/**\n * Transport error.\n * @public\n */\nclass TransportError extends _exception_js__WEBPACK_IMPORTED_MODULE_0__.Exception {\n    constructor(message) {\n        super(message ? message : \"Unspecified transport error.\");\n    }\n}\n\n\n/***/ }),\n/* 69 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"InviteClientTransaction\": () => (/* binding */ InviteClientTransaction)\n/* harmony export */ });\n/* harmony import */ var _timers_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(37);\n/* harmony import */ var _client_transaction_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(66);\n/* harmony import */ var _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(64);\n\n\n\n/**\n * INVITE Client Transaction.\n * @remarks\n * The INVITE transaction consists of a three-way handshake.  The client\n * transaction sends an INVITE, the server transaction sends responses,\n * and the client transaction sends an ACK.\n * https://tools.ietf.org/html/rfc3261#section-17.1.1\n * @public\n */\nclass InviteClientTransaction extends _client_transaction_js__WEBPACK_IMPORTED_MODULE_0__.ClientTransaction {\n    /**\n     * Constructor.\n     * Upon construction, the outgoing request's Via header is updated by calling `setViaHeader`.\n     * Then `toString` is called on the outgoing request and the message is sent via the transport.\n     * After construction the transaction will be in the \"calling\" state and the transaction id\n     * will equal the branch parameter set in the Via header of the outgoing request.\n     * https://tools.ietf.org/html/rfc3261#section-17.1.1\n     * @param request - The outgoing INVITE request.\n     * @param transport - The transport.\n     * @param user - The transaction user.\n     */\n    constructor(request, transport, user) {\n        super(request, transport, user, _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Calling, \"sip.transaction.ict\");\n        /**\n         * Map of 2xx to-tag to ACK.\n         * If value is not undefined, value is the ACK which was sent.\n         * If key exists but value is undefined, a 2xx was received but the ACK not yet sent.\n         * Otherwise, a 2xx was not (yet) received for this transaction.\n         */\n        this.ackRetransmissionCache = new Map();\n        // FIXME: Timer A for unreliable transport not implemented\n        //\n        // If an unreliable transport is being used, the client transaction\n        // MUST start timer A with a value of T1. If a reliable transport is being used,\n        // the client transaction SHOULD NOT start timer A (Timer A controls request retransmissions).\n        // For any transport, the client transaction MUST start timer B with a value\n        // of 64*T1 seconds (Timer B controls transaction timeouts).\n        // https://tools.ietf.org/html/rfc3261#section-17.1.1.2\n        //\n        // While not spelled out in the RFC, Timer B is the maximum amount of time that a sender\n        // will wait for an INVITE message to be acknowledged (a SIP response message is received).\n        // So Timer B should be cleared when the transaction state proceeds from \"Calling\".\n        this.B = setTimeout(() => this.timerB(), _timers_js__WEBPACK_IMPORTED_MODULE_2__.Timers.TIMER_B);\n        this.send(request.toString()).catch((error) => {\n            this.logTransportError(error, \"Failed to send initial outgoing request.\");\n        });\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        if (this.B) {\n            clearTimeout(this.B);\n            this.B = undefined;\n        }\n        if (this.D) {\n            clearTimeout(this.D);\n            this.D = undefined;\n        }\n        if (this.M) {\n            clearTimeout(this.M);\n            this.M = undefined;\n        }\n        super.dispose();\n    }\n    /** Transaction kind. Deprecated. */\n    get kind() {\n        return \"ict\";\n    }\n    /**\n     * ACK a 2xx final response.\n     *\n     * The transaction includes the ACK only if the final response was not a 2xx response (the\n     * transaction will generate and send the ACK to the transport automagically). If the\n     * final response was a 2xx, the ACK is not considered part of the transaction (the\n     * transaction user needs to generate and send the ACK).\n     *\n     * This library is not strictly RFC compliant with regard to ACK handling for 2xx final\n     * responses. Specifically, retransmissions of ACKs to a 2xx final responses is handled\n     * by the transaction layer (instead of the UAC core). The \"standard\" approach is for\n     * the UAC core to receive all 2xx responses and manage sending ACK retransmissions to\n     * the transport directly. Herein the transaction layer manages sending ACKs to 2xx responses\n     * and any retransmissions of those ACKs as needed.\n     *\n     * @param ack - The outgoing ACK request.\n     */\n    ackResponse(ack) {\n        const toTag = ack.toTag;\n        if (!toTag) {\n            throw new Error(\"To tag undefined.\");\n        }\n        const id = \"z9hG4bK\" + Math.floor(Math.random() * 10000000);\n        ack.setViaHeader(id, this.transport.protocol);\n        this.ackRetransmissionCache.set(toTag, ack); // Add to ACK retransmission cache\n        this.send(ack.toString()).catch((error) => {\n            this.logTransportError(error, \"Failed to send ACK to 2xx response.\");\n        });\n    }\n    /**\n     * Handler for incoming responses from the transport which match this transaction.\n     * @param response - The incoming response.\n     */\n    receiveResponse(response) {\n        const statusCode = response.statusCode;\n        if (!statusCode || statusCode < 100 || statusCode > 699) {\n            throw new Error(`Invalid status code ${statusCode}`);\n        }\n        switch (this.state) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Calling:\n                // If the client transaction receives a provisional response while in\n                // the \"Calling\" state, it transitions to the \"Proceeding\" state. In the\n                // \"Proceeding\" state, the client transaction SHOULD NOT retransmit the\n                // request any longer. Furthermore, the provisional response MUST be\n                // passed to the TU.  Any further provisional responses MUST be passed\n                // up to the TU while in the \"Proceeding\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.1.1.2\n                if (statusCode >= 100 && statusCode <= 199) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding);\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                // When a 2xx response is received while in either the \"Calling\" or\n                // \"Proceeding\" states, the client transaction MUST transition to\n                // the \"Accepted\" state... The 2xx response MUST be passed up to the TU.\n                // The client transaction MUST NOT generate an ACK to the 2xx response -- its\n                // handling is delegated to the TU. A UAC core will send an ACK to\n                // the 2xx response using a new transaction.\n                // https://tools.ietf.org/html/rfc6026#section-8.4\n                if (statusCode >= 200 && statusCode <= 299) {\n                    this.ackRetransmissionCache.set(response.toTag, undefined); // Prime the ACK cache\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted);\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                // When in either the \"Calling\" or \"Proceeding\" states, reception of\n                // a response with status code from 300-699 MUST cause the client\n                // transaction to transition to \"Completed\". The client transaction\n                // MUST pass the received response up to the TU, and the client\n                // transaction MUST generate an ACK request, even if the transport is\n                // reliable (guidelines for constructing the ACK from the response\n                // are given in Section 17.1.1.3), and then pass the ACK to the\n                // transport layer for transmission. The ACK MUST be sent to the\n                // same address, port, and transport to which the original request was sent.\n                // https://tools.ietf.org/html/rfc6026#section-8.4\n                if (statusCode >= 300 && statusCode <= 699) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed);\n                    this.ack(response);\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                // In the \"Proceeding\" state, the client transaction SHOULD NOT retransmit the\n                // request any longer. Furthermore, the provisional response MUST be\n                // passed to the TU.  Any further provisional responses MUST be passed\n                // up to the TU while in the \"Proceeding\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.1.1.2\n                if (statusCode >= 100 && statusCode <= 199) {\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                // When a 2xx response is received while in either the \"Calling\" or \"Proceeding\" states,\n                // the client transaction MUST transition to the \"Accepted\" state...\n                // The 2xx response MUST be passed up to the TU. The client\n                // transaction MUST NOT generate an ACK to the 2xx response -- its\n                // handling is delegated to the TU. A UAC core will send an ACK to\n                // the 2xx response using a new transaction.\n                // https://tools.ietf.org/html/rfc6026#section-8.4\n                if (statusCode >= 200 && statusCode <= 299) {\n                    this.ackRetransmissionCache.set(response.toTag, undefined); // Prime the ACK cache\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted);\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                // When in either the \"Calling\" or \"Proceeding\" states, reception of\n                // a response with status code from 300-699 MUST cause the client\n                // transaction to transition to \"Completed\". The client transaction\n                // MUST pass the received response up to the TU, and the client\n                // transaction MUST generate an ACK request, even if the transport is\n                // reliable (guidelines for constructing the ACK from the response\n                // are given in Section 17.1.1.3), and then pass the ACK to the\n                // transport layer for transmission. The ACK MUST be sent to the\n                // same address, port, and transport to which the original request was sent.\n                // https://tools.ietf.org/html/rfc6026#section-8.4\n                if (statusCode >= 300 && statusCode <= 699) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed);\n                    this.ack(response);\n                    if (this.user.receiveResponse) {\n                        this.user.receiveResponse(response);\n                    }\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted:\n                // The purpose of the \"Accepted\" state is to allow the client\n                // transaction to continue to exist to receive, and pass to the TU,\n                // any retransmissions of the 2xx response and any additional 2xx\n                // responses from other branches of the INVITE if it forked\n                // downstream. Timer M reflects the amount of time that the\n                // transaction user will wait for such messages.\n                //\n                // Any 2xx responses that match this client transaction and that are\n                // received while in the \"Accepted\" state MUST be passed up to the\n                // TU. The client transaction MUST NOT generate an ACK to the 2xx\n                // response. The client transaction takes no further action.\n                // https://tools.ietf.org/html/rfc6026#section-8.4\n                if (statusCode >= 200 && statusCode <= 299) {\n                    // NOTE: This implementation herein is intentionally not RFC compliant.\n                    // While the first 2xx response for a given branch is passed up to the TU,\n                    // retransmissions of 2xx responses are absorbed and the ACK associated\n                    // with the original response is resent. This approach is taken because\n                    // our current transaction users are not currently in a good position to\n                    // deal with 2xx retransmission. This SHOULD NOT cause any compliance issues - ;)\n                    //\n                    // If we don't have a cache hit, pass the response to the TU.\n                    if (!this.ackRetransmissionCache.has(response.toTag)) {\n                        this.ackRetransmissionCache.set(response.toTag, undefined); // Prime the ACK cache\n                        if (this.user.receiveResponse) {\n                            this.user.receiveResponse(response);\n                        }\n                        return;\n                    }\n                    // If we have a cache hit, try pulling the ACK from cache and retransmitting it.\n                    const ack = this.ackRetransmissionCache.get(response.toTag);\n                    if (ack) {\n                        this.send(ack.toString()).catch((error) => {\n                            this.logTransportError(error, \"Failed to send retransmission of ACK to 2xx response.\");\n                        });\n                        return;\n                    }\n                    // If an ACK was not found in cache then we have received a retransmitted 2xx\n                    // response before the TU responded to the original response (we don't have an ACK yet).\n                    // So discard this response under the assumption that the TU will eventually\n                    // get us a ACK for the original response.\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                // Any retransmissions of a response with status code 300-699 that\n                // are received while in the \"Completed\" state MUST cause the ACK to\n                // be re-passed to the transport layer for retransmission, but the\n                // newly received response MUST NOT be passed up to the TU.\n                // https://tools.ietf.org/html/rfc6026#section-8.4\n                if (statusCode >= 300 && statusCode <= 699) {\n                    this.ack(response);\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                break;\n            default:\n                throw new Error(`Invalid state ${this.state}`);\n        }\n        // Any response received that does not match an existing client\n        // transaction state machine is simply dropped. (Implementations are,\n        // of course, free to log or do other implementation-specific things\n        // with such responses, but the implementer should be sure to consider\n        // the impact of large numbers of malicious stray responses.)\n        // https://tools.ietf.org/html/rfc6026#section-7.2\n        const message = `Received unexpected ${statusCode} response while in state ${this.state}.`;\n        this.logger.warn(message);\n        return;\n    }\n    /**\n     * The client transaction SHOULD inform the TU that a transport failure\n     * has occurred, and the client transaction SHOULD transition directly\n     * to the \"Terminated\" state.  The TU will handle the failover\n     * mechanisms described in [4].\n     * https://tools.ietf.org/html/rfc3261#section-17.1.4\n     * @param error - The error.\n     */\n    onTransportError(error) {\n        if (this.user.onTransportError) {\n            this.user.onTransportError(error);\n        }\n        this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated, true);\n    }\n    /** For logging. */\n    typeToString() {\n        return \"INVITE client transaction\";\n    }\n    ack(response) {\n        // The ACK request constructed by the client transaction MUST contain\n        // values for the Call-ID, From, and Request-URI that are equal to the\n        // values of those header fields in the request passed to the transport\n        // by the client transaction (call this the \"original request\"). The To\n        // header field in the ACK MUST equal the To header field in the\n        // response being acknowledged, and therefore will usually differ from\n        // the To header field in the original request by the addition of the\n        // tag parameter. The ACK MUST contain a single Via header field, and\n        // this MUST be equal to the top Via header field of the original\n        // request. The CSeq header field in the ACK MUST contain the same\n        // value for the sequence number as was present in the original request,\n        // but the method parameter MUST be equal to \"ACK\".\n        //\n        // If the INVITE request whose response is being acknowledged had Route\n        // header fields, those header fields MUST appear in the ACK. This is\n        // to ensure that the ACK can be routed properly through any downstream\n        // stateless proxies.\n        // https://tools.ietf.org/html/rfc3261#section-17.1.1.3\n        const ruri = this.request.ruri;\n        const callId = this.request.callId;\n        const cseq = this.request.cseq;\n        const from = this.request.getHeader(\"from\");\n        const to = response.getHeader(\"to\");\n        const via = this.request.getHeader(\"via\");\n        const route = this.request.getHeader(\"route\");\n        if (!from) {\n            throw new Error(\"From undefined.\");\n        }\n        if (!to) {\n            throw new Error(\"To undefined.\");\n        }\n        if (!via) {\n            throw new Error(\"Via undefined.\");\n        }\n        let ack = `ACK ${ruri} SIP/2.0\\r\\n`;\n        if (route) {\n            ack += `Route: ${route}\\r\\n`;\n        }\n        ack += `Via: ${via}\\r\\n`;\n        ack += `To: ${to}\\r\\n`;\n        ack += `From: ${from}\\r\\n`;\n        ack += `Call-ID: ${callId}\\r\\n`;\n        ack += `CSeq: ${cseq} ACK\\r\\n`;\n        ack += `Max-Forwards: 70\\r\\n`;\n        ack += `Content-Length: 0\\r\\n\\r\\n`;\n        // TOOO: \"User-Agent\" header\n        this.send(ack).catch((error) => {\n            this.logTransportError(error, \"Failed to send ACK to non-2xx response.\");\n        });\n        return;\n    }\n    /**\n     * Execute a state transition.\n     * @param newState - New state.\n     */\n    stateTransition(newState, dueToTransportError = false) {\n        // Assert valid state transitions.\n        const invalidStateTransition = () => {\n            throw new Error(`Invalid state transition from ${this.state} to ${newState}`);\n        };\n        switch (newState) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Calling:\n                invalidStateTransition();\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Calling) {\n                    invalidStateTransition();\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted:\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Calling && this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding) {\n                    invalidStateTransition();\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Calling &&\n                    this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted &&\n                    this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n                    if (!dueToTransportError) {\n                        invalidStateTransition();\n                    }\n                }\n                break;\n            default:\n                invalidStateTransition();\n        }\n        // While not spelled out in the RFC, Timer B is the maximum amount of time that a sender\n        // will wait for an INVITE message to be acknowledged (a SIP response message is received).\n        // So Timer B should be cleared when the transaction state proceeds from \"Calling\".\n        if (this.B) {\n            clearTimeout(this.B);\n            this.B = undefined;\n        }\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding) {\n            // Timers have no effect on \"Proceeding\" state.\n            // In the \"Proceeding\" state, the client transaction\n            // SHOULD NOT retransmit the request any longer.\n            // https://tools.ietf.org/html/rfc3261#section-17.1.1.2\n        }\n        // The client transaction MUST start Timer D when it enters the \"Completed\" state\n        // for any reason, with a value of at least 32 seconds for unreliable transports,\n        // and a value of zero seconds for reliable transports.\n        // https://tools.ietf.org/html/rfc6026#section-8.4\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n            this.D = setTimeout(() => this.timerD(), _timers_js__WEBPACK_IMPORTED_MODULE_2__.Timers.TIMER_D);\n        }\n        // The client transaction MUST transition to the \"Accepted\" state,\n        // and Timer M MUST be started with a value of 64*T1.\n        // https://tools.ietf.org/html/rfc6026#section-8.4\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted) {\n            this.M = setTimeout(() => this.timerM(), _timers_js__WEBPACK_IMPORTED_MODULE_2__.Timers.TIMER_M);\n        }\n        // Once the transaction is in the \"Terminated\" state, it MUST be destroyed immediately.\n        // https://tools.ietf.org/html/rfc6026#section-8.7\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated) {\n            this.dispose();\n        }\n        // Update state.\n        this.setState(newState);\n    }\n    /**\n     * When timer A fires, the client transaction MUST retransmit the\n     * request by passing it to the transport layer, and MUST reset the\n     * timer with a value of 2*T1.\n     * When timer A fires 2*T1 seconds later, the request MUST be\n     * retransmitted again (assuming the client transaction is still in this\n     * state). This process MUST continue so that the request is\n     * retransmitted with intervals that double after each transmission.\n     * These retransmissions SHOULD only be done while the client\n     * transaction is in the \"Calling\" state.\n     * https://tools.ietf.org/html/rfc3261#section-17.1.1.2\n     */\n    timerA() {\n        // TODO\n    }\n    /**\n     * If the client transaction is still in the \"Calling\" state when timer\n     * B fires, the client transaction SHOULD inform the TU that a timeout\n     * has occurred.  The client transaction MUST NOT generate an ACK.\n     * https://tools.ietf.org/html/rfc3261#section-17.1.1.2\n     */\n    timerB() {\n        this.logger.debug(`Timer B expired for INVITE client transaction ${this.id}.`);\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Calling) {\n            this.onRequestTimeout();\n            this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n        }\n    }\n    /**\n     * If Timer D fires while the client transaction is in the \"Completed\" state,\n     * the client transaction MUST move to the \"Terminated\" state.\n     * https://tools.ietf.org/html/rfc6026#section-8.4\n     */\n    timerD() {\n        this.logger.debug(`Timer D expired for INVITE client transaction ${this.id}.`);\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n            this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n        }\n    }\n    /**\n     * If Timer M fires while the client transaction is in the \"Accepted\"\n     * state, the client transaction MUST move to the \"Terminated\" state.\n     * https://tools.ietf.org/html/rfc6026#section-8.4\n     */\n    timerM() {\n        this.logger.debug(`Timer M expired for INVITE client transaction ${this.id}.`);\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted) {\n            this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n        }\n    }\n}\n\n\n/***/ }),\n/* 70 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Dialog\": () => (/* binding */ Dialog)\n/* harmony export */ });\n/* harmony import */ var _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(26);\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n\n\n/**\n * Dialog.\n * @remarks\n * A key concept for a user agent is that of a dialog.  A dialog\n * represents a peer-to-peer SIP relationship between two user agents\n * that persists for some time.  The dialog facilitates sequencing of\n * messages between the user agents and proper routing of requests\n * between both of them.  The dialog represents a context in which to\n * interpret SIP messages.\n * https://tools.ietf.org/html/rfc3261#section-12\n * @public\n */\nclass Dialog {\n    /**\n     * Dialog constructor.\n     * @param core - User agent core.\n     * @param dialogState - Initial dialog state.\n     */\n    constructor(core, dialogState) {\n        this.core = core;\n        this.dialogState = dialogState;\n        this.core.dialogs.set(this.id, this);\n    }\n    /**\n     * When a UAC receives a response that establishes a dialog, it\n     * constructs the state of the dialog.  This state MUST be maintained\n     * for the duration of the dialog.\n     * https://tools.ietf.org/html/rfc3261#section-12.1.2\n     * @param outgoingRequestMessage - Outgoing request message for dialog.\n     * @param incomingResponseMessage - Incoming response message creating dialog.\n     */\n    static initialDialogStateForUserAgentClient(outgoingRequestMessage, incomingResponseMessage) {\n        // If the request was sent over TLS, and the Request-URI contained a\n        // SIPS URI, the \"secure\" flag is set to TRUE.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.2\n        const secure = false; // FIXME: Currently no support for TLS.\n        // The route set MUST be set to the list of URIs in the Record-Route\n        // header field from the response, taken in reverse order and preserving\n        // all URI parameters.  If no Record-Route header field is present in\n        // the response, the route set MUST be set to the empty set.  This route\n        // set, even if empty, overrides any pre-existing route set for future\n        // requests in this dialog.  The remote target MUST be set to the URI\n        // from the Contact header field of the response.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.2\n        const routeSet = incomingResponseMessage.getHeaders(\"record-route\").reverse();\n        // When a UAS responds to a request with a response that establishes a\n        // dialog (such as a 2xx to INVITE), the UAS MUST copy all Record-Route\n        // header field values from the request into the response (including the\n        // URIs, URI parameters, and any Record-Route header field parameters,\n        // whether they are known or unknown to the UAS) and MUST maintain the\n        // order of those values.  The UAS MUST add a Contact header field to\n        // the response.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.1\n        const contact = incomingResponseMessage.parseHeader(\"contact\");\n        if (!contact) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"Contact undefined.\");\n        }\n        if (!(contact instanceof _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_0__.NameAddrHeader)) {\n            throw new Error(\"Contact not instance of NameAddrHeader.\");\n        }\n        const remoteTarget = contact.uri;\n        // The local sequence number MUST be set to the value of the sequence\n        // number in the CSeq header field of the request.  The remote sequence\n        // number MUST be empty (it is established when the remote UA sends a\n        // request within the dialog).  The call identifier component of the\n        // dialog ID MUST be set to the value of the Call-ID in the request.\n        // The local tag component of the dialog ID MUST be set to the tag in\n        // the From field in the request, and the remote tag component of the\n        // dialog ID MUST be set to the tag in the To field of the response.  A\n        // UAC MUST be prepared to receive a response without a tag in the To\n        // field, in which case the tag is considered to have a value of null.\n        //\n        //    This is to maintain backwards compatibility with RFC 2543, which\n        //    did not mandate To tags.\n        //\n        // https://tools.ietf.org/html/rfc3261#section-12.1.2\n        const localSequenceNumber = outgoingRequestMessage.cseq;\n        const remoteSequenceNumber = undefined;\n        const callId = outgoingRequestMessage.callId;\n        const localTag = outgoingRequestMessage.fromTag;\n        const remoteTag = incomingResponseMessage.toTag;\n        if (!callId) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"Call id undefined.\");\n        }\n        if (!localTag) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"From tag undefined.\");\n        }\n        if (!remoteTag) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"To tag undefined.\"); // FIXME: No backwards compatibility with RFC 2543\n        }\n        // The remote URI MUST be set to the URI in the To field, and the local\n        // URI MUST be set to the URI in the From field.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.2\n        if (!outgoingRequestMessage.from) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"From undefined.\");\n        }\n        if (!outgoingRequestMessage.to) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"To undefined.\");\n        }\n        const localURI = outgoingRequestMessage.from.uri;\n        const remoteURI = outgoingRequestMessage.to.uri;\n        // A dialog can also be in the \"early\" state, which occurs when it is\n        // created with a provisional response, and then transition to the\n        // \"confirmed\" state when a 2xx final response arrives.\n        // https://tools.ietf.org/html/rfc3261#section-12\n        if (!incomingResponseMessage.statusCode) {\n            throw new Error(\"Incoming response status code undefined.\");\n        }\n        const early = incomingResponseMessage.statusCode < 200 ? true : false;\n        const dialogState = {\n            id: callId + localTag + remoteTag,\n            early,\n            callId,\n            localTag,\n            remoteTag,\n            localSequenceNumber,\n            remoteSequenceNumber,\n            localURI,\n            remoteURI,\n            remoteTarget,\n            routeSet,\n            secure\n        };\n        return dialogState;\n    }\n    /**\n     * The UAS then constructs the state of the dialog.  This state MUST be\n     * maintained for the duration of the dialog.\n     * https://tools.ietf.org/html/rfc3261#section-12.1.1\n     * @param incomingRequestMessage - Incoming request message creating dialog.\n     * @param toTag - Tag in the To field in the response to the incoming request.\n     */\n    static initialDialogStateForUserAgentServer(incomingRequestMessage, toTag, early = false) {\n        // If the request arrived over TLS, and the Request-URI contained a SIPS\n        // URI, the \"secure\" flag is set to TRUE.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.1\n        const secure = false; // FIXME: Currently no support for TLS.\n        // The route set MUST be set to the list of URIs in the Record-Route\n        // header field from the request, taken in order and preserving all URI\n        // parameters.  If no Record-Route header field is present in the\n        // request, the route set MUST be set to the empty set.  This route set,\n        // even if empty, overrides any pre-existing route set for future\n        // requests in this dialog.  The remote target MUST be set to the URI\n        // from the Contact header field of the request.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.1\n        const routeSet = incomingRequestMessage.getHeaders(\"record-route\");\n        const contact = incomingRequestMessage.parseHeader(\"contact\");\n        if (!contact) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"Contact undefined.\");\n        }\n        if (!(contact instanceof _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_0__.NameAddrHeader)) {\n            throw new Error(\"Contact not instance of NameAddrHeader.\");\n        }\n        const remoteTarget = contact.uri;\n        // The remote sequence number MUST be set to the value of the sequence\n        // number in the CSeq header field of the request.  The local sequence\n        // number MUST be empty.  The call identifier component of the dialog ID\n        // MUST be set to the value of the Call-ID in the request.  The local\n        // tag component of the dialog ID MUST be set to the tag in the To field\n        // in the response to the request (which always includes a tag), and the\n        // remote tag component of the dialog ID MUST be set to the tag from the\n        // From field in the request.  A UAS MUST be prepared to receive a\n        // request without a tag in the From field, in which case the tag is\n        // considered to have a value of null.\n        //\n        //    This is to maintain backwards compatibility with RFC 2543, which\n        //    did not mandate From tags.\n        //\n        // https://tools.ietf.org/html/rfc3261#section-12.1.1\n        const remoteSequenceNumber = incomingRequestMessage.cseq;\n        const localSequenceNumber = undefined;\n        const callId = incomingRequestMessage.callId;\n        const localTag = toTag;\n        const remoteTag = incomingRequestMessage.fromTag;\n        // The remote URI MUST be set to the URI in the From field, and the\n        // local URI MUST be set to the URI in the To field.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.1\n        const remoteURI = incomingRequestMessage.from.uri;\n        const localURI = incomingRequestMessage.to.uri;\n        const dialogState = {\n            id: callId + localTag + remoteTag,\n            early,\n            callId,\n            localTag,\n            remoteTag,\n            localSequenceNumber,\n            remoteSequenceNumber,\n            localURI,\n            remoteURI,\n            remoteTarget,\n            routeSet,\n            secure\n        };\n        return dialogState;\n    }\n    /** Destructor. */\n    dispose() {\n        this.core.dialogs.delete(this.id);\n    }\n    /**\n     * A dialog is identified at each UA with a dialog ID, which consists of\n     * a Call-ID value, a local tag and a remote tag.  The dialog ID at each\n     * UA involved in the dialog is not the same.  Specifically, the local\n     * tag at one UA is identical to the remote tag at the peer UA.  The\n     * tags are opaque tokens that facilitate the generation of unique\n     * dialog IDs.\n     * https://tools.ietf.org/html/rfc3261#section-12\n     */\n    get id() {\n        return this.dialogState.id;\n    }\n    /**\n     * A dialog can also be in the \"early\" state, which occurs when it is\n     * created with a provisional response, and then it transition to the\n     * \"confirmed\" state when a 2xx final response received or is sent.\n     *\n     * Note: RFC 3261 is concise on when a dialog is \"confirmed\", but it\n     * can be a point of confusion if an INVITE dialog is \"confirmed\" after\n     * a 2xx is sent or after receiving the ACK for the 2xx response.\n     * With careful reading it can be inferred a dialog is always is\n     * \"confirmed\" when the 2xx is sent (regardless of type of dialog).\n     * However a INVITE dialog does have additional considerations\n     * when it is confirmed but an ACK has not yet been received (in\n     * particular with regard to a callee sending BYE requests).\n     */\n    get early() {\n        return this.dialogState.early;\n    }\n    /** Call identifier component of the dialog id. */\n    get callId() {\n        return this.dialogState.callId;\n    }\n    /** Local tag component of the dialog id. */\n    get localTag() {\n        return this.dialogState.localTag;\n    }\n    /** Remote tag component of the dialog id. */\n    get remoteTag() {\n        return this.dialogState.remoteTag;\n    }\n    /** Local sequence number (used to order requests from the UA to its peer). */\n    get localSequenceNumber() {\n        return this.dialogState.localSequenceNumber;\n    }\n    /** Remote sequence number (used to order requests from its peer to the UA). */\n    get remoteSequenceNumber() {\n        return this.dialogState.remoteSequenceNumber;\n    }\n    /** Local URI. */\n    get localURI() {\n        return this.dialogState.localURI;\n    }\n    /** Remote URI. */\n    get remoteURI() {\n        return this.dialogState.remoteURI;\n    }\n    /** Remote target. */\n    get remoteTarget() {\n        return this.dialogState.remoteTarget;\n    }\n    /**\n     * Route set, which is an ordered list of URIs. The route set is the\n     * list of servers that need to be traversed to send a request to the peer.\n     */\n    get routeSet() {\n        return this.dialogState.routeSet;\n    }\n    /**\n     * If the request was sent over TLS, and the Request-URI contained\n     * a SIPS URI, the \"secure\" flag is set to true. *NOT IMPLEMENTED*\n     */\n    get secure() {\n        return this.dialogState.secure;\n    }\n    /** The user agent core servicing this dialog. */\n    get userAgentCore() {\n        return this.core;\n    }\n    /** Confirm the dialog. Only matters if dialog is currently early. */\n    confirm() {\n        this.dialogState.early = false;\n    }\n    /**\n     * Requests sent within a dialog, as any other requests, are atomic.  If\n     * a particular request is accepted by the UAS, all the state changes\n     * associated with it are performed.  If the request is rejected, none\n     * of the state changes are performed.\n     *\n     *    Note that some requests, such as INVITEs, affect several pieces of\n     *    state.\n     *\n     * https://tools.ietf.org/html/rfc3261#section-12.2.2\n     * @param message - Incoming request message within this dialog.\n     */\n    receiveRequest(message) {\n        // ACK guard.\n        // By convention, the handling of ACKs is the responsibility\n        // the particular dialog implementation. For example, see SessionDialog.\n        // Furthermore, ACKs have same sequence number as the associated INVITE.\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.ACK) {\n            return;\n        }\n        // If the remote sequence number was not empty, but the sequence number\n        // of the request is lower than the remote sequence number, the request\n        // is out of order and MUST be rejected with a 500 (Server Internal\n        // Error) response.  If the remote sequence number was not empty, and\n        // the sequence number of the request is greater than the remote\n        // sequence number, the request is in order.  It is possible for the\n        // CSeq sequence number to be higher than the remote sequence number by\n        // more than one.  This is not an error condition, and a UAS SHOULD be\n        // prepared to receive and process requests with CSeq values more than\n        // one higher than the previous received request.  The UAS MUST then set\n        // the remote sequence number to the value of the sequence number in the\n        // CSeq header field value in the request.\n        //\n        //    If a proxy challenges a request generated by the UAC, the UAC has\n        //    to resubmit the request with credentials.  The resubmitted request\n        //    will have a new CSeq number.  The UAS will never see the first\n        //    request, and thus, it will notice a gap in the CSeq number space.\n        //    Such a gap does not represent any error condition.\n        //\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        if (this.remoteSequenceNumber) {\n            if (message.cseq <= this.remoteSequenceNumber) {\n                throw new Error(\"Out of sequence in dialog request. Did you forget to call sequenceGuard()?\");\n            }\n            this.dialogState.remoteSequenceNumber = message.cseq;\n        }\n        // If the remote sequence number is empty, it MUST be set to the value\n        // of the sequence number in the CSeq header field value in the request.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        if (!this.remoteSequenceNumber) {\n            this.dialogState.remoteSequenceNumber = message.cseq;\n        }\n        // When a UAS receives a target refresh request, it MUST replace the\n        // dialog's remote target URI with the URI from the Contact header field\n        // in that request, if present.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        // Note: \"target refresh request\" processing delegated to sub-class.\n    }\n    /**\n     * If the dialog identifier in the 2xx response matches the dialog\n     * identifier of an existing dialog, the dialog MUST be transitioned to\n     * the \"confirmed\" state, and the route set for the dialog MUST be\n     * recomputed based on the 2xx response using the procedures of Section\n     * 12.2.1.2.  Otherwise, a new dialog in the \"confirmed\" state MUST be\n     * constructed using the procedures of Section 12.1.2.\n     *\n     * Note that the only piece of state that is recomputed is the route\n     * set.  Other pieces of state such as the highest sequence numbers\n     * (remote and local) sent within the dialog are not recomputed.  The\n     * route set only is recomputed for backwards compatibility.  RFC\n     * 2543 did not mandate mirroring of the Record-Route header field in\n     * a 1xx, only 2xx.  However, we cannot update the entire state of\n     * the dialog, since mid-dialog requests may have been sent within\n     * the early dialog, modifying the sequence numbers, for example.\n     *\n     *  https://tools.ietf.org/html/rfc3261#section-13.2.2.4\n     */\n    recomputeRouteSet(message) {\n        this.dialogState.routeSet = message.getHeaders(\"record-route\").reverse();\n    }\n    /**\n     * A request within a dialog is constructed by using many of the\n     * components of the state stored as part of the dialog.\n     * https://tools.ietf.org/html/rfc3261#section-12.2.1.1\n     * @param method - Outgoing request method.\n     */\n    createOutgoingRequestMessage(method, options) {\n        // The URI in the To field of the request MUST be set to the remote URI\n        // from the dialog state.  The tag in the To header field of the request\n        // MUST be set to the remote tag of the dialog ID.  The From URI of the\n        // request MUST be set to the local URI from the dialog state.  The tag\n        // in the From header field of the request MUST be set to the local tag\n        // of the dialog ID.  If the value of the remote or local tags is null,\n        // the tag parameter MUST be omitted from the To or From header fields,\n        // respectively.\n        //\n        //    Usage of the URI from the To and From fields in the original\n        //    request within subsequent requests is done for backwards\n        //    compatibility with RFC 2543, which used the URI for dialog\n        //    identification.  In this specification, only the tags are used for\n        //    dialog identification.  It is expected that mandatory reflection\n        //    of the original To and From URI in mid-dialog requests will be\n        //    deprecated in a subsequent revision of this specification.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.1.1\n        const toUri = this.remoteURI;\n        const toTag = this.remoteTag;\n        const fromUri = this.localURI;\n        const fromTag = this.localTag;\n        // The Call-ID of the request MUST be set to the Call-ID of the dialog.\n        // Requests within a dialog MUST contain strictly monotonically\n        // increasing and contiguous CSeq sequence numbers (increasing-by-one)\n        // in each direction (excepting ACK and CANCEL of course, whose numbers\n        // equal the requests being acknowledged or cancelled).  Therefore, if\n        // the local sequence number is not empty, the value of the local\n        // sequence number MUST be incremented by one, and this value MUST be\n        // placed into the CSeq header field.  If the local sequence number is\n        // empty, an initial value MUST be chosen using the guidelines of\n        // Section 8.1.1.5.  The method field in the CSeq header field value\n        // MUST match the method of the request.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.1.1\n        const callId = this.callId;\n        let cseq;\n        if (options && options.cseq) {\n            cseq = options.cseq;\n        }\n        else if (!this.dialogState.localSequenceNumber) {\n            cseq = this.dialogState.localSequenceNumber = 1; // https://tools.ietf.org/html/rfc3261#section-8.1.1.5\n        }\n        else {\n            cseq = this.dialogState.localSequenceNumber += 1;\n        }\n        // The UAC uses the remote target and route set to build the Request-URI\n        // and Route header field of the request.\n        //\n        // If the route set is empty, the UAC MUST place the remote target URI\n        // into the Request-URI.  The UAC MUST NOT add a Route header field to\n        // the request.\n        //\n        // If the route set is not empty, and the first URI in the route set\n        // contains the lr parameter (see Section 19.1.1), the UAC MUST place\n        // the remote target URI into the Request-URI and MUST include a Route\n        // header field containing the route set values in order, including all\n        // parameters.\n        //\n        // If the route set is not empty, and its first URI does not contain the\n        // lr parameter, the UAC MUST place the first URI from the route set\n        // into the Request-URI, stripping any parameters that are not allowed\n        // in a Request-URI.  The UAC MUST add a Route header field containing\n        // the remainder of the route set values in order, including all\n        // parameters.  The UAC MUST then place the remote target URI into the\n        // Route header field as the last value.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.1.1\n        // The lr parameter, when present, indicates that the element\n        // responsible for this resource implements the routing mechanisms\n        // specified in this document.  This parameter will be used in the\n        // URIs proxies place into Record-Route header field values, and\n        // may appear in the URIs in a pre-existing route set.\n        //\n        // This parameter is used to achieve backwards compatibility with\n        // systems implementing the strict-routing mechanisms of RFC 2543\n        // and the rfc2543bis drafts up to bis-05.  An element preparing\n        // to send a request based on a URI not containing this parameter\n        // can assume the receiving element implements strict-routing and\n        // reformat the message to preserve the information in the\n        // Request-URI.\n        // https://tools.ietf.org/html/rfc3261#section-19.1.1\n        // NOTE: Not backwards compatible with RFC 2543 (no support for strict-routing).\n        const ruri = this.remoteTarget;\n        const routeSet = this.routeSet;\n        const extraHeaders = options && options.extraHeaders;\n        const body = options && options.body;\n        // The relative order of header fields with different field names is not\n        // significant.  However, it is RECOMMENDED that header fields which are\n        // needed for proxy processing (Via, Route, Record-Route, Proxy-Require,\n        // Max-Forwards, and Proxy-Authorization, for example) appear towards\n        // the top of the message to facilitate rapid parsing.\n        // https://tools.ietf.org/html/rfc3261#section-7.3.1\n        const message = this.userAgentCore.makeOutgoingRequestMessage(method, ruri, fromUri, toUri, {\n            callId,\n            cseq,\n            fromTag,\n            toTag,\n            routeSet\n        }, extraHeaders, body);\n        return message;\n    }\n    /**\n     * Increment the local sequence number by one.\n     * It feels like this should be protected, but the current authentication handling currently\n     * needs this to keep the dialog in sync when \"auto re-sends\" request messages.\n     * @internal\n     */\n    incrementLocalSequenceNumber() {\n        if (!this.dialogState.localSequenceNumber) {\n            throw new Error(\"Local sequence number undefined.\");\n        }\n        this.dialogState.localSequenceNumber += 1;\n    }\n    /**\n     * If the remote sequence number was not empty, but the sequence number\n     * of the request is lower than the remote sequence number, the request\n     * is out of order and MUST be rejected with a 500 (Server Internal\n     * Error) response.\n     * https://tools.ietf.org/html/rfc3261#section-12.2.2\n     * @param request - Incoming request to guard.\n     * @returns True if the program execution is to continue in the branch in question.\n     *          Otherwise a 500 Server Internal Error was stateless sent and request processing must stop.\n     */\n    sequenceGuard(message) {\n        // ACK guard.\n        // By convention, handling of unexpected ACKs is responsibility\n        // the particular dialog implementation. For example, see SessionDialog.\n        // Furthermore, we cannot reply to an \"out of sequence\" ACK.\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.ACK) {\n            return true;\n        }\n        // Note: We are rejecting on \"less than or equal to\" the remote\n        // sequence number (excepting ACK whose numbers equal the requests\n        // being acknowledged or cancelled), which is the correct thing to\n        // do in our case. The only time a request with the same sequence number\n        // will show up here if is a) it is a very late retransmission of a\n        // request we already handled or b) it is a different request with the\n        // same sequence number which would be violation of the standard.\n        // Request retransmissions are absorbed by the transaction layer,\n        // so any request with a duplicate sequence number getting here\n        // would have to be a retransmission after the transaction terminated\n        // or a broken request (with unique via branch value).\n        // Requests within a dialog MUST contain strictly monotonically\n        // increasing and contiguous CSeq sequence numbers (increasing-by-one)\n        // in each direction (excepting ACK and CANCEL of course, whose numbers\n        // equal the requests being acknowledged or cancelled).  Therefore, if\n        // the local sequence number is not empty, the value of the local\n        // sequence number MUST be incremented by one, and this value MUST be\n        // placed into the CSeq header field.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.1.1\n        if (this.remoteSequenceNumber && message.cseq <= this.remoteSequenceNumber) {\n            this.core.replyStateless(message, { statusCode: 500 });\n            return false;\n        }\n        return true;\n    }\n}\n\n\n/***/ }),\n/* 71 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionDialog\": () => (/* binding */ SessionDialog)\n/* harmony export */ });\n/* harmony import */ var _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(26);\n/* harmony import */ var _messages_body_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(18);\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);\n/* harmony import */ var _messages_incoming_request_message_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(19);\n/* harmony import */ var _messages_incoming_response_message_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(27);\n/* harmony import */ var _messages_outgoing_request_message_js__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(28);\n/* harmony import */ var _session_session_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(31);\n/* harmony import */ var _timers_js__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(37);\n/* harmony import */ var _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(69);\n/* harmony import */ var _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(72);\n/* harmony import */ var _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(64);\n/* harmony import */ var _user_agents_bye_user_agent_client_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(74);\n/* harmony import */ var _user_agents_bye_user_agent_server_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(81);\n/* harmony import */ var _user_agents_info_user_agent_client_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(75);\n/* harmony import */ var _user_agents_info_user_agent_server_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(85);\n/* harmony import */ var _user_agents_message_user_agent_client_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(77);\n/* harmony import */ var _user_agents_message_user_agent_server_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(87);\n/* harmony import */ var _user_agents_notify_user_agent_client_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(78);\n/* harmony import */ var _user_agents_notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(88);\n/* harmony import */ var _user_agents_prack_user_agent_client_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(79);\n/* harmony import */ var _user_agents_prack_user_agent_server_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(89);\n/* harmony import */ var _user_agents_re_invite_user_agent_client_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(76);\n/* harmony import */ var _user_agents_re_invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(86);\n/* harmony import */ var _user_agents_refer_user_agent_client_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(80);\n/* harmony import */ var _user_agents_refer_user_agent_server_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(90);\n/* harmony import */ var _dialog_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(70);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * Session Dialog.\n * @public\n */\nclass SessionDialog extends _dialog_js__WEBPACK_IMPORTED_MODULE_0__.Dialog {\n    constructor(initialTransaction, core, state, delegate) {\n        super(core, state);\n        this.initialTransaction = initialTransaction;\n        /** The state of the offer/answer exchange. */\n        this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Initial;\n        /** True if waiting for an ACK to the initial transaction 2xx (UAS only). */\n        this.ackWait = false;\n        /** True if processing an ACK to the initial transaction 2xx (UAS only). */\n        this.ackProcessing = false;\n        this.delegate = delegate;\n        if (initialTransaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            // If we're created by an invite server transaction, we're\n            // going to be waiting for an ACK if are to be confirmed.\n            this.ackWait = true;\n        }\n        // If we're confirmed upon creation start the retransmitting whatever\n        // the 2xx final response was that confirmed us into existence.\n        if (!this.early) {\n            this.start2xxRetransmissionTimer();\n        }\n        this.signalingStateTransition(initialTransaction.request);\n        this.logger = core.loggerFactory.getLogger(\"sip.invite-dialog\");\n        this.logger.log(`INVITE dialog ${this.id} constructed`);\n    }\n    dispose() {\n        super.dispose();\n        this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Closed;\n        this._offer = undefined;\n        this._answer = undefined;\n        if (this.invite2xxTimer) {\n            clearTimeout(this.invite2xxTimer);\n            this.invite2xxTimer = undefined;\n        }\n        // The UAS MUST still respond to any pending requests received for that\n        // dialog.  It is RECOMMENDED that a 487 (Request Terminated) response\n        // be generated to those pending requests.\n        // https://tools.ietf.org/html/rfc3261#section-15.1.2\n        // TODO:\n        // this.userAgentServers.forEach((uas) => uas.reply(487));\n        this.logger.log(`INVITE dialog ${this.id} destroyed`);\n    }\n    // FIXME: Need real state machine\n    get sessionState() {\n        if (this.early) {\n            return _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Early;\n        }\n        else if (this.ackWait) {\n            return _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.AckWait;\n        }\n        else if (this._signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Closed) {\n            return _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Terminated;\n        }\n        else {\n            return _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SessionState.Confirmed;\n        }\n    }\n    /** The state of the offer/answer exchange. */\n    get signalingState() {\n        return this._signalingState;\n    }\n    /** The current offer. Undefined unless signaling state HaveLocalOffer, HaveRemoteOffer, of Stable. */\n    get offer() {\n        return this._offer;\n    }\n    /** The current answer. Undefined unless signaling state Stable. */\n    get answer() {\n        return this._answer;\n    }\n    /** Confirm the dialog. Only matters if dialog is currently early. */\n    confirm() {\n        // When we're confirmed start the retransmitting whatever\n        // the 2xx final response that may have confirmed us.\n        if (this.early) {\n            this.start2xxRetransmissionTimer();\n        }\n        super.confirm();\n    }\n    /** Re-confirm the dialog. Only matters if handling re-INVITE request. */\n    reConfirm() {\n        // When we're confirmed start the retransmitting whatever\n        // the 2xx final response that may have confirmed us.\n        if (this.reinviteUserAgentServer) {\n            this.startReInvite2xxRetransmissionTimer();\n        }\n    }\n    /**\n     * The UAC core MUST generate an ACK request for each 2xx received from\n     * the transaction layer.  The header fields of the ACK are constructed\n     * in the same way as for any request sent within a dialog (see Section\n     * 12) with the exception of the CSeq and the header fields related to\n     * authentication.  The sequence number of the CSeq header field MUST be\n     * the same as the INVITE being acknowledged, but the CSeq method MUST\n     * be ACK.  The ACK MUST contain the same credentials as the INVITE.  If\n     * the 2xx contains an offer (based on the rules above), the ACK MUST\n     * carry an answer in its body.  If the offer in the 2xx response is not\n     * acceptable, the UAC core MUST generate a valid answer in the ACK and\n     * then send a BYE immediately.\n     * https://tools.ietf.org/html/rfc3261#section-13.2.2.4\n     * @param options - ACK options bucket.\n     */\n    ack(options = {}) {\n        this.logger.log(`INVITE dialog ${this.id} sending ACK request`);\n        let transaction;\n        if (this.reinviteUserAgentClient) {\n            // We're sending ACK for a re-INVITE\n            if (!(this.reinviteUserAgentClient.transaction instanceof _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_3__.InviteClientTransaction)) {\n                throw new Error(\"Transaction not instance of InviteClientTransaction.\");\n            }\n            transaction = this.reinviteUserAgentClient.transaction;\n            this.reinviteUserAgentClient = undefined;\n        }\n        else {\n            // We're sending ACK for the initial INVITE\n            if (!(this.initialTransaction instanceof _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_3__.InviteClientTransaction)) {\n                throw new Error(\"Initial transaction not instance of InviteClientTransaction.\");\n            }\n            transaction = this.initialTransaction;\n        }\n        const message = this.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.ACK, {\n            cseq: transaction.request.cseq,\n            extraHeaders: options.extraHeaders,\n            body: options.body\n        });\n        transaction.ackResponse(message); // See InviteClientTransaction for details.\n        this.signalingStateTransition(message);\n        return { message };\n    }\n    /**\n     * Terminating a Session\n     *\n     * This section describes the procedures for terminating a session\n     * established by SIP.  The state of the session and the state of the\n     * dialog are very closely related.  When a session is initiated with an\n     * INVITE, each 1xx or 2xx response from a distinct UAS creates a\n     * dialog, and if that response completes the offer/answer exchange, it\n     * also creates a session.  As a result, each session is \"associated\"\n     * with a single dialog - the one which resulted in its creation.  If an\n     * initial INVITE generates a non-2xx final response, that terminates\n     * all sessions (if any) and all dialogs (if any) that were created\n     * through responses to the request.  By virtue of completing the\n     * transaction, a non-2xx final response also prevents further sessions\n     * from being created as a result of the INVITE.  The BYE request is\n     * used to terminate a specific session or attempted session.  In this\n     * case, the specific session is the one with the peer UA on the other\n     * side of the dialog.  When a BYE is received on a dialog, any session\n     * associated with that dialog SHOULD terminate.  A UA MUST NOT send a\n     * BYE outside of a dialog.  The caller's UA MAY send a BYE for either\n     * confirmed or early dialogs, and the callee's UA MAY send a BYE on\n     * confirmed dialogs, but MUST NOT send a BYE on early dialogs.\n     *\n     * However, the callee's UA MUST NOT send a BYE on a confirmed dialog\n     * until it has received an ACK for its 2xx response or until the server\n     * transaction times out.  If no SIP extensions have defined other\n     * application layer states associated with the dialog, the BYE also\n     * terminates the dialog.\n     *\n     * https://tools.ietf.org/html/rfc3261#section-15\n     * FIXME: Make these proper Exceptions...\n     * @param options - BYE options bucket.\n     * @returns\n     * Throws `Error` if callee's UA attempts a BYE on an early dialog.\n     * Throws `Error` if callee's UA attempts a BYE on a confirmed dialog\n     *                while it's waiting on the ACK for its 2xx response.\n     */\n    bye(delegate, options) {\n        this.logger.log(`INVITE dialog ${this.id} sending BYE request`);\n        // The caller's UA MAY send a BYE for either\n        // confirmed or early dialogs, and the callee's UA MAY send a BYE on\n        // confirmed dialogs, but MUST NOT send a BYE on early dialogs.\n        //\n        // However, the callee's UA MUST NOT send a BYE on a confirmed dialog\n        // until it has received an ACK for its 2xx response or until the server\n        // transaction times out.\n        // https://tools.ietf.org/html/rfc3261#section-15\n        if (this.initialTransaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            if (this.early) {\n                // FIXME: TODO: This should throw a proper exception.\n                throw new Error(\"UAS MUST NOT send a BYE on early dialogs.\");\n            }\n            if (this.ackWait && this.initialTransaction.state !== _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_5__.TransactionState.Terminated) {\n                // FIXME: TODO: This should throw a proper exception.\n                throw new Error(\"UAS MUST NOT send a BYE on a confirmed dialog \" +\n                    \"until it has received an ACK for its 2xx response \" +\n                    \"or until the server transaction times out.\");\n            }\n        }\n        // A BYE request is constructed as would any other request within a\n        // dialog, as described in Section 12.\n        //\n        // Once the BYE is constructed, the UAC core creates a new non-INVITE\n        // client transaction, and passes it the BYE request.  The UAC MUST\n        // consider the session terminated (and therefore stop sending or\n        // listening for media) as soon as the BYE request is passed to the\n        // client transaction.  If the response for the BYE is a 481\n        // (Call/Transaction Does Not Exist) or a 408 (Request Timeout) or no\n        // response at all is received for the BYE (that is, a timeout is\n        // returned by the client transaction), the UAC MUST consider the\n        // session and the dialog terminated.\n        // https://tools.ietf.org/html/rfc3261#section-15.1.1\n        return new _user_agents_bye_user_agent_client_js__WEBPACK_IMPORTED_MODULE_6__.ByeUserAgentClient(this, delegate, options);\n    }\n    /**\n     * An INFO request can be associated with an Info Package (see\n     * Section 5), or associated with a legacy INFO usage (see Section 2).\n     *\n     * The construction of the INFO request is the same as any other\n     * non-target refresh request within an existing invite dialog usage as\n     * described in Section 12.2 of RFC 3261.\n     * https://tools.ietf.org/html/rfc6086#section-4.2.1\n     * @param options - Options bucket.\n     */\n    info(delegate, options) {\n        this.logger.log(`INVITE dialog ${this.id} sending INFO request`);\n        if (this.early) {\n            // FIXME: TODO: This should throw a proper exception.\n            throw new Error(\"Dialog not confirmed.\");\n        }\n        return new _user_agents_info_user_agent_client_js__WEBPACK_IMPORTED_MODULE_7__.InfoUserAgentClient(this, delegate, options);\n    }\n    /**\n     * Modifying an Existing Session\n     *\n     * A successful INVITE request (see Section 13) establishes both a\n     * dialog between two user agents and a session using the offer-answer\n     * model.  Section 12 explains how to modify an existing dialog using a\n     * target refresh request (for example, changing the remote target URI\n     * of the dialog).  This section describes how to modify the actual\n     * session.  This modification can involve changing addresses or ports,\n     * adding a media stream, deleting a media stream, and so on.  This is\n     * accomplished by sending a new INVITE request within the same dialog\n     * that established the session.  An INVITE request sent within an\n     * existing dialog is known as a re-INVITE.\n     *\n     *    Note that a single re-INVITE can modify the dialog and the\n     *    parameters of the session at the same time.\n     *\n     * Either the caller or callee can modify an existing session.\n     * https://tools.ietf.org/html/rfc3261#section-14\n     * @param options - Options bucket\n     */\n    invite(delegate, options) {\n        this.logger.log(`INVITE dialog ${this.id} sending INVITE request`);\n        if (this.early) {\n            // FIXME: TODO: This should throw a proper exception.\n            throw new Error(\"Dialog not confirmed.\");\n        }\n        // Note that a UAC MUST NOT initiate a new INVITE transaction within a\n        // dialog while another INVITE transaction is in progress in either\n        // direction.\n        //\n        //    1. If there is an ongoing INVITE client transaction, the TU MUST\n        //       wait until the transaction reaches the completed or terminated\n        //       state before initiating the new INVITE.\n        //\n        //    2. If there is an ongoing INVITE server transaction, the TU MUST\n        //       wait until the transaction reaches the confirmed or terminated\n        //       state before initiating the new INVITE.\n        //\n        // However, a UA MAY initiate a regular transaction while an INVITE\n        // transaction is in progress.  A UA MAY also initiate an INVITE\n        // transaction while a regular transaction is in progress.\n        // https://tools.ietf.org/html/rfc3261#section-14.1\n        if (this.reinviteUserAgentClient) {\n            // FIXME: TODO: This should throw a proper exception.\n            throw new Error(\"There is an ongoing re-INVITE client transaction.\");\n        }\n        if (this.reinviteUserAgentServer) {\n            // FIXME: TODO: This should throw a proper exception.\n            throw new Error(\"There is an ongoing re-INVITE server transaction.\");\n        }\n        return new _user_agents_re_invite_user_agent_client_js__WEBPACK_IMPORTED_MODULE_8__.ReInviteUserAgentClient(this, delegate, options);\n    }\n    /**\n     * A UAC MAY associate a MESSAGE request with an existing dialog.  If a\n     * MESSAGE request is sent within a dialog, it is \"associated\" with any\n     * media session or sessions associated with that dialog.\n     * https://tools.ietf.org/html/rfc3428#section-4\n     * @param options - Options bucket.\n     */\n    message(delegate, options) {\n        this.logger.log(`INVITE dialog ${this.id} sending MESSAGE request`);\n        if (this.early) {\n            // FIXME: TODO: This should throw a proper exception.\n            throw new Error(\"Dialog not confirmed.\");\n        }\n        const message = this.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.MESSAGE, options);\n        return new _user_agents_message_user_agent_client_js__WEBPACK_IMPORTED_MODULE_9__.MessageUserAgentClient(this.core, message, delegate);\n    }\n    /**\n     * The NOTIFY mechanism defined in [2] MUST be used to inform the agent\n     * sending the REFER of the status of the reference.\n     * https://tools.ietf.org/html/rfc3515#section-2.4.4\n     * @param options - Options bucket.\n     */\n    notify(delegate, options) {\n        this.logger.log(`INVITE dialog ${this.id} sending NOTIFY request`);\n        if (this.early) {\n            // FIXME: TODO: This should throw a proper exception.\n            throw new Error(\"Dialog not confirmed.\");\n        }\n        return new _user_agents_notify_user_agent_client_js__WEBPACK_IMPORTED_MODULE_10__.NotifyUserAgentClient(this, delegate, options);\n    }\n    /**\n     * Assuming the response is to be transmitted reliably, the UAC MUST\n     * create a new request with method PRACK.  This request is sent within\n     * the dialog associated with the provisional response (indeed, the\n     * provisional response may have created the dialog).  PRACK requests\n     * MAY contain bodies, which are interpreted according to their type and\n     * disposition.\n     * https://tools.ietf.org/html/rfc3262#section-4\n     * @param options - Options bucket.\n     */\n    prack(delegate, options) {\n        this.logger.log(`INVITE dialog ${this.id} sending PRACK request`);\n        return new _user_agents_prack_user_agent_client_js__WEBPACK_IMPORTED_MODULE_11__.PrackUserAgentClient(this, delegate, options);\n    }\n    /**\n     * REFER is a SIP request and is constructed as defined in [1].  A REFER\n     * request MUST contain exactly one Refer-To header field value.\n     * https://tools.ietf.org/html/rfc3515#section-2.4.1\n     * @param options - Options bucket.\n     */\n    refer(delegate, options) {\n        this.logger.log(`INVITE dialog ${this.id} sending REFER request`);\n        if (this.early) {\n            // FIXME: TODO: This should throw a proper exception.\n            throw new Error(\"Dialog not confirmed.\");\n        }\n        // FIXME: TODO: Validate Refer-To header field value.\n        return new _user_agents_refer_user_agent_client_js__WEBPACK_IMPORTED_MODULE_12__.ReferUserAgentClient(this, delegate, options);\n    }\n    /**\n     * Requests sent within a dialog, as any other requests, are atomic.  If\n     * a particular request is accepted by the UAS, all the state changes\n     * associated with it are performed.  If the request is rejected, none\n     * of the state changes are performed.\n     * https://tools.ietf.org/html/rfc3261#section-12.2.2\n     * @param message - Incoming request message within this dialog.\n     */\n    receiveRequest(message) {\n        this.logger.log(`INVITE dialog ${this.id} received ${message.method} request`);\n        // Response retransmissions cease when an ACK request for the\n        // response is received.  This is independent of whatever transport\n        // protocols are used to send the response.\n        // https://tools.ietf.org/html/rfc6026#section-8.1\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.ACK) {\n            // If ackWait is true, then this is the ACK to the initial INVITE,\n            // otherwise this is an ACK to an in dialog INVITE. In either case,\n            // guard to make sure the sequence number of the ACK matches the INVITE.\n            if (this.ackWait) {\n                if (this.initialTransaction instanceof _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_3__.InviteClientTransaction) {\n                    this.logger.warn(`INVITE dialog ${this.id} received unexpected ${message.method} request, dropping.`);\n                    return;\n                }\n                if (this.initialTransaction.request.cseq !== message.cseq) {\n                    this.logger.warn(`INVITE dialog ${this.id} received unexpected ${message.method} request, dropping.`);\n                    return;\n                }\n                // Update before the delegate has a chance to handle the\n                // message as delegate may callback into this dialog.\n                this.ackWait = false;\n            }\n            else {\n                if (!this.reinviteUserAgentServer) {\n                    this.logger.warn(`INVITE dialog ${this.id} received unexpected ${message.method} request, dropping.`);\n                    return;\n                }\n                if (this.reinviteUserAgentServer.transaction.request.cseq !== message.cseq) {\n                    this.logger.warn(`INVITE dialog ${this.id} received unexpected ${message.method} request, dropping.`);\n                    return;\n                }\n                this.reinviteUserAgentServer = undefined;\n            }\n            this.signalingStateTransition(message);\n            if (this.delegate && this.delegate.onAck) {\n                const promiseOrVoid = this.delegate.onAck({ message });\n                if (promiseOrVoid instanceof Promise) {\n                    this.ackProcessing = true; // make sure this is always reset to false\n                    promiseOrVoid.then(() => (this.ackProcessing = false)).catch(() => (this.ackProcessing = false));\n                }\n            }\n            return;\n        }\n        // Request within a dialog out of sequence guard.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        if (!this.sequenceGuard(message)) {\n            this.logger.log(`INVITE dialog ${this.id} rejected out of order ${message.method} request.`);\n            return;\n        }\n        // Request within a dialog common processing.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        super.receiveRequest(message);\n        // Handle various INVITE related cross-over, glare and race conditions\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.INVITE) {\n            // Hopefully this message is helpful...\n            const warning = () => {\n                const reason = this.ackWait ? \"waiting for initial ACK\" : \"processing initial ACK\";\n                this.logger.warn(`INVITE dialog ${this.id} received re-INVITE while ${reason}`);\n                let msg = \"RFC 5407 suggests the following to avoid this race condition... \";\n                msg += \" Note: Implementation issues are outside the scope of this document,\";\n                msg += \" but the following tip is provided for avoiding race conditions of\";\n                msg += \" this type.  The caller can delay sending re-INVITE F6 for some period\";\n                msg += \" of time (2 seconds, perhaps), after which the caller can reasonably\";\n                msg += \" assume that its ACK has been received.  Implementors can decouple the\";\n                msg += \" actions of the user (e.g., pressing the hold button) from the actions\";\n                msg += \" of the protocol (the sending of re-INVITE F6), so that the UA can\";\n                msg += \" behave like this.  In this case, it is the implementor's choice as to\";\n                msg += \" how long to wait.  In most cases, such an implementation may be\";\n                msg += \" useful to prevent the type of race condition shown in this section.\";\n                msg += \" This document expresses no preference about whether or not they\";\n                msg += \" should wait for an ACK to be delivered.  After considering the impact\";\n                msg += \" on user experience, implementors should decide whether or not to wait\";\n                msg += \" for a while, because the user experience depends on the\";\n                msg += \" implementation and has no direct bearing on protocol behavior.\";\n                this.logger.warn(msg);\n                return; // drop re-INVITE request message\n            };\n            // A UAS that receives a second INVITE before it sends the final\n            // response to a first INVITE with a lower CSeq sequence number on the\n            // same dialog MUST return a 500 (Server Internal Error) response to the\n            // second INVITE and MUST include a Retry-After header field with a\n            // randomly chosen value of between 0 and 10 seconds.\n            // https://tools.ietf.org/html/rfc3261#section-14.2\n            const retryAfter = Math.floor(Math.random() * 10) + 1;\n            const extraHeaders = [`Retry-After: ${retryAfter}`];\n            // There may be ONLY ONE offer/answer negotiation in progress for a\n            // single dialog at any point in time.  Section 4 explains how to ensure\n            // this.\n            // https://tools.ietf.org/html/rfc6337#section-2.2\n            if (this.ackProcessing) {\n                // UAS-IsI:  While an INVITE server transaction is incomplete or ACK\n                //           transaction associated with an offer/answer is incomplete,\n                //           a UA must reject another INVITE request with a 500\n                //           response.\n                // https://tools.ietf.org/html/rfc6337#section-4.3\n                this.core.replyStateless(message, { statusCode: 500, extraHeaders });\n                warning();\n                return;\n            }\n            // 3.1.4.  Callee Receives re-INVITE (Established State)  While in the\n            // Moratorium State (Case 1)\n            // https://tools.ietf.org/html/rfc5407#section-3.1.4\n            // 3.1.5.  Callee Receives re-INVITE (Established State) While in the\n            // Moratorium State (Case 2)\n            // https://tools.ietf.org/html/rfc5407#section-3.1.5\n            if (this.ackWait && this.signalingState !== _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable) {\n                // This scenario is basically the same as that of Section 3.1.4, but\n                // differs in sending an offer in the 200 and an answer in the ACK.  In\n                // contrast to the previous case, the offer in the 200 (F3) and the\n                // offer in the re-INVITE (F6) collide with each other.\n                //\n                // Bob sends a 491 to the re-INVITE (F6) since he is not able to\n                // properly handle a new request until he receives an answer.  (Note:\n                // 500 with a Retry-After header may be returned if the 491 response is\n                // understood to indicate request collision.  However, 491 is\n                // recommended here because 500 applies to so many cases that it is\n                // difficult to determine what the real problem was.)\n                // https://tools.ietf.org/html/rfc5407#section-3.1.5\n                // UAS-IsI:  While an INVITE server transaction is incomplete or ACK\n                //           transaction associated with an offer/answer is incomplete,\n                //           a UA must reject another INVITE request with a 500\n                //           response.\n                // https://tools.ietf.org/html/rfc6337#section-4.3\n                this.core.replyStateless(message, { statusCode: 500, extraHeaders });\n                warning();\n                return;\n            }\n            // A UAS that receives a second INVITE before it sends the final\n            // response to a first INVITE with a lower CSeq sequence number on the\n            // same dialog MUST return a 500 (Server Internal Error) response to the\n            // second INVITE and MUST include a Retry-After header field with a\n            // randomly chosen value of between 0 and 10 seconds.\n            // https://tools.ietf.org/html/rfc3261#section-14.2\n            if (this.reinviteUserAgentServer) {\n                this.core.replyStateless(message, { statusCode: 500, extraHeaders });\n                return;\n            }\n            // A UAS that receives an INVITE on a dialog while an INVITE it had sent\n            // on that dialog is in progress MUST return a 491 (Request Pending)\n            // response to the received INVITE.\n            // https://tools.ietf.org/html/rfc3261#section-14.2\n            if (this.reinviteUserAgentClient) {\n                this.core.replyStateless(message, { statusCode: 491 });\n                return;\n            }\n        }\n        // Requests within a dialog MAY contain Record-Route and Contact header\n        // fields.  However, these requests do not cause the dialog's route set\n        // to be modified, although they may modify the remote target URI.\n        // Specifically, requests that are not target refresh requests do not\n        // modify the dialog's remote target URI, and requests that are target\n        // refresh requests do.  For dialogs that have been established with an\n        // INVITE, the only target refresh request defined is re-INVITE (see\n        // Section 14).  Other extensions may define different target refresh\n        // requests for dialogs established in other ways.\n        //\n        //    Note that an ACK is NOT a target refresh request.\n        //\n        // Target refresh requests only update the dialog's remote target URI,\n        // and not the route set formed from the Record-Route.  Updating the\n        // latter would introduce severe backwards compatibility problems with\n        // RFC 2543-compliant systems.\n        // https://tools.ietf.org/html/rfc3261#section-15\n        if (message.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.INVITE) {\n            // FIXME: parser needs to be typed...\n            const contact = message.parseHeader(\"contact\");\n            if (!contact) {\n                // TODO: Review to make sure this will never happen\n                throw new Error(\"Contact undefined.\");\n            }\n            if (!(contact instanceof _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_13__.NameAddrHeader)) {\n                throw new Error(\"Contact not instance of NameAddrHeader.\");\n            }\n            this.dialogState.remoteTarget = contact.uri;\n        }\n        // Switch on method and then delegate.\n        switch (message.method) {\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.BYE:\n                // A UAS core receiving a BYE request for an existing dialog MUST follow\n                // the procedures of Section 12.2.2 to process the request.  Once done,\n                // the UAS SHOULD terminate the session (and therefore stop sending and\n                // listening for media).  The only case where it can elect not to are\n                // multicast sessions, where participation is possible even if the other\n                // participant in the dialog has terminated its involvement in the\n                // session.  Whether or not it ends its participation on the session,\n                // the UAS core MUST generate a 2xx response to the BYE, and MUST pass\n                // that to the server transaction for transmission.\n                //\n                // The UAS MUST still respond to any pending requests received for that\n                // dialog.  It is RECOMMENDED that a 487 (Request Terminated) response\n                // be generated to those pending requests.\n                // https://tools.ietf.org/html/rfc3261#section-15.1.2\n                {\n                    const uas = new _user_agents_bye_user_agent_server_js__WEBPACK_IMPORTED_MODULE_14__.ByeUserAgentServer(this, message);\n                    this.delegate && this.delegate.onBye ? this.delegate.onBye(uas) : uas.accept();\n                    this.dispose();\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.INFO:\n                // If a UA receives an INFO request associated with an Info Package that\n                // the UA has not indicated willingness to receive, the UA MUST send a\n                // 469 (Bad Info Package) response (see Section 11.6), which contains a\n                // Recv-Info header field with Info Packages for which the UA is willing\n                // to receive INFO requests.\n                {\n                    const uas = new _user_agents_info_user_agent_server_js__WEBPACK_IMPORTED_MODULE_15__.InfoUserAgentServer(this, message);\n                    this.delegate && this.delegate.onInfo\n                        ? this.delegate.onInfo(uas)\n                        : uas.reject({\n                            statusCode: 469,\n                            extraHeaders: [\"Recv-Info:\"]\n                        });\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.INVITE:\n                // If the new session description is not acceptable, the UAS can reject\n                // it by returning a 488 (Not Acceptable Here) response for the re-\n                // INVITE.  This response SHOULD include a Warning header field.\n                // https://tools.ietf.org/html/rfc3261#section-14.2\n                {\n                    const uas = new _user_agents_re_invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_16__.ReInviteUserAgentServer(this, message);\n                    this.signalingStateTransition(message);\n                    this.delegate && this.delegate.onInvite ? this.delegate.onInvite(uas) : uas.reject({ statusCode: 488 }); // TODO: Warning header field.\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.MESSAGE:\n                {\n                    const uas = new _user_agents_message_user_agent_server_js__WEBPACK_IMPORTED_MODULE_17__.MessageUserAgentServer(this.core, message);\n                    this.delegate && this.delegate.onMessage ? this.delegate.onMessage(uas) : uas.accept();\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.NOTIFY:\n                // https://tools.ietf.org/html/rfc3515#section-2.4.4\n                {\n                    const uas = new _user_agents_notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_18__.NotifyUserAgentServer(this, message);\n                    this.delegate && this.delegate.onNotify ? this.delegate.onNotify(uas) : uas.accept();\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.PRACK:\n                // https://tools.ietf.org/html/rfc3262#section-4\n                {\n                    const uas = new _user_agents_prack_user_agent_server_js__WEBPACK_IMPORTED_MODULE_19__.PrackUserAgentServer(this, message);\n                    this.delegate && this.delegate.onPrack ? this.delegate.onPrack(uas) : uas.accept();\n                }\n                break;\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_4__.C.REFER:\n                // https://tools.ietf.org/html/rfc3515#section-2.4.2\n                {\n                    const uas = new _user_agents_refer_user_agent_server_js__WEBPACK_IMPORTED_MODULE_20__.ReferUserAgentServer(this, message);\n                    this.delegate && this.delegate.onRefer ? this.delegate.onRefer(uas) : uas.reject();\n                }\n                break;\n            default:\n                {\n                    this.logger.log(`INVITE dialog ${this.id} received unimplemented ${message.method} request`);\n                    this.core.replyStateless(message, { statusCode: 501 });\n                }\n                break;\n        }\n    }\n    /**\n     * Guard against out of order reliable provisional responses and retransmissions.\n     * Returns false if the response should be discarded, otherwise true.\n     * @param message - Incoming response message within this dialog.\n     */\n    reliableSequenceGuard(message) {\n        const statusCode = message.statusCode;\n        if (!statusCode) {\n            throw new Error(\"Status code undefined\");\n        }\n        if (statusCode > 100 && statusCode < 200) {\n            // If a provisional response is received for an initial request, and\n            // that response contains a Require header field containing the option\n            // tag 100rel, the response is to be sent reliably.  If the response is\n            // a 100 (Trying) (as opposed to 101 to 199), this option tag MUST be\n            // ignored, and the procedures below MUST NOT be used.\n            // https://tools.ietf.org/html/rfc3262#section-4\n            const requireHeader = message.getHeader(\"require\");\n            const rseqHeader = message.getHeader(\"rseq\");\n            const rseq = requireHeader && requireHeader.includes(\"100rel\") && rseqHeader ? Number(rseqHeader) : undefined;\n            if (rseq) {\n                // Handling of subsequent reliable provisional responses for the same\n                // initial request follows the same rules as above, with the following\n                // difference: reliable provisional responses are guaranteed to be in\n                // order.  As a result, if the UAC receives another reliable provisional\n                // response to the same request, and its RSeq value is not one higher\n                // than the value of the sequence number, that response MUST NOT be\n                // acknowledged with a PRACK, and MUST NOT be processed further by the\n                // UAC.  An implementation MAY discard the response, or MAY cache the\n                // response in the hopes of receiving the missing responses.\n                // https://tools.ietf.org/html/rfc3262#section-4\n                if (this.rseq && this.rseq + 1 !== rseq) {\n                    return false;\n                }\n                // Once a reliable provisional response is received, retransmissions of\n                // that response MUST be discarded.  A response is a retransmission when\n                // its dialog ID, CSeq, and RSeq match the original response.  The UAC\n                // MUST maintain a sequence number that indicates the most recently\n                // received in-order reliable provisional response for the initial\n                // request.  This sequence number MUST be maintained until a final\n                // response is received for the initial request.  Its value MUST be\n                // initialized to the RSeq header field in the first reliable\n                // provisional response received for the initial request.\n                // https://tools.ietf.org/html/rfc3262#section-4\n                this.rseq = this.rseq ? this.rseq + 1 : rseq;\n            }\n        }\n        return true;\n    }\n    /**\n     * If not in a stable signaling state, rollback to prior stable signaling state.\n     */\n    signalingStateRollback() {\n        if (this._signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveLocalOffer ||\n            this.signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveRemoteOffer) {\n            if (this._rollbackOffer && this._rollbackAnswer) {\n                this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable;\n                this._offer = this._rollbackOffer;\n                this._answer = this._rollbackAnswer;\n            }\n        }\n    }\n    /**\n     * Update the signaling state of the dialog.\n     * @param message - The message to base the update off of.\n     */\n    signalingStateTransition(message) {\n        const body = (0,_messages_body_js__WEBPACK_IMPORTED_MODULE_21__.getBody)(message);\n        // No body, no session. No, woman, no cry.\n        if (!body || body.contentDisposition !== \"session\") {\n            return;\n        }\n        // We've got an existing offer and answer which we may wish to rollback to\n        if (this._signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable) {\n            this._rollbackOffer = this._offer;\n            this._rollbackAnswer = this._answer;\n        }\n        // We're in UAS role, receiving incoming request with session description\n        if (message instanceof _messages_incoming_request_message_js__WEBPACK_IMPORTED_MODULE_22__.IncomingRequestMessage) {\n            switch (this._signalingState) {\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Initial:\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable:\n                    this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveRemoteOffer;\n                    this._offer = body;\n                    this._answer = undefined;\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveLocalOffer:\n                    this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable;\n                    this._answer = body;\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveRemoteOffer:\n                    // You cannot make a new offer while one is in progress.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                    // FIXME: What to do here?\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Closed:\n                    break;\n                default:\n                    throw new Error(\"Unexpected signaling state.\");\n            }\n        }\n        // We're in UAC role, receiving incoming response with session description\n        if (message instanceof _messages_incoming_response_message_js__WEBPACK_IMPORTED_MODULE_23__.IncomingResponseMessage) {\n            switch (this._signalingState) {\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Initial:\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable:\n                    this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveRemoteOffer;\n                    this._offer = body;\n                    this._answer = undefined;\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveLocalOffer:\n                    this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable;\n                    this._answer = body;\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveRemoteOffer:\n                    // You cannot make a new offer while one is in progress.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                    // FIXME: What to do here?\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Closed:\n                    break;\n                default:\n                    throw new Error(\"Unexpected signaling state.\");\n            }\n        }\n        // We're in UAC role, sending outgoing request with session description\n        if (message instanceof _messages_outgoing_request_message_js__WEBPACK_IMPORTED_MODULE_24__.OutgoingRequestMessage) {\n            switch (this._signalingState) {\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Initial:\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable:\n                    this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveLocalOffer;\n                    this._offer = body;\n                    this._answer = undefined;\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveLocalOffer:\n                    // You cannot make a new offer while one is in progress.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                    // FIXME: What to do here?\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveRemoteOffer:\n                    this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable;\n                    this._answer = body;\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Closed:\n                    break;\n                default:\n                    throw new Error(\"Unexpected signaling state.\");\n            }\n        }\n        // We're in UAS role, sending outgoing response with session description\n        if ((0,_messages_body_js__WEBPACK_IMPORTED_MODULE_21__.isBody)(message)) {\n            switch (this._signalingState) {\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Initial:\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable:\n                    this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveLocalOffer;\n                    this._offer = body;\n                    this._answer = undefined;\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveLocalOffer:\n                    // You cannot make a new offer while one is in progress.\n                    // https://tools.ietf.org/html/rfc3261#section-13.2.1\n                    // FIXME: What to do here?\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.HaveRemoteOffer:\n                    this._signalingState = _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Stable;\n                    this._answer = body;\n                    break;\n                case _session_session_js__WEBPACK_IMPORTED_MODULE_1__.SignalingState.Closed:\n                    break;\n                default:\n                    throw new Error(\"Unexpected signaling state.\");\n            }\n        }\n    }\n    start2xxRetransmissionTimer() {\n        if (this.initialTransaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            const transaction = this.initialTransaction;\n            // Once the response has been constructed, it is passed to the INVITE\n            // server transaction.  In order to ensure reliable end-to-end\n            // transport of the response, it is necessary to periodically pass\n            // the response directly to the transport until the ACK arrives.  The\n            // 2xx response is passed to the transport with an interval that\n            // starts at T1 seconds and doubles for each retransmission until it\n            // reaches T2 seconds (T1 and T2 are defined in Section 17).\n            // Response retransmissions cease when an ACK request for the\n            // response is received.  This is independent of whatever transport\n            // protocols are used to send the response.\n            // https://tools.ietf.org/html/rfc6026#section-8.1\n            let timeout = _timers_js__WEBPACK_IMPORTED_MODULE_25__.Timers.T1;\n            const retransmission = () => {\n                if (!this.ackWait) {\n                    this.invite2xxTimer = undefined;\n                    return;\n                }\n                this.logger.log(\"No ACK for 2xx response received, attempting retransmission\");\n                transaction.retransmitAcceptedResponse();\n                timeout = Math.min(timeout * 2, _timers_js__WEBPACK_IMPORTED_MODULE_25__.Timers.T2);\n                this.invite2xxTimer = setTimeout(retransmission, timeout);\n            };\n            this.invite2xxTimer = setTimeout(retransmission, timeout);\n            // If the server retransmits the 2xx response for 64*T1 seconds without\n            // receiving an ACK, the dialog is confirmed, but the session SHOULD be\n            // terminated.  This is accomplished with a BYE, as described in Section 15.\n            // https://tools.ietf.org/html/rfc3261#section-13.3.1.4\n            const stateChanged = () => {\n                if (transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_5__.TransactionState.Terminated) {\n                    transaction.removeStateChangeListener(stateChanged);\n                    if (this.invite2xxTimer) {\n                        clearTimeout(this.invite2xxTimer);\n                        this.invite2xxTimer = undefined;\n                    }\n                    if (this.ackWait) {\n                        if (this.delegate && this.delegate.onAckTimeout) {\n                            this.delegate.onAckTimeout();\n                        }\n                        else {\n                            this.bye();\n                        }\n                    }\n                }\n            };\n            transaction.addStateChangeListener(stateChanged);\n        }\n    }\n    // FIXME: Refactor\n    startReInvite2xxRetransmissionTimer() {\n        if (this.reinviteUserAgentServer && this.reinviteUserAgentServer.transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            const transaction = this.reinviteUserAgentServer.transaction;\n            // Once the response has been constructed, it is passed to the INVITE\n            // server transaction.  In order to ensure reliable end-to-end\n            // transport of the response, it is necessary to periodically pass\n            // the response directly to the transport until the ACK arrives.  The\n            // 2xx response is passed to the transport with an interval that\n            // starts at T1 seconds and doubles for each retransmission until it\n            // reaches T2 seconds (T1 and T2 are defined in Section 17).\n            // Response retransmissions cease when an ACK request for the\n            // response is received.  This is independent of whatever transport\n            // protocols are used to send the response.\n            // https://tools.ietf.org/html/rfc6026#section-8.1\n            let timeout = _timers_js__WEBPACK_IMPORTED_MODULE_25__.Timers.T1;\n            const retransmission = () => {\n                if (!this.reinviteUserAgentServer) {\n                    this.invite2xxTimer = undefined;\n                    return;\n                }\n                this.logger.log(\"No ACK for 2xx response received, attempting retransmission\");\n                transaction.retransmitAcceptedResponse();\n                timeout = Math.min(timeout * 2, _timers_js__WEBPACK_IMPORTED_MODULE_25__.Timers.T2);\n                this.invite2xxTimer = setTimeout(retransmission, timeout);\n            };\n            this.invite2xxTimer = setTimeout(retransmission, timeout);\n            // If the server retransmits the 2xx response for 64*T1 seconds without\n            // receiving an ACK, the dialog is confirmed, but the session SHOULD be\n            // terminated.  This is accomplished with a BYE, as described in Section 15.\n            // https://tools.ietf.org/html/rfc3261#section-13.3.1.4\n            const stateChanged = () => {\n                if (transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_5__.TransactionState.Terminated) {\n                    transaction.removeStateChangeListener(stateChanged);\n                    if (this.invite2xxTimer) {\n                        clearTimeout(this.invite2xxTimer);\n                        this.invite2xxTimer = undefined;\n                    }\n                    if (this.reinviteUserAgentServer) {\n                        // FIXME: TODO: What to do here\n                    }\n                }\n            };\n            transaction.addStateChangeListener(stateChanged);\n        }\n    }\n}\n\n\n/***/ }),\n/* 72 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"InviteServerTransaction\": () => (/* binding */ InviteServerTransaction)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(30);\n/* harmony import */ var _timers_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(37);\n/* harmony import */ var _server_transaction_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(73);\n/* harmony import */ var _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(64);\n\n\n\n\n/**\n * INVITE Server Transaction.\n * @remarks\n * https://tools.ietf.org/html/rfc3261#section-17.2.1\n * @public\n */\nclass InviteServerTransaction extends _server_transaction_js__WEBPACK_IMPORTED_MODULE_0__.ServerTransaction {\n    /**\n     * Constructor.\n     * Upon construction, a \"100 Trying\" reply will be immediately sent.\n     * After construction the transaction will be in the \"proceeding\" state and the transaction\n     * `id` will equal the branch parameter set in the Via header of the incoming request.\n     * https://tools.ietf.org/html/rfc3261#section-17.2.1\n     * @param request - Incoming INVITE request from the transport.\n     * @param transport - The transport.\n     * @param user - The transaction user.\n     */\n    constructor(request, transport, user) {\n        super(request, transport, user, _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding, \"sip.transaction.ist\");\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        this.stopProgressExtensionTimer();\n        if (this.H) {\n            clearTimeout(this.H);\n            this.H = undefined;\n        }\n        if (this.I) {\n            clearTimeout(this.I);\n            this.I = undefined;\n        }\n        if (this.L) {\n            clearTimeout(this.L);\n            this.L = undefined;\n        }\n        super.dispose();\n    }\n    /** Transaction kind. Deprecated. */\n    get kind() {\n        return \"ist\";\n    }\n    /**\n     * Receive requests from transport matching this transaction.\n     * @param request - Request matching this transaction.\n     */\n    receiveRequest(request) {\n        switch (this.state) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                // If a request retransmission is received while in the \"Proceeding\" state, the most\n                // recent provisional response that was received from the TU MUST be passed to the\n                // transport layer for retransmission.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.1\n                if (request.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.INVITE) {\n                    if (this.lastProvisionalResponse) {\n                        this.send(this.lastProvisionalResponse).catch((error) => {\n                            this.logTransportError(error, \"Failed to send retransmission of provisional response.\");\n                        });\n                    }\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted:\n                // While in the \"Accepted\" state, any retransmissions of the INVITE\n                // received will match this transaction state machine and will be\n                // absorbed by the machine without changing its state. These\n                // retransmissions are not passed onto the TU.\n                // https://tools.ietf.org/html/rfc6026#section-7.1\n                if (request.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.INVITE) {\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                // Furthermore, while in the \"Completed\" state, if a request retransmission is\n                // received, the server SHOULD pass the response to the transport for retransmission.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.1\n                if (request.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.INVITE) {\n                    if (!this.lastFinalResponse) {\n                        throw new Error(\"Last final response undefined.\");\n                    }\n                    this.send(this.lastFinalResponse).catch((error) => {\n                        this.logTransportError(error, \"Failed to send retransmission of final response.\");\n                    });\n                    return;\n                }\n                // If an ACK is received while the server transaction is in the \"Completed\" state,\n                // the server transaction MUST transition to the \"Confirmed\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.1\n                if (request.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.ACK) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Confirmed);\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Confirmed:\n                // The purpose of the \"Confirmed\" state is to absorb any additional ACK messages that arrive,\n                // triggered from retransmissions of the final response.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.1\n                if (request.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.INVITE || request.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.ACK) {\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                // For good measure absorb any additional messages that arrive (should not happen).\n                if (request.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.INVITE || request.method === _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.ACK) {\n                    return;\n                }\n                break;\n            default:\n                throw new Error(`Invalid state ${this.state}`);\n        }\n        const message = `INVITE server transaction received unexpected ${request.method} request while in state ${this.state}.`;\n        this.logger.warn(message);\n        return;\n    }\n    /**\n     * Receive responses from TU for this transaction.\n     * @param statusCode - Status code of response.\n     * @param response - Response.\n     */\n    receiveResponse(statusCode, response) {\n        if (statusCode < 100 || statusCode > 699) {\n            throw new Error(`Invalid status code ${statusCode}`);\n        }\n        switch (this.state) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                // The TU passes any number of provisional responses to the server\n                // transaction. So long as the server transaction is in the\n                // \"Proceeding\" state, each of these MUST be passed to the transport\n                // layer for transmission. They are not sent reliably by the\n                // transaction layer (they are not retransmitted by it) and do not cause\n                // a change in the state of the server transaction.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.1\n                if (statusCode >= 100 && statusCode <= 199) {\n                    this.lastProvisionalResponse = response;\n                    // Start the progress extension timer only for a non-100 provisional response.\n                    if (statusCode > 100) {\n                        this.startProgressExtensionTimer(); // FIXME: remove\n                    }\n                    this.send(response).catch((error) => {\n                        this.logTransportError(error, \"Failed to send 1xx response.\");\n                    });\n                    return;\n                }\n                // If, while in the \"Proceeding\" state, the TU passes a 2xx response\n                // to the server transaction, the server transaction MUST pass this\n                // response to the transport layer for transmission. It is not\n                // retransmitted by the server transaction; retransmissions of 2xx\n                // responses are handled by the TU. The server transaction MUST then\n                // transition to the \"Accepted\" state.\n                // https://tools.ietf.org/html/rfc6026#section-8.5\n                if (statusCode >= 200 && statusCode <= 299) {\n                    this.lastFinalResponse = response;\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted);\n                    this.send(response).catch((error) => {\n                        this.logTransportError(error, \"Failed to send 2xx response.\");\n                    });\n                    return;\n                }\n                // While in the \"Proceeding\" state, if the TU passes a response with\n                // status code from 300 to 699 to the server transaction, the response\n                // MUST be passed to the transport layer for transmission, and the state\n                // machine MUST enter the \"Completed\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.1\n                if (statusCode >= 300 && statusCode <= 699) {\n                    this.lastFinalResponse = response;\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed);\n                    this.send(response).catch((error) => {\n                        this.logTransportError(error, \"Failed to send non-2xx final response.\");\n                    });\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted:\n                // While in the \"Accepted\" state, if the TU passes a 2xx response,\n                // the server transaction MUST pass the response to the transport layer for transmission.\n                // https://tools.ietf.org/html/rfc6026#section-8.7\n                if (statusCode >= 200 && statusCode <= 299) {\n                    this.send(response).catch((error) => {\n                        this.logTransportError(error, \"Failed to send 2xx response.\");\n                    });\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Confirmed:\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                break;\n            default:\n                throw new Error(`Invalid state ${this.state}`);\n        }\n        const message = `INVITE server transaction received unexpected ${statusCode} response from TU while in state ${this.state}.`;\n        this.logger.error(message);\n        throw new Error(message);\n    }\n    /**\n     * Retransmit the last 2xx response. This is a noop if not in the \"accepted\" state.\n     */\n    retransmitAcceptedResponse() {\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted && this.lastFinalResponse) {\n            this.send(this.lastFinalResponse).catch((error) => {\n                this.logTransportError(error, \"Failed to send 2xx response.\");\n            });\n        }\n    }\n    /**\n     * First, the procedures in [4] are followed, which attempt to deliver the response to a backup.\n     * If those should all fail, based on the definition of failure in [4], the server transaction SHOULD\n     * inform the TU that a failure has occurred, and MUST remain in the current state.\n     * https://tools.ietf.org/html/rfc6026#section-8.8\n     */\n    onTransportError(error) {\n        if (this.user.onTransportError) {\n            this.user.onTransportError(error);\n        }\n    }\n    /** For logging. */\n    typeToString() {\n        return \"INVITE server transaction\";\n    }\n    /**\n     * Execute a state transition.\n     * @param newState - New state.\n     */\n    stateTransition(newState) {\n        // Assert valid state transitions.\n        const invalidStateTransition = () => {\n            throw new Error(`Invalid state transition from ${this.state} to ${newState}`);\n        };\n        switch (newState) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                invalidStateTransition();\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted:\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding) {\n                    invalidStateTransition();\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Confirmed:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n                    invalidStateTransition();\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted &&\n                    this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed &&\n                    this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Confirmed) {\n                    invalidStateTransition();\n                }\n                break;\n            default:\n                invalidStateTransition();\n        }\n        // On any state transition, stop resending provisional responses\n        this.stopProgressExtensionTimer();\n        // The purpose of the \"Accepted\" state is to absorb retransmissions of an accepted INVITE request.\n        // Any such retransmissions are absorbed entirely within the server transaction.\n        // They are not passed up to the TU since any downstream UAS cores that accepted the request have\n        // taken responsibility for reliability and will already retransmit their 2xx responses if necessary.\n        // https://tools.ietf.org/html/rfc6026#section-8.7\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted) {\n            this.L = setTimeout(() => this.timerL(), _timers_js__WEBPACK_IMPORTED_MODULE_3__.Timers.TIMER_L);\n        }\n        // When the \"Completed\" state is entered, timer H MUST be set to fire in 64*T1 seconds for all transports.\n        // Timer H determines when the server transaction abandons retransmitting the response.\n        // If an ACK is received while the server transaction is in the \"Completed\" state,\n        // the server transaction MUST transition to the \"Confirmed\" state.\n        // https://tools.ietf.org/html/rfc3261#section-17.2.1\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n            // FIXME: Missing timer G for unreliable transports.\n            this.H = setTimeout(() => this.timerH(), _timers_js__WEBPACK_IMPORTED_MODULE_3__.Timers.TIMER_H);\n        }\n        // The purpose of the \"Confirmed\" state is to absorb any additional ACK messages that arrive,\n        // triggered from retransmissions of the final response. When this state is entered, timer I\n        // is set to fire in T4 seconds for unreliable transports, and zero seconds for reliable\n        // transports. Once timer I fires, the server MUST transition to the \"Terminated\" state.\n        // https://tools.ietf.org/html/rfc3261#section-17.2.1\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Confirmed) {\n            // FIXME: This timer is not getting set correctly for unreliable transports.\n            this.I = setTimeout(() => this.timerI(), _timers_js__WEBPACK_IMPORTED_MODULE_3__.Timers.TIMER_I);\n        }\n        // Once the transaction is in the \"Terminated\" state, it MUST be destroyed immediately.\n        // https://tools.ietf.org/html/rfc6026#section-8.7\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated) {\n            this.dispose();\n        }\n        // Update state.\n        this.setState(newState);\n    }\n    /**\n     * FIXME: UAS Provisional Retransmission Timer. See RFC 3261 Section 13.3.1.1\n     * This is in the wrong place. This is not a transaction level thing. It's a UAS level thing.\n     */\n    startProgressExtensionTimer() {\n        // Start the progress extension timer only for the first non-100 provisional response.\n        if (this.progressExtensionTimer === undefined) {\n            this.progressExtensionTimer = setInterval(() => {\n                this.logger.debug(`Progress extension timer expired for INVITE server transaction ${this.id}.`);\n                if (!this.lastProvisionalResponse) {\n                    throw new Error(\"Last provisional response undefined.\");\n                }\n                this.send(this.lastProvisionalResponse).catch((error) => {\n                    this.logTransportError(error, \"Failed to send retransmission of provisional response.\");\n                });\n            }, _timers_js__WEBPACK_IMPORTED_MODULE_3__.Timers.PROVISIONAL_RESPONSE_INTERVAL);\n        }\n    }\n    /**\n     * FIXME: UAS Provisional Retransmission Timer id. See RFC 3261 Section 13.3.1.1\n     * This is in the wrong place. This is not a transaction level thing. It's a UAS level thing.\n     */\n    stopProgressExtensionTimer() {\n        if (this.progressExtensionTimer !== undefined) {\n            clearInterval(this.progressExtensionTimer);\n            this.progressExtensionTimer = undefined;\n        }\n    }\n    /**\n     * While in the \"Proceeding\" state, if the TU passes a response with status code\n     * from 300 to 699 to the server transaction, the response MUST be passed to the\n     * transport layer for transmission, and the state machine MUST enter the \"Completed\" state.\n     * For unreliable transports, timer G is set to fire in T1 seconds, and is not set to fire for\n     * reliable transports. If timer G fires, the response is passed to the transport layer once\n     * more for retransmission, and timer G is set to fire in MIN(2*T1, T2) seconds. From then on,\n     * when timer G fires, the response is passed to the transport again for transmission, and\n     * timer G is reset with a value that doubles, unless that value exceeds T2, in which case\n     * it is reset with the value of T2.\n     * https://tools.ietf.org/html/rfc3261#section-17.2.1\n     */\n    timerG() {\n        // TODO\n    }\n    /**\n     * If timer H fires while in the \"Completed\" state, it implies that the ACK was never received.\n     * In this case, the server transaction MUST transition to the \"Terminated\" state, and MUST\n     * indicate to the TU that a transaction failure has occurred.\n     * https://tools.ietf.org/html/rfc3261#section-17.2.1\n     */\n    timerH() {\n        this.logger.debug(`Timer H expired for INVITE server transaction ${this.id}.`);\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n            this.logger.warn(\"ACK to negative final response was never received, terminating transaction.\");\n            this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n        }\n    }\n    /**\n     * Once timer I fires, the server MUST transition to the \"Terminated\" state.\n     * https://tools.ietf.org/html/rfc3261#section-17.2.1\n     */\n    timerI() {\n        this.logger.debug(`Timer I expired for INVITE server transaction ${this.id}.`);\n        this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n    }\n    /**\n     * When Timer L fires and the state machine is in the \"Accepted\" state, the machine MUST\n     * transition to the \"Terminated\" state. Once the transaction is in the \"Terminated\" state,\n     * it MUST be destroyed immediately. Timer L reflects the amount of time the server\n     * transaction could receive 2xx responses for retransmission from the\n     * TU while it is waiting to receive an ACK.\n     * https://tools.ietf.org/html/rfc6026#section-7.1\n     * https://tools.ietf.org/html/rfc6026#section-8.7\n     */\n    timerL() {\n        this.logger.debug(`Timer L expired for INVITE server transaction ${this.id}.`);\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Accepted) {\n            this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n        }\n    }\n}\n\n\n/***/ }),\n/* 73 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ServerTransaction\": () => (/* binding */ ServerTransaction)\n/* harmony export */ });\n/* harmony import */ var _transaction_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(67);\n\n/**\n * Server Transaction.\n * @remarks\n * The server transaction is responsible for the delivery of requests to\n * the TU and the reliable transmission of responses.  It accomplishes\n * this through a state machine.  Server transactions are created by the\n * core when a request is received, and transaction handling is desired\n * for that request (this is not always the case).\n * https://tools.ietf.org/html/rfc3261#section-17.2\n * @public\n */\nclass ServerTransaction extends _transaction_js__WEBPACK_IMPORTED_MODULE_0__.Transaction {\n    constructor(_request, transport, user, state, loggerCategory) {\n        super(transport, user, _request.viaBranch, state, loggerCategory);\n        this._request = _request;\n        this.user = user;\n    }\n    /** The incoming request the transaction handling. */\n    get request() {\n        return this._request;\n    }\n}\n\n\n/***/ }),\n/* 74 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ByeUserAgentClient\": () => (/* binding */ ByeUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n/**\n * BYE UAC.\n * @public\n */\nclass ByeUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(dialog, delegate, options) {\n        const message = dialog.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.BYE, options);\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.NonInviteClientTransaction, dialog.userAgentCore, message, delegate);\n        dialog.dispose();\n    }\n}\n\n\n/***/ }),\n/* 75 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"InfoUserAgentClient\": () => (/* binding */ InfoUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n/**\n * INFO UAC.\n * @public\n */\nclass InfoUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(dialog, delegate, options) {\n        const message = dialog.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.INFO, options);\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.NonInviteClientTransaction, dialog.userAgentCore, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 76 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ReInviteUserAgentClient\": () => (/* binding */ ReInviteUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n/* harmony import */ var _transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(69);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n/**\n * Re-INVITE UAC.\n * @remarks\n * 14 Modifying an Existing Session\n * https://tools.ietf.org/html/rfc3261#section-14\n * 14.1 UAC Behavior\n * https://tools.ietf.org/html/rfc3261#section-14.1\n * @public\n */\nclass ReInviteUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(dialog, delegate, options) {\n        const message = dialog.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.INVITE, options);\n        super(_transactions_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteClientTransaction, dialog.userAgentCore, message, delegate);\n        this.delegate = delegate;\n        dialog.signalingStateTransition(message);\n        // FIXME: TODO: next line obviously needs to be improved...\n        dialog.reinviteUserAgentClient = this; // let the dialog know re-invite request sent\n        this.dialog = dialog;\n    }\n    receiveResponse(message) {\n        if (!this.authenticationGuard(message, this.dialog)) {\n            return;\n        }\n        const statusCode = message.statusCode ? message.statusCode.toString() : \"\";\n        if (!statusCode) {\n            throw new Error(\"Response status code undefined.\");\n        }\n        switch (true) {\n            case /^100$/.test(statusCode):\n                if (this.delegate && this.delegate.onTrying) {\n                    this.delegate.onTrying({ message });\n                }\n                break;\n            case /^1[0-9]{2}$/.test(statusCode):\n                if (this.delegate && this.delegate.onProgress) {\n                    this.delegate.onProgress({\n                        message,\n                        session: this.dialog,\n                        // eslint-disable-next-line @typescript-eslint/no-unused-vars\n                        prack: (options) => {\n                            throw new Error(\"Unimplemented.\");\n                        }\n                    });\n                }\n                break;\n            case /^2[0-9]{2}$/.test(statusCode):\n                // Update dialog signaling state with offer/answer in body\n                this.dialog.signalingStateTransition(message);\n                if (this.delegate && this.delegate.onAccept) {\n                    this.delegate.onAccept({\n                        message,\n                        session: this.dialog,\n                        ack: (options) => {\n                            const outgoingAckRequest = this.dialog.ack(options);\n                            return outgoingAckRequest;\n                        }\n                    });\n                }\n                break;\n            case /^3[0-9]{2}$/.test(statusCode):\n                this.dialog.signalingStateRollback();\n                this.dialog.reinviteUserAgentClient = undefined; // ACK was handled by transaction\n                if (this.delegate && this.delegate.onRedirect) {\n                    this.delegate.onRedirect({ message });\n                }\n                break;\n            case /^[4-6][0-9]{2}$/.test(statusCode):\n                this.dialog.signalingStateRollback();\n                this.dialog.reinviteUserAgentClient = undefined; // ACK was handled by transaction\n                if (this.delegate && this.delegate.onReject) {\n                    this.delegate.onReject({ message });\n                }\n                else {\n                    // If a UA receives a non-2xx final response to a re-INVITE, the session\n                    // parameters MUST remain unchanged, as if no re-INVITE had been issued.\n                    // Note that, as stated in Section 12.2.1.2, if the non-2xx final\n                    // response is a 481 (Call/Transaction Does Not Exist), or a 408\n                    // (Request Timeout), or no response at all is received for the re-\n                    // INVITE (that is, a timeout is returned by the INVITE client\n                    // transaction), the UAC will terminate the dialog.\n                    //\n                    // If a UAC receives a 491 response to a re-INVITE, it SHOULD start a\n                    // timer with a value T chosen as follows:\n                    //\n                    //    1. If the UAC is the owner of the Call-ID of the dialog ID\n                    //       (meaning it generated the value), T has a randomly chosen value\n                    //       between 2.1 and 4 seconds in units of 10 ms.\n                    //\n                    //    2. If the UAC is not the owner of the Call-ID of the dialog ID, T\n                    //       has a randomly chosen value of between 0 and 2 seconds in units\n                    //       of 10 ms.\n                    //\n                    // When the timer fires, the UAC SHOULD attempt the re-INVITE once more,\n                    // if it still desires for that session modification to take place.  For\n                    // example, if the call was already hung up with a BYE, the re-INVITE\n                    // would not take place.\n                    // https://tools.ietf.org/html/rfc3261#section-14.1\n                    // FIXME: TODO: The above.\n                }\n                break;\n            default:\n                throw new Error(`Invalid status code ${statusCode}`);\n        }\n    }\n}\n\n\n/***/ }),\n/* 77 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"MessageUserAgentClient\": () => (/* binding */ MessageUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n/**\n * MESSAGE UAC.\n * @public\n */\nclass MessageUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(core, message, delegate) {\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteClientTransaction, core, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 78 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"NotifyUserAgentClient\": () => (/* binding */ NotifyUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n/**\n * NOTIFY UAS.\n * @public\n */\nclass NotifyUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(dialog, delegate, options) {\n        const message = dialog.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.NOTIFY, options);\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.NonInviteClientTransaction, dialog.userAgentCore, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 79 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"PrackUserAgentClient\": () => (/* binding */ PrackUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n/**\n * PRACK UAC.\n * @public\n */\nclass PrackUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(dialog, delegate, options) {\n        const message = dialog.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.PRACK, options);\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.NonInviteClientTransaction, dialog.userAgentCore, message, delegate);\n        dialog.signalingStateTransition(message);\n    }\n}\n\n\n/***/ }),\n/* 80 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ReferUserAgentClient\": () => (/* binding */ ReferUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n/**\n * REFER UAC.\n * @public\n */\nclass ReferUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(dialog, delegate, options) {\n        const message = dialog.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.REFER, options);\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.NonInviteClientTransaction, dialog.userAgentCore, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 81 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ByeUserAgentServer\": () => (/* binding */ ByeUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n/**\n * BYE UAS.\n * @public\n */\nclass ByeUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(dialog, message, delegate) {\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, dialog.userAgentCore, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 82 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"UserAgentServer\": () => (/* binding */ UserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(36);\n/* harmony import */ var _messages_outgoing_response_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(84);\n/* harmony import */ var _messages_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(21);\n/* harmony import */ var _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(72);\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(83);\n/* harmony import */ var _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(64);\n\n\n\n\n\n\n/**\n * User Agent Server (UAS).\n * @remarks\n * A user agent server is a logical entity\n * that generates a response to a SIP request.  The response\n * accepts, rejects, or redirects the request.  This role lasts\n * only for the duration of that transaction.  In other words, if\n * a piece of software responds to a request, it acts as a UAS for\n * the duration of that transaction.  If it generates a request\n * later, it assumes the role of a user agent client for the\n * processing of that transaction.\n * https://tools.ietf.org/html/rfc3261#section-6\n * @public\n */\nclass UserAgentServer {\n    constructor(transactionConstructor, core, message, delegate) {\n        this.transactionConstructor = transactionConstructor;\n        this.core = core;\n        this.message = message;\n        this.delegate = delegate;\n        this.logger = this.loggerFactory.getLogger(\"sip.user-agent-server\");\n        this.toTag = message.toTag ? message.toTag : (0,_messages_utils_js__WEBPACK_IMPORTED_MODULE_0__.newTag)();\n        this.init();\n    }\n    dispose() {\n        this.transaction.dispose();\n    }\n    get loggerFactory() {\n        return this.core.loggerFactory;\n    }\n    /** The transaction associated with this request. */\n    get transaction() {\n        if (!this._transaction) {\n            throw new Error(\"Transaction undefined.\");\n        }\n        return this._transaction;\n    }\n    accept(options = { statusCode: 200 }) {\n        if (!this.acceptable) {\n            throw new _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_1__.TransactionStateError(`${this.message.method} not acceptable in state ${this.transaction.state}.`);\n        }\n        const statusCode = options.statusCode;\n        if (statusCode < 200 || statusCode > 299) {\n            throw new TypeError(`Invalid statusCode: ${statusCode}`);\n        }\n        const response = this.reply(options);\n        return response;\n    }\n    progress(options = { statusCode: 180 }) {\n        if (!this.progressable) {\n            throw new _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_1__.TransactionStateError(`${this.message.method} not progressable in state ${this.transaction.state}.`);\n        }\n        const statusCode = options.statusCode;\n        if (statusCode < 101 || statusCode > 199) {\n            throw new TypeError(`Invalid statusCode: ${statusCode}`);\n        }\n        const response = this.reply(options);\n        return response;\n    }\n    redirect(contacts, options = { statusCode: 302 }) {\n        if (!this.redirectable) {\n            throw new _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_1__.TransactionStateError(`${this.message.method} not redirectable in state ${this.transaction.state}.`);\n        }\n        const statusCode = options.statusCode;\n        if (statusCode < 300 || statusCode > 399) {\n            throw new TypeError(`Invalid statusCode: ${statusCode}`);\n        }\n        const contactHeaders = new Array();\n        contacts.forEach((contact) => contactHeaders.push(`Contact: ${contact.toString()}`));\n        options.extraHeaders = (options.extraHeaders || []).concat(contactHeaders);\n        const response = this.reply(options);\n        return response;\n    }\n    reject(options = { statusCode: 480 }) {\n        if (!this.rejectable) {\n            throw new _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_1__.TransactionStateError(`${this.message.method} not rejectable in state ${this.transaction.state}.`);\n        }\n        const statusCode = options.statusCode;\n        if (statusCode < 400 || statusCode > 699) {\n            throw new TypeError(`Invalid statusCode: ${statusCode}`);\n        }\n        const response = this.reply(options);\n        return response;\n    }\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    trying(options) {\n        if (!this.tryingable) {\n            throw new _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_1__.TransactionStateError(`${this.message.method} not tryingable in state ${this.transaction.state}.`);\n        }\n        const response = this.reply({ statusCode: 100 });\n        return response;\n    }\n    /**\n     * If the UAS did not find a matching transaction for the CANCEL\n     * according to the procedure above, it SHOULD respond to the CANCEL\n     * with a 481 (Call Leg/Transaction Does Not Exist).  If the transaction\n     * for the original request still exists, the behavior of the UAS on\n     * receiving a CANCEL request depends on whether it has already sent a\n     * final response for the original request.  If it has, the CANCEL\n     * request has no effect on the processing of the original request, no\n     * effect on any session state, and no effect on the responses generated\n     * for the original request.  If the UAS has not issued a final response\n     * for the original request, its behavior depends on the method of the\n     * original request.  If the original request was an INVITE, the UAS\n     * SHOULD immediately respond to the INVITE with a 487 (Request\n     * Terminated).  A CANCEL request has no impact on the processing of\n     * transactions with any other method defined in this specification.\n     * https://tools.ietf.org/html/rfc3261#section-9.2\n     * @param request - Incoming CANCEL request.\n     */\n    receiveCancel(message) {\n        // Note: Currently CANCEL is being handled as a special case.\n        // No UAS is created to handle the CANCEL and the response to\n        // it CANCEL is being handled statelessly by the user agent core.\n        // As such, there is currently no way to externally impact the\n        // response to the a CANCEL request.\n        if (this.delegate && this.delegate.onCancel) {\n            this.delegate.onCancel(message);\n        }\n    }\n    get acceptable() {\n        if (this.transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            return (this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Proceeding || this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Accepted);\n        }\n        if (this.transaction instanceof _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_4__.NonInviteServerTransaction) {\n            return (this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Trying || this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Proceeding);\n        }\n        throw new Error(\"Unknown transaction type.\");\n    }\n    get progressable() {\n        if (this.transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            return this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Proceeding;\n        }\n        if (this.transaction instanceof _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_4__.NonInviteServerTransaction) {\n            return false; // https://tools.ietf.org/html/rfc4320#section-4.1\n        }\n        throw new Error(\"Unknown transaction type.\");\n    }\n    get redirectable() {\n        if (this.transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            return this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Proceeding;\n        }\n        if (this.transaction instanceof _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_4__.NonInviteServerTransaction) {\n            return (this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Trying || this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Proceeding);\n        }\n        throw new Error(\"Unknown transaction type.\");\n    }\n    get rejectable() {\n        if (this.transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            return this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Proceeding;\n        }\n        if (this.transaction instanceof _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_4__.NonInviteServerTransaction) {\n            return (this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Trying || this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Proceeding);\n        }\n        throw new Error(\"Unknown transaction type.\");\n    }\n    get tryingable() {\n        if (this.transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction) {\n            return this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Proceeding;\n        }\n        if (this.transaction instanceof _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_4__.NonInviteServerTransaction) {\n            return this.transaction.state === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Trying;\n        }\n        throw new Error(\"Unknown transaction type.\");\n    }\n    /**\n     * When a UAS wishes to construct a response to a request, it follows\n     * the general procedures detailed in the following subsections.\n     * Additional behaviors specific to the response code in question, which\n     * are not detailed in this section, may also be required.\n     *\n     * Once all procedures associated with the creation of a response have\n     * been completed, the UAS hands the response back to the server\n     * transaction from which it received the request.\n     * https://tools.ietf.org/html/rfc3261#section-8.2.6\n     * @param statusCode - Status code to reply with.\n     * @param options - Reply options bucket.\n     */\n    reply(options) {\n        if (!options.toTag && options.statusCode !== 100) {\n            options.toTag = this.toTag;\n        }\n        options.userAgent = options.userAgent || this.core.configuration.userAgentHeaderFieldValue;\n        options.supported = options.supported || this.core.configuration.supportedOptionTagsResponse;\n        const response = (0,_messages_outgoing_response_js__WEBPACK_IMPORTED_MODULE_5__.constructOutgoingResponse)(this.message, options);\n        this.transaction.receiveResponse(options.statusCode, response.message);\n        return response;\n    }\n    init() {\n        // We are the transaction user.\n        const user = {\n            loggerFactory: this.loggerFactory,\n            onStateChange: (newState) => {\n                if (newState === _transactions_transaction_state_js__WEBPACK_IMPORTED_MODULE_3__.TransactionState.Terminated) {\n                    // Remove the terminated transaction from the core.\n                    // eslint-disable-next-line @typescript-eslint/no-use-before-define\n                    this.core.userAgentServers.delete(userAgentServerId);\n                    this.dispose();\n                }\n            },\n            onTransportError: (error) => {\n                this.logger.error(error.message);\n                if (this.delegate && this.delegate.onTransportError) {\n                    this.delegate.onTransportError(error);\n                }\n                else {\n                    this.logger.error(\"User agent server response transport error.\");\n                }\n            }\n        };\n        // Create a new transaction with us as the user.\n        const transaction = new this.transactionConstructor(this.message, this.core.transport, user);\n        this._transaction = transaction;\n        // Add the new transaction to the core.\n        const userAgentServerId = transaction.id;\n        this.core.userAgentServers.set(transaction.id, this);\n    }\n}\n\n\n/***/ }),\n/* 83 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"NonInviteServerTransaction\": () => (/* binding */ NonInviteServerTransaction)\n/* harmony export */ });\n/* harmony import */ var _timers_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(37);\n/* harmony import */ var _server_transaction_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(73);\n/* harmony import */ var _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(64);\n\n\n\n/**\n * Non-INVITE Server Transaction.\n * @remarks\n * https://tools.ietf.org/html/rfc3261#section-17.2.2\n * @public\n */\nclass NonInviteServerTransaction extends _server_transaction_js__WEBPACK_IMPORTED_MODULE_0__.ServerTransaction {\n    /**\n     * Constructor.\n     * After construction the transaction will be in the \"trying\": state and the transaction\n     * `id` will equal the branch parameter set in the Via header of the incoming request.\n     * https://tools.ietf.org/html/rfc3261#section-17.2.2\n     * @param request - Incoming Non-INVITE request from the transport.\n     * @param transport - The transport.\n     * @param user - The transaction user.\n     */\n    constructor(request, transport, user) {\n        super(request, transport, user, _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying, \"sip.transaction.nist\");\n    }\n    /**\n     * Destructor.\n     */\n    dispose() {\n        if (this.J) {\n            clearTimeout(this.J);\n            this.J = undefined;\n        }\n        super.dispose();\n    }\n    /** Transaction kind. Deprecated. */\n    get kind() {\n        return \"nist\";\n    }\n    /**\n     * Receive requests from transport matching this transaction.\n     * @param request - Request matching this transaction.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    receiveRequest(request) {\n        switch (this.state) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying:\n                // Once in the \"Trying\" state, any further request retransmissions are discarded.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.2\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                // If a retransmission of the request is received while in the \"Proceeding\" state,\n                // the most recently sent provisional response MUST be passed to the transport layer for retransmission.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.2\n                if (!this.lastResponse) {\n                    throw new Error(\"Last response undefined.\");\n                }\n                this.send(this.lastResponse).catch((error) => {\n                    this.logTransportError(error, \"Failed to send retransmission of provisional response.\");\n                });\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                // While in the \"Completed\" state, the server transaction MUST pass the final response to the transport\n                // layer for retransmission whenever a retransmission of the request is received. Any other final responses\n                // passed by the TU to the server transaction MUST be discarded while in the \"Completed\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.2\n                if (!this.lastResponse) {\n                    throw new Error(\"Last response undefined.\");\n                }\n                this.send(this.lastResponse).catch((error) => {\n                    this.logTransportError(error, \"Failed to send retransmission of final response.\");\n                });\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                break;\n            default:\n                throw new Error(`Invalid state ${this.state}`);\n        }\n    }\n    /**\n     * Receive responses from TU for this transaction.\n     * @param statusCode - Status code of response. 101-199 not allowed per RFC 4320.\n     * @param response - Response to send.\n     */\n    receiveResponse(statusCode, response) {\n        if (statusCode < 100 || statusCode > 699) {\n            throw new Error(`Invalid status code ${statusCode}`);\n        }\n        // An SIP element MUST NOT send any provisional response with a\n        // Status-Code other than 100 to a non-INVITE request.\n        // An SIP element MUST NOT respond to a non-INVITE request with a\n        // Status-Code of 100 over any unreliable transport, such as UDP,\n        // before the amount of time it takes a client transaction's Timer E to be reset to T2.\n        // An SIP element MAY respond to a non-INVITE request with a\n        // Status-Code of 100 over a reliable transport at any time.\n        // https://tools.ietf.org/html/rfc4320#section-4.1\n        if (statusCode > 100 && statusCode <= 199) {\n            throw new Error(\"Provisional response other than 100 not allowed.\");\n        }\n        switch (this.state) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying:\n                // While in the \"Trying\" state, if the TU passes a provisional response\n                // to the server transaction, the server transaction MUST enter the \"Proceeding\" state.\n                // The response MUST be passed to the transport layer for transmission.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.2\n                this.lastResponse = response;\n                if (statusCode >= 100 && statusCode < 200) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding);\n                    this.send(response).catch((error) => {\n                        this.logTransportError(error, \"Failed to send provisional response.\");\n                    });\n                    return;\n                }\n                if (statusCode >= 200 && statusCode <= 699) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed);\n                    this.send(response).catch((error) => {\n                        this.logTransportError(error, \"Failed to send final response.\");\n                    });\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                // Any further provisional responses that are received from the TU while\n                // in the \"Proceeding\" state MUST be passed to the transport layer for transmission.\n                // If the TU passes a final response (status codes 200-699) to the server while in\n                // the \"Proceeding\" state, the transaction MUST enter the \"Completed\" state, and\n                // the response MUST be passed to the transport layer for transmission.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.2\n                this.lastResponse = response;\n                if (statusCode >= 200 && statusCode <= 699) {\n                    this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed);\n                    this.send(response).catch((error) => {\n                        this.logTransportError(error, \"Failed to send final response.\");\n                    });\n                    return;\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                // Any other final responses passed by the TU to the server\n                // transaction MUST be discarded while in the \"Completed\" state.\n                // https://tools.ietf.org/html/rfc3261#section-17.2.2\n                return;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                break;\n            default:\n                throw new Error(`Invalid state ${this.state}`);\n        }\n        const message = `Non-INVITE server transaction received unexpected ${statusCode} response from TU while in state ${this.state}.`;\n        this.logger.error(message);\n        throw new Error(message);\n    }\n    /**\n     * First, the procedures in [4] are followed, which attempt to deliver the response to a backup.\n     * If those should all fail, based on the definition of failure in [4], the server transaction SHOULD\n     * inform the TU that a failure has occurred, and SHOULD transition to the terminated state.\n     * https://tools.ietf.org/html/rfc3261#section-17.2.4\n     */\n    onTransportError(error) {\n        if (this.user.onTransportError) {\n            this.user.onTransportError(error);\n        }\n        this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated, true);\n    }\n    /** For logging. */\n    typeToString() {\n        return \"non-INVITE server transaction\";\n    }\n    stateTransition(newState, dueToTransportError = false) {\n        // Assert valid state transitions.\n        const invalidStateTransition = () => {\n            throw new Error(`Invalid state transition from ${this.state} to ${newState}`);\n        };\n        switch (newState) {\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying:\n                invalidStateTransition();\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying) {\n                    invalidStateTransition();\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Trying && this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding) {\n                    invalidStateTransition();\n                }\n                break;\n            case _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated:\n                if (this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Proceeding && this.state !== _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n                    if (!dueToTransportError) {\n                        invalidStateTransition();\n                    }\n                }\n                break;\n            default:\n                invalidStateTransition();\n        }\n        // When the server transaction enters the \"Completed\" state, it MUST set Timer J to fire\n        // in 64*T1 seconds for unreliable transports, and zero seconds for reliable transports.\n        // https://tools.ietf.org/html/rfc3261#section-17.2.2\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n            this.J = setTimeout(() => this.timerJ(), _timers_js__WEBPACK_IMPORTED_MODULE_2__.Timers.TIMER_J);\n        }\n        // The server transaction MUST be destroyed the instant it enters the \"Terminated\" state.\n        // https://tools.ietf.org/html/rfc3261#section-17.2.2\n        if (newState === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated) {\n            this.dispose();\n        }\n        this.setState(newState);\n    }\n    /**\n     * The server transaction remains in this state until Timer J fires,\n     * at which point it MUST transition to the \"Terminated\" state.\n     * https://tools.ietf.org/html/rfc3261#section-17.2.2\n     */\n    timerJ() {\n        this.logger.debug(`Timer J expired for NON-INVITE server transaction ${this.id}.`);\n        if (this.state === _transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Completed) {\n            this.stateTransition(_transaction_state_js__WEBPACK_IMPORTED_MODULE_1__.TransactionState.Terminated);\n        }\n    }\n}\n\n\n/***/ }),\n/* 84 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"constructOutgoingResponse\": () => (/* binding */ constructOutgoingResponse)\n/* harmony export */ });\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(21);\n\n/**\n * When a UAS wishes to construct a response to a request, it follows\n * the general procedures detailed in the following subsections.\n * Additional behaviors specific to the response code in question, which\n * are not detailed in this section, may also be required.\n * https://tools.ietf.org/html/rfc3261#section-8.2.6\n * @internal\n */\nfunction constructOutgoingResponse(message, options) {\n    const CRLF = \"\\r\\n\";\n    if (options.statusCode < 100 || options.statusCode > 699) {\n        throw new TypeError(\"Invalid statusCode: \" + options.statusCode);\n    }\n    const reasonPhrase = options.reasonPhrase ? options.reasonPhrase : (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.getReasonPhrase)(options.statusCode);\n    // SIP responses are distinguished from requests by having a Status-Line\n    // as their start-line.  A Status-Line consists of the protocol version\n    // followed by a numeric Status-Code and its associated textual phrase,\n    // with each element separated by a single SP character.\n    // https://tools.ietf.org/html/rfc3261#section-7.2\n    let response = \"SIP/2.0 \" + options.statusCode + \" \" + reasonPhrase + CRLF;\n    // One largely non-method-specific guideline for the generation of\n    // responses is that UASs SHOULD NOT issue a provisional response for a\n    // non-INVITE request.  Rather, UASs SHOULD generate a final response to\n    // a non-INVITE request as soon as possible.\n    // https://tools.ietf.org/html/rfc3261#section-8.2.6.1\n    if (options.statusCode >= 100 && options.statusCode < 200) {\n        // TODO\n    }\n    // When a 100 (Trying) response is generated, any Timestamp header field\n    // present in the request MUST be copied into this 100 (Trying)\n    // response.  If there is a delay in generating the response, the UAS\n    // SHOULD add a delay value into the Timestamp value in the response.\n    // This value MUST contain the difference between the time of sending of\n    // the response and receipt of the request, measured in seconds.\n    // https://tools.ietf.org/html/rfc3261#section-8.2.6.1\n    if (options.statusCode === 100) {\n        // TODO\n    }\n    // The From field of the response MUST equal the From header field of\n    // the request.  The Call-ID header field of the response MUST equal the\n    // Call-ID header field of the request.  The CSeq header field of the\n    // response MUST equal the CSeq field of the request.  The Via header\n    // field values in the response MUST equal the Via header field values\n    // in the request and MUST maintain the same ordering.\n    // https://tools.ietf.org/html/rfc3261#section-8.2.6.2\n    const fromHeader = \"From: \" + message.getHeader(\"From\") + CRLF;\n    const callIdHeader = \"Call-ID: \" + message.callId + CRLF;\n    const cSeqHeader = \"CSeq: \" + message.cseq + \" \" + message.method + CRLF;\n    const viaHeaders = message.getHeaders(\"via\").reduce((previous, current) => {\n        return previous + \"Via: \" + current + CRLF;\n    }, \"\");\n    // If a request contained a To tag in the request, the To header field\n    // in the response MUST equal that of the request.  However, if the To\n    // header field in the request did not contain a tag, the URI in the To\n    // header field in the response MUST equal the URI in the To header\n    // field; additionally, the UAS MUST add a tag to the To header field in\n    // the response (with the exception of the 100 (Trying) response, in\n    // which a tag MAY be present).  This serves to identify the UAS that is\n    // responding, possibly resulting in a component of a dialog ID.  The\n    // same tag MUST be used for all responses to that request, both final\n    // and provisional (again excepting the 100 (Trying)).\n    // https://tools.ietf.org/html/rfc3261#section-8.2.6.2\n    let toHeader = \"To: \" + message.getHeader(\"to\");\n    if (options.statusCode > 100 && !message.parseHeader(\"to\").hasParam(\"tag\")) {\n        let toTag = options.toTag;\n        if (!toTag) {\n            // Stateless UAS Behavior...\n            // o  To header tags MUST be generated for responses in a stateless\n            //    manner - in a manner that will generate the same tag for the\n            //    same request consistently.  For information on tag construction\n            //    see Section 19.3.\n            // https://tools.ietf.org/html/rfc3261#section-8.2.7\n            toTag = (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.newTag)(); // FIXME: newTag() currently generates random tags\n        }\n        toHeader += \";tag=\" + toTag;\n    }\n    toHeader += CRLF;\n    // FIXME: TODO: needs review... moved to InviteUserAgentServer (as it is specific to that)\n    // let recordRouteHeaders = \"\";\n    // if (request.method === C.INVITE && statusCode > 100 && statusCode <= 200) {\n    //   recordRouteHeaders = request.getHeaders(\"record-route\").reduce((previous, current) => {\n    //     return previous + \"Record-Route: \" + current + CRLF;\n    //   }, \"\");\n    // }\n    // FIXME: TODO: needs review...\n    let supportedHeader = \"\";\n    if (options.supported) {\n        supportedHeader = \"Supported: \" + options.supported.join(\", \") + CRLF;\n    }\n    // FIXME: TODO: needs review...\n    let userAgentHeader = \"\";\n    if (options.userAgent) {\n        userAgentHeader = \"User-Agent: \" + options.userAgent + CRLF;\n    }\n    let extensionHeaders = \"\";\n    if (options.extraHeaders) {\n        extensionHeaders = options.extraHeaders.reduce((previous, current) => {\n            return previous + current.trim() + CRLF;\n        }, \"\");\n    }\n    // The relative order of header fields with different field names is not\n    // significant.  However, it is RECOMMENDED that header fields which are\n    // needed for proxy processing (Via, Route, Record-Route, Proxy-Require,\n    // Max-Forwards, and Proxy-Authorization, for example) appear towards\n    // the top of the message to facilitate rapid parsing.\n    // https://tools.ietf.org/html/rfc3261#section-7.3.1\n    // response += recordRouteHeaders;\n    response += viaHeaders;\n    response += fromHeader;\n    response += toHeader;\n    response += cSeqHeader;\n    response += callIdHeader;\n    response += supportedHeader;\n    response += userAgentHeader;\n    response += extensionHeaders;\n    if (options.body) {\n        response += \"Content-Type: \" + options.body.contentType + CRLF;\n        response += \"Content-Length: \" + (0,_utils_js__WEBPACK_IMPORTED_MODULE_0__.utf8Length)(options.body.content) + CRLF + CRLF;\n        response += options.body.content;\n    }\n    else {\n        response += \"Content-Length: \" + 0 + CRLF + CRLF;\n    }\n    return { message: response };\n}\n\n\n/***/ }),\n/* 85 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"InfoUserAgentServer\": () => (/* binding */ InfoUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n/**\n * INFO UAS.\n * @public\n */\nclass InfoUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(dialog, message, delegate) {\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, dialog.userAgentCore, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 86 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ReInviteUserAgentServer\": () => (/* binding */ ReInviteUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(72);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n/**\n * Re-INVITE UAS.\n * @remarks\n * 14 Modifying an Existing Session\n * https://tools.ietf.org/html/rfc3261#section-14\n * 14.2 UAS Behavior\n * https://tools.ietf.org/html/rfc3261#section-14.2\n * @public\n */\nclass ReInviteUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(dialog, message, delegate) {\n        super(_transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteServerTransaction, dialog.userAgentCore, message, delegate);\n        dialog.reinviteUserAgentServer = this;\n        this.dialog = dialog;\n    }\n    /**\n     * Update the dialog signaling state on a 2xx response.\n     * @param options - Options bucket.\n     */\n    accept(options = { statusCode: 200 }) {\n        // FIXME: The next two lines SHOULD go away, but I suppose it's technically harmless...\n        // These are here because some versions of SIP.js prior to 0.13.8 set the route set\n        // of all in dialog ACKs based on the Record-Route headers in the associated 2xx\n        // response. While this worked for dialog forming 2xx responses, it was technically\n        // broken for re-INVITE ACKS as it only worked if the UAS populated the Record-Route\n        // headers in the re-INVITE 2xx response (which is not required and a waste of bandwidth\n        // as the should be ignored if present in re-INVITE ACKS) and the UAS populated\n        // the Record-Route headers with the correct values (would be weird not too, but...).\n        // Anyway, for now the technically useless Record-Route headers are being added\n        // to maintain \"backwards compatibility\" with the older broken versions of SIP.js.\n        options.extraHeaders = options.extraHeaders || [];\n        options.extraHeaders = options.extraHeaders.concat(this.dialog.routeSet.map((route) => `Record-Route: ${route}`));\n        // Send and return the response\n        const response = super.accept(options);\n        const session = this.dialog;\n        const result = Object.assign(Object.assign({}, response), { session });\n        if (options.body) {\n            // Update dialog signaling state with offer/answer in body\n            this.dialog.signalingStateTransition(options.body);\n        }\n        // Update dialog\n        this.dialog.reConfirm();\n        return result;\n    }\n    /**\n     * Update the dialog signaling state on a 1xx response.\n     * @param options - Progress options bucket.\n     */\n    progress(options = { statusCode: 180 }) {\n        // Send and return the response\n        const response = super.progress(options);\n        const session = this.dialog;\n        const result = Object.assign(Object.assign({}, response), { session });\n        // Update dialog signaling state\n        if (options.body) {\n            this.dialog.signalingStateTransition(options.body);\n        }\n        return result;\n    }\n    /**\n     * TODO: Not Yet Supported\n     * @param contacts - Contacts to redirect to.\n     * @param options - Redirect options bucket.\n     */\n    // eslint-disable-next-line @typescript-eslint/no-unused-vars\n    redirect(contacts, options = { statusCode: 302 }) {\n        this.dialog.signalingStateRollback();\n        this.dialog.reinviteUserAgentServer = undefined; // ACK will be handled by transaction\n        throw new Error(\"Unimplemented.\");\n    }\n    /**\n     * 3.1 Background on Re-INVITE Handling by UASs\n     * An error response to a re-INVITE has the following semantics.  As\n     * specified in Section 12.2.2 of RFC 3261 [RFC3261], if a re-INVITE is\n     * rejected, no state changes are performed.\n     * https://tools.ietf.org/html/rfc6141#section-3.1\n     * @param options - Reject options bucket.\n     */\n    reject(options = { statusCode: 488 }) {\n        this.dialog.signalingStateRollback();\n        this.dialog.reinviteUserAgentServer = undefined; // ACK will be handled by transaction\n        return super.reject(options);\n    }\n}\n\n\n/***/ }),\n/* 87 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"MessageUserAgentServer\": () => (/* binding */ MessageUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n/**\n * MESSAGE UAS.\n * @public\n */\nclass MessageUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(core, message, delegate) {\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, core, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 88 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"NotifyUserAgentServer\": () => (/* binding */ NotifyUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction instanceOfDialog(object) {\n    return object.userAgentCore !== undefined;\n}\n/**\n * NOTIFY UAS.\n * @public\n */\nclass NotifyUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    /**\n     * NOTIFY UAS constructor.\n     * @param dialogOrCore - Dialog for in dialog NOTIFY, UserAgentCore for out of dialog NOTIFY (deprecated).\n     * @param message - Incoming NOTIFY request message.\n     */\n    constructor(dialogOrCore, message, delegate) {\n        const userAgentCore = instanceOfDialog(dialogOrCore) ? dialogOrCore.userAgentCore : dialogOrCore;\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, userAgentCore, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 89 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"PrackUserAgentServer\": () => (/* binding */ PrackUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n/**\n * PRACK UAS.\n * @public\n */\nclass PrackUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(dialog, message, delegate) {\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, dialog.userAgentCore, message, delegate);\n        // Update dialog signaling state with offer/answer in body\n        dialog.signalingStateTransition(message);\n        this.dialog = dialog;\n    }\n    /**\n     * Update the dialog signaling state on a 2xx response.\n     * @param options - Options bucket.\n     */\n    accept(options = { statusCode: 200 }) {\n        if (options.body) {\n            // Update dialog signaling state with offer/answer in body\n            this.dialog.signalingStateTransition(options.body);\n        }\n        return super.accept(options);\n    }\n}\n\n\n/***/ }),\n/* 90 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ReferUserAgentServer\": () => (/* binding */ ReferUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction instanceOfSessionDialog(object) {\n    return object.userAgentCore !== undefined;\n}\n/**\n * REFER UAS.\n * @public\n */\nclass ReferUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    /**\n     * REFER UAS constructor.\n     * @param dialogOrCore - Dialog for in dialog REFER, UserAgentCore for out of dialog REFER.\n     * @param message - Incoming REFER request message.\n     */\n    constructor(dialogOrCore, message, delegate) {\n        const userAgentCore = instanceOfSessionDialog(dialogOrCore) ? dialogOrCore.userAgentCore : dialogOrCore;\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, userAgentCore, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 91 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"PublishUserAgentClient\": () => (/* binding */ PublishUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n/**\n * PUBLISH UAC.\n * @public\n */\nclass PublishUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(core, message, delegate) {\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteClientTransaction, core, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 92 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"RegisterUserAgentClient\": () => (/* binding */ RegisterUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n/**\n * REGISTER UAC.\n * @public\n */\nclass RegisterUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(core, message, delegate) {\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteClientTransaction, core, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 93 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SubscribeUserAgentClient\": () => (/* binding */ SubscribeUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _dialogs_subscription_dialog_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(94);\n/* harmony import */ var _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(47);\n/* harmony import */ var _timers_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(37);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n\n\n/**\n * SUBSCRIBE UAC.\n * @remarks\n * 4.1.  Subscriber Behavior\n * https://tools.ietf.org/html/rfc6665#section-4.1\n *\n * User agent client for installation of a single subscription per SUBSCRIBE request.\n * TODO: Support for installation of multiple subscriptions on forked SUBSCRIBE requests.\n * @public\n */\nclass SubscribeUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(core, message, delegate) {\n        // Get event from request message.\n        const event = message.getHeader(\"Event\");\n        if (!event) {\n            throw new Error(\"Event undefined\");\n        }\n        // Get expires from request message.\n        const expires = message.getHeader(\"Expires\");\n        if (!expires) {\n            throw new Error(\"Expires undefined\");\n        }\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteClientTransaction, core, message, delegate);\n        this.delegate = delegate;\n        // FIXME: Subscriber id should also be matching on event id.\n        this.subscriberId = message.callId + message.fromTag + event;\n        this.subscriptionExpiresRequested = this.subscriptionExpires = Number(expires);\n        this.subscriptionEvent = event;\n        this.subscriptionState = _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.NotifyWait;\n        // Start waiting for a NOTIFY we can use to create a subscription.\n        this.waitNotifyStart();\n    }\n    /**\n     * Destructor.\n     * Note that Timer N may live on waiting for an initial NOTIFY and\n     * the delegate may still receive that NOTIFY. If you don't want\n     * that behavior then either clear the delegate so the delegate\n     * doesn't get called (a 200 will be sent in response to the NOTIFY)\n     * or call `waitNotifyStop` which will clear Timer N and remove this\n     * UAC from the core (a 481 will be sent in response to the NOTIFY).\n     */\n    dispose() {\n        super.dispose();\n    }\n    /**\n     * Handle out of dialog NOTIFY associated with SUBSCRIBE request.\n     * This is the first NOTIFY received after the SUBSCRIBE request.\n     * @param uas - User agent server handling the subscription creating NOTIFY.\n     */\n    onNotify(uas) {\n        // NOTIFY requests are matched to such SUBSCRIBE requests if they\n        // contain the same \"Call-ID\", a \"To\" header field \"tag\" parameter that\n        // matches the \"From\" header field \"tag\" parameter of the SUBSCRIBE\n        // request, and the same \"Event\" header field.  Rules for comparisons of\n        // the \"Event\" header fields are described in Section 8.2.1.\n        // https://tools.ietf.org/html/rfc6665#section-4.4.1\n        const event = uas.message.parseHeader(\"Event\").event;\n        if (!event || event !== this.subscriptionEvent) {\n            this.logger.warn(`Failed to parse event.`);\n            uas.reject({ statusCode: 489 });\n            return;\n        }\n        // NOTIFY requests MUST contain \"Subscription-State\" header fields that\n        // indicate the status of the subscription.\n        // https://tools.ietf.org/html/rfc6665#section-4.1.3\n        const subscriptionState = uas.message.parseHeader(\"Subscription-State\");\n        if (!subscriptionState || !subscriptionState.state) {\n            this.logger.warn(\"Failed to parse subscription state.\");\n            uas.reject({ statusCode: 489 });\n            return;\n        }\n        // Validate subscription state.\n        const state = subscriptionState.state;\n        switch (state) {\n            case \"pending\":\n                break;\n            case \"active\":\n                break;\n            case \"terminated\":\n                break;\n            default:\n                this.logger.warn(`Invalid subscription state ${state}`);\n                uas.reject({ statusCode: 489 });\n                return;\n        }\n        // Dialogs usages are created upon completion of a NOTIFY transaction\n        // for a new subscription, unless the NOTIFY request contains a\n        // \"Subscription-State\" of \"terminated.\"\n        // https://tools.ietf.org/html/rfc6665#section-4.4.1\n        if (state !== \"terminated\") {\n            // The Contact header field MUST be present and contain exactly one SIP\n            // or SIPS URI in any request that can result in the establishment of a\n            // dialog.\n            // https://tools.ietf.org/html/rfc3261#section-8.1.1.8\n            const contact = uas.message.parseHeader(\"contact\");\n            if (!contact) {\n                this.logger.warn(\"Failed to parse contact.\");\n                uas.reject({ statusCode: 489 });\n                return;\n            }\n        }\n        // In accordance with the rules for proxying non-INVITE requests as\n        // defined in [RFC3261], successful SUBSCRIBE requests will receive only\n        // one 200-class response; however, due to forking, the subscription may\n        // have been accepted by multiple nodes.  The subscriber MUST therefore\n        // be prepared to receive NOTIFY requests with \"From:\" tags that differ\n        // from the \"To:\" tag received in the SUBSCRIBE 200-class response.\n        //\n        // If multiple NOTIFY requests are received in different dialogs in\n        // response to a single SUBSCRIBE request, each dialog represents a\n        // different destination to which the SUBSCRIBE request was forked.\n        // Subscriber handling in such situations varies by event package; see\n        // Section 5.4.9 for details.\n        // https://tools.ietf.org/html/rfc6665#section-4.1.4\n        // Each event package MUST specify whether forked SUBSCRIBE requests are\n        // allowed to install multiple subscriptions.\n        //\n        // If such behavior is not allowed, the first potential dialog-\n        // establishing message will create a dialog.  All subsequent NOTIFY\n        // requests that correspond to the SUBSCRIBE request (i.e., have\n        // matching \"To\", \"From\", \"Call-ID\", and \"Event\" header fields, as well\n        // as \"From\" header field \"tag\" parameter and \"Event\" header field \"id\"\n        // parameter) but that do not match the dialog would be rejected with a\n        // 481 response.  Note that the 200-class response to the SUBSCRIBE\n        // request can arrive after a matching NOTIFY request has been received;\n        // such responses might not correlate to the same dialog established by\n        // the NOTIFY request.  Except as required to complete the SUBSCRIBE\n        // transaction, such non-matching 200-class responses are ignored.\n        //\n        // If installing of multiple subscriptions by way of a single forked\n        // SUBSCRIBE request is allowed, the subscriber establishes a new dialog\n        // towards each notifier by returning a 200-class response to each\n        // NOTIFY request.  Each dialog is then handled as its own entity and is\n        // refreshed independently of the other dialogs.\n        //\n        // In the case that multiple subscriptions are allowed, the event\n        // package MUST specify whether merging of the notifications to form a\n        // single state is required, and how such merging is to be performed.\n        // Note that it is possible that some event packages may be defined in\n        // such a way that each dialog is tied to a mutually exclusive state\n        // that is unaffected by the other dialogs; this MUST be clearly stated\n        // if it is the case.\n        // https://tools.ietf.org/html/rfc6665#section-5.4.9\n        // *** NOTE: This implementation is only for event packages which\n        // do not allow forked requests to install multiple subscriptions.\n        // As such and in accordance with the specification, we stop waiting\n        // and any future NOTIFY requests will be rejected with a 481.\n        if (this.dialog) {\n            throw new Error(\"Dialog already created. This implementation only supports install of single subscriptions.\");\n        }\n        this.waitNotifyStop();\n        // Update expires.\n        this.subscriptionExpires = subscriptionState.expires\n            ? Math.min(this.subscriptionExpires, Math.max(subscriptionState.expires, 0))\n            : this.subscriptionExpires;\n        // Update subscription state.\n        switch (state) {\n            case \"pending\":\n                this.subscriptionState = _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Pending;\n                break;\n            case \"active\":\n                this.subscriptionState = _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Active;\n                break;\n            case \"terminated\":\n                this.subscriptionState = _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Terminated;\n                break;\n            default:\n                throw new Error(`Unrecognized state ${state}.`);\n        }\n        // Dialogs usages are created upon completion of a NOTIFY transaction\n        // for a new subscription, unless the NOTIFY request contains a\n        // \"Subscription-State\" of \"terminated.\"\n        // https://tools.ietf.org/html/rfc6665#section-4.4.1\n        if (this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionState.Terminated) {\n            // Because the dialog usage is established by the NOTIFY request, the\n            // route set at the subscriber is taken from the NOTIFY request itself,\n            // as opposed to the route set present in the 200-class response to the\n            // SUBSCRIBE request.\n            // https://tools.ietf.org/html/rfc6665#section-4.4.1\n            const dialogState = _dialogs_subscription_dialog_js__WEBPACK_IMPORTED_MODULE_3__.SubscriptionDialog.initialDialogStateForSubscription(this.message, uas.message);\n            // Subscription Initiated! :)\n            this.dialog = new _dialogs_subscription_dialog_js__WEBPACK_IMPORTED_MODULE_3__.SubscriptionDialog(this.subscriptionEvent, this.subscriptionExpires, this.subscriptionState, this.core, dialogState);\n        }\n        // Delegate.\n        if (this.delegate && this.delegate.onNotify) {\n            const request = uas;\n            const subscription = this.dialog;\n            this.delegate.onNotify({ request, subscription });\n        }\n        else {\n            uas.accept();\n        }\n    }\n    waitNotifyStart() {\n        if (!this.N) {\n            // Add ourselves to the core's subscriber map.\n            // This allows the core to route out of dialog NOTIFY messages to us.\n            this.core.subscribers.set(this.subscriberId, this);\n            this.N = setTimeout(() => this.timerN(), _timers_js__WEBPACK_IMPORTED_MODULE_4__.Timers.TIMER_N);\n        }\n    }\n    waitNotifyStop() {\n        if (this.N) {\n            // Remove ourselves to the core's subscriber map.\n            // Any future out of dialog NOTIFY messages will be rejected with a 481.\n            this.core.subscribers.delete(this.subscriberId);\n            clearTimeout(this.N);\n            this.N = undefined;\n        }\n    }\n    /**\n     * Receive a response from the transaction layer.\n     * @param message - Incoming response message.\n     */\n    receiveResponse(message) {\n        if (!this.authenticationGuard(message)) {\n            return;\n        }\n        if (message.statusCode && message.statusCode >= 200 && message.statusCode < 300) {\n            //  The \"Expires\" header field in a 200-class response to SUBSCRIBE\n            //  request indicates the actual duration for which the subscription will\n            //  remain active (unless refreshed).  The received value might be\n            //  smaller than the value indicated in the SUBSCRIBE request but cannot\n            //  be larger; see Section 4.2.1 for details.\n            // https://tools.ietf.org/html/rfc6665#section-4.1.2.1\n            // The \"Expires\" values present in SUBSCRIBE 200-class responses behave\n            // in the same way as they do in REGISTER responses: the server MAY\n            // shorten the interval but MUST NOT lengthen it.\n            //\n            //    If the duration specified in a SUBSCRIBE request is unacceptably\n            //    short, the notifier may be able to send a 423 response, as\n            //    described earlier in this section.\n            //\n            // 200-class responses to SUBSCRIBE requests will not generally contain\n            // any useful information beyond subscription duration; their primary\n            // purpose is to serve as a reliability mechanism.  State information\n            // will be communicated via a subsequent NOTIFY request from the\n            // notifier.\n            // https://tools.ietf.org/html/rfc6665#section-4.2.1.1\n            const expires = message.getHeader(\"Expires\");\n            if (!expires) {\n                this.logger.warn(\"Expires header missing in a 200-class response to SUBSCRIBE\");\n            }\n            else {\n                const subscriptionExpiresReceived = Number(expires);\n                if (subscriptionExpiresReceived > this.subscriptionExpiresRequested) {\n                    this.logger.warn(\"Expires header in a 200-class response to SUBSCRIBE with a higher value than the one in the request\");\n                }\n                if (subscriptionExpiresReceived < this.subscriptionExpires) {\n                    this.subscriptionExpires = subscriptionExpiresReceived;\n                }\n            }\n            // If a NOTIFY arrived before 200-class response a dialog may have been created.\n            // Updated the dialogs expiration only if this indicates earlier expiration.\n            if (this.dialog) {\n                if (this.dialog.subscriptionExpires > this.subscriptionExpires) {\n                    this.dialog.subscriptionExpires = this.subscriptionExpires;\n                }\n            }\n        }\n        if (message.statusCode && message.statusCode >= 300 && message.statusCode < 700) {\n            this.waitNotifyStop(); // No NOTIFY will be sent after a negative final response.\n        }\n        super.receiveResponse(message);\n    }\n    /**\n     * To ensure that subscribers do not wait indefinitely for a\n     * subscription to be established, a subscriber starts a Timer N, set to\n     * 64*T1, when it sends a SUBSCRIBE request.  If this Timer N expires\n     * prior to the receipt of a NOTIFY request, the subscriber considers\n     * the subscription failed, and cleans up any state associated with the\n     * subscription attempt.\n     * https://tools.ietf.org/html/rfc6665#section-4.1.2.4\n     */\n    timerN() {\n        this.logger.warn(`Timer N expired for SUBSCRIBE user agent client. Timed out waiting for NOTIFY.`);\n        this.waitNotifyStop();\n        if (this.delegate && this.delegate.onNotifyTimeout) {\n            this.delegate.onNotifyTimeout();\n        }\n    }\n}\n\n\n/***/ }),\n/* 94 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SubscriptionDialog\": () => (/* binding */ SubscriptionDialog)\n/* harmony export */ });\n/* harmony import */ var _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(26);\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(30);\n/* harmony import */ var _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(47);\n/* harmony import */ var _timers_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(37);\n/* harmony import */ var _user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(29);\n/* harmony import */ var _user_agents_notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(88);\n/* harmony import */ var _user_agents_re_subscribe_user_agent_client_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(95);\n/* harmony import */ var _dialog_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(70);\n\n\n\n\n\n\n\n\n/**\n * Subscription Dialog.\n * @remarks\n * SIP-Specific Event Notification\n *\n * Abstract\n *\n *    This document describes an extension to the Session Initiation\n *    Protocol (SIP) defined by RFC 3261.  The purpose of this extension is\n *    to provide an extensible framework by which SIP nodes can request\n *    notification from remote nodes indicating that certain events have\n *    occurred.\n *\n *    Note that the event notification mechanisms defined herein are NOT\n *    intended to be a general-purpose infrastructure for all classes of\n *    event subscription and notification.\n *\n *    This document represents a backwards-compatible improvement on the\n *    original mechanism described by RFC 3265, taking into account several\n *    years of implementation experience.  Accordingly, this document\n *    obsoletes RFC 3265.  This document also updates RFC 4660 slightly to\n *    accommodate some small changes to the mechanism that were discussed\n *    in that document.\n *\n *  https://tools.ietf.org/html/rfc6665\n * @public\n */\nclass SubscriptionDialog extends _dialog_js__WEBPACK_IMPORTED_MODULE_0__.Dialog {\n    constructor(subscriptionEvent, subscriptionExpires, subscriptionState, core, state, delegate) {\n        super(core, state);\n        this.delegate = delegate;\n        this._autoRefresh = false;\n        this._subscriptionEvent = subscriptionEvent;\n        this._subscriptionExpires = subscriptionExpires;\n        this._subscriptionExpiresInitial = subscriptionExpires;\n        this._subscriptionExpiresLastSet = Math.floor(Date.now() / 1000);\n        this._subscriptionRefresh = undefined;\n        this._subscriptionRefreshLastSet = undefined;\n        this._subscriptionState = subscriptionState;\n        this.logger = core.loggerFactory.getLogger(\"sip.subscribe-dialog\");\n        this.logger.log(`SUBSCRIBE dialog ${this.id} constructed`);\n    }\n    /**\n     * When a UAC receives a response that establishes a dialog, it\n     * constructs the state of the dialog.  This state MUST be maintained\n     * for the duration of the dialog.\n     * https://tools.ietf.org/html/rfc3261#section-12.1.2\n     * @param outgoingRequestMessage - Outgoing request message for dialog.\n     * @param incomingResponseMessage - Incoming response message creating dialog.\n     */\n    static initialDialogStateForSubscription(outgoingSubscribeRequestMessage, incomingNotifyRequestMessage) {\n        // If the request was sent over TLS, and the Request-URI contained a\n        // SIPS URI, the \"secure\" flag is set to TRUE.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.2\n        const secure = false; // FIXME: Currently no support for TLS.\n        // The route set MUST be set to the list of URIs in the Record-Route\n        // header field from the response, taken in reverse order and preserving\n        // all URI parameters.  If no Record-Route header field is present in\n        // the response, the route set MUST be set to the empty set.  This route\n        // set, even if empty, overrides any pre-existing route set for future\n        // requests in this dialog.  The remote target MUST be set to the URI\n        // from the Contact header field of the response.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.2\n        const routeSet = incomingNotifyRequestMessage.getHeaders(\"record-route\");\n        const contact = incomingNotifyRequestMessage.parseHeader(\"contact\");\n        if (!contact) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"Contact undefined.\");\n        }\n        if (!(contact instanceof _grammar_name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader)) {\n            throw new Error(\"Contact not instance of NameAddrHeader.\");\n        }\n        const remoteTarget = contact.uri;\n        // The local sequence number MUST be set to the value of the sequence\n        // number in the CSeq header field of the request.  The remote sequence\n        // number MUST be empty (it is established when the remote UA sends a\n        // request within the dialog).  The call identifier component of the\n        // dialog ID MUST be set to the value of the Call-ID in the request.\n        // The local tag component of the dialog ID MUST be set to the tag in\n        // the From field in the request, and the remote tag component of the\n        // dialog ID MUST be set to the tag in the To field of the response.  A\n        // UAC MUST be prepared to receive a response without a tag in the To\n        // field, in which case the tag is considered to have a value of null.\n        //\n        //    This is to maintain backwards compatibility with RFC 2543, which\n        //    did not mandate To tags.\n        //\n        // https://tools.ietf.org/html/rfc3261#section-12.1.2\n        const localSequenceNumber = outgoingSubscribeRequestMessage.cseq;\n        const remoteSequenceNumber = undefined;\n        const callId = outgoingSubscribeRequestMessage.callId;\n        const localTag = outgoingSubscribeRequestMessage.fromTag;\n        const remoteTag = incomingNotifyRequestMessage.fromTag;\n        if (!callId) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"Call id undefined.\");\n        }\n        if (!localTag) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"From tag undefined.\");\n        }\n        if (!remoteTag) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"To tag undefined.\"); // FIXME: No backwards compatibility with RFC 2543\n        }\n        // The remote URI MUST be set to the URI in the To field, and the local\n        // URI MUST be set to the URI in the From field.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.2\n        if (!outgoingSubscribeRequestMessage.from) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"From undefined.\");\n        }\n        if (!outgoingSubscribeRequestMessage.to) {\n            // TODO: Review to make sure this will never happen\n            throw new Error(\"To undefined.\");\n        }\n        const localURI = outgoingSubscribeRequestMessage.from.uri;\n        const remoteURI = outgoingSubscribeRequestMessage.to.uri;\n        // A dialog can also be in the \"early\" state, which occurs when it is\n        // created with a provisional response, and then transition to the\n        // \"confirmed\" state when a 2xx final response arrives.\n        // https://tools.ietf.org/html/rfc3261#section-12\n        const early = false;\n        const dialogState = {\n            id: callId + localTag + remoteTag,\n            early,\n            callId,\n            localTag,\n            remoteTag,\n            localSequenceNumber,\n            remoteSequenceNumber,\n            localURI,\n            remoteURI,\n            remoteTarget,\n            routeSet,\n            secure\n        };\n        return dialogState;\n    }\n    dispose() {\n        super.dispose();\n        if (this.N) {\n            clearTimeout(this.N);\n            this.N = undefined;\n        }\n        this.refreshTimerClear();\n        this.logger.log(`SUBSCRIBE dialog ${this.id} destroyed`);\n    }\n    get autoRefresh() {\n        return this._autoRefresh;\n    }\n    set autoRefresh(autoRefresh) {\n        this._autoRefresh = true;\n        this.refreshTimerSet();\n    }\n    get subscriptionEvent() {\n        return this._subscriptionEvent;\n    }\n    /** Number of seconds until subscription expires. */\n    get subscriptionExpires() {\n        const secondsSinceLastSet = Math.floor(Date.now() / 1000) - this._subscriptionExpiresLastSet;\n        const secondsUntilExpires = this._subscriptionExpires - secondsSinceLastSet;\n        return Math.max(secondsUntilExpires, 0);\n    }\n    set subscriptionExpires(expires) {\n        if (expires < 0) {\n            throw new Error(\"Expires must be greater than or equal to zero.\");\n        }\n        this._subscriptionExpires = expires;\n        this._subscriptionExpiresLastSet = Math.floor(Date.now() / 1000);\n        if (this.autoRefresh) {\n            const refresh = this.subscriptionRefresh;\n            if (refresh === undefined || refresh >= expires) {\n                this.refreshTimerSet();\n            }\n        }\n    }\n    get subscriptionExpiresInitial() {\n        return this._subscriptionExpiresInitial;\n    }\n    /** Number of seconds until subscription auto refresh. */\n    get subscriptionRefresh() {\n        if (this._subscriptionRefresh === undefined || this._subscriptionRefreshLastSet === undefined) {\n            return undefined;\n        }\n        const secondsSinceLastSet = Math.floor(Date.now() / 1000) - this._subscriptionRefreshLastSet;\n        const secondsUntilExpires = this._subscriptionRefresh - secondsSinceLastSet;\n        return Math.max(secondsUntilExpires, 0);\n    }\n    get subscriptionState() {\n        return this._subscriptionState;\n    }\n    /**\n     * Receive in dialog request message from transport.\n     * @param message -  The incoming request message.\n     */\n    receiveRequest(message) {\n        this.logger.log(`SUBSCRIBE dialog ${this.id} received ${message.method} request`);\n        // Request within a dialog out of sequence guard.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        if (!this.sequenceGuard(message)) {\n            this.logger.log(`SUBSCRIBE dialog ${this.id} rejected out of order ${message.method} request.`);\n            return;\n        }\n        // Request within a dialog common processing.\n        // https://tools.ietf.org/html/rfc3261#section-12.2.2\n        super.receiveRequest(message);\n        // Switch on method and then delegate.\n        switch (message.method) {\n            case _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_2__.C.NOTIFY:\n                this.onNotify(message);\n                break;\n            default:\n                this.logger.log(`SUBSCRIBE dialog ${this.id} received unimplemented ${message.method} request`);\n                this.core.replyStateless(message, { statusCode: 501 });\n                break;\n        }\n    }\n    /**\n     * 4.1.2.2.  Refreshing of Subscriptions\n     * https://tools.ietf.org/html/rfc6665#section-4.1.2.2\n     */\n    refresh() {\n        const allowHeader = \"Allow: \" + _user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_3__.AllowedMethods.toString();\n        const options = {};\n        options.extraHeaders = (options.extraHeaders || []).slice();\n        options.extraHeaders.push(allowHeader);\n        options.extraHeaders.push(\"Event: \" + this.subscriptionEvent);\n        options.extraHeaders.push(\"Expires: \" + this.subscriptionExpiresInitial);\n        options.extraHeaders.push(\"Contact: \" + this.core.configuration.contact.toString());\n        return this.subscribe(undefined, options);\n    }\n    /**\n     * 4.1.2.2.  Refreshing of Subscriptions\n     * https://tools.ietf.org/html/rfc6665#section-4.1.2.2\n     * @param delegate - Delegate to handle responses.\n     * @param options - Options bucket.\n     */\n    subscribe(delegate, options = {}) {\n        var _a;\n        if (this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Pending && this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Active) {\n            // FIXME: This needs to be a proper exception\n            throw new Error(`Invalid state ${this.subscriptionState}. May only re-subscribe while in state \"pending\" or \"active\".`);\n        }\n        this.logger.log(`SUBSCRIBE dialog ${this.id} sending SUBSCRIBE request`);\n        const uac = new _user_agents_re_subscribe_user_agent_client_js__WEBPACK_IMPORTED_MODULE_5__.ReSubscribeUserAgentClient(this, delegate, options);\n        // Abort any outstanding timer (as it would otherwise become guaranteed to terminate us).\n        if (this.N) {\n            clearTimeout(this.N);\n            this.N = undefined;\n        }\n        if (!((_a = options.extraHeaders) === null || _a === void 0 ? void 0 : _a.includes(\"Expires: 0\"))) {\n            // When refreshing a subscription, a subscriber starts Timer N, set to\n            // 64*T1, when it sends the SUBSCRIBE request.\n            // https://tools.ietf.org/html/rfc6665#section-4.1.2.2\n            this.N = setTimeout(() => this.timerN(), _timers_js__WEBPACK_IMPORTED_MODULE_6__.Timers.TIMER_N);\n        }\n        return uac;\n    }\n    /**\n     * 4.4.1.  Dialog Creation and Termination\n     * A subscription is destroyed after a notifier sends a NOTIFY request\n     * with a \"Subscription-State\" of \"terminated\", or in certain error\n     * situations described elsewhere in this document.\n     * https://tools.ietf.org/html/rfc6665#section-4.4.1\n     */\n    terminate() {\n        this.stateTransition(_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Terminated);\n        this.onTerminated();\n    }\n    /**\n     * 4.1.2.3.  Unsubscribing\n     * https://tools.ietf.org/html/rfc6665#section-4.1.2.3\n     */\n    unsubscribe() {\n        const allowHeader = \"Allow: \" + _user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_3__.AllowedMethods.toString();\n        const options = {};\n        options.extraHeaders = (options.extraHeaders || []).slice();\n        options.extraHeaders.push(allowHeader);\n        options.extraHeaders.push(\"Event: \" + this.subscriptionEvent);\n        options.extraHeaders.push(\"Expires: 0\");\n        options.extraHeaders.push(\"Contact: \" + this.core.configuration.contact.toString());\n        return this.subscribe(undefined, options);\n    }\n    /**\n     * Handle in dialog NOTIFY requests.\n     * This does not include the first NOTIFY which created the dialog.\n     * @param message - The incoming NOTIFY request message.\n     */\n    onNotify(message) {\n        // If, for some reason, the event package designated in the \"Event\"\n        // header field of the NOTIFY request is not supported, the subscriber\n        // will respond with a 489 (Bad Event) response.\n        // https://tools.ietf.org/html/rfc6665#section-4.1.3\n        const event = message.parseHeader(\"Event\").event;\n        if (!event || event !== this.subscriptionEvent) {\n            this.core.replyStateless(message, { statusCode: 489 });\n            return;\n        }\n        // In the state diagram, \"Re-subscription times out\" means that an\n        // attempt to refresh or update the subscription using a new SUBSCRIBE\n        // request does not result in a NOTIFY request before the corresponding\n        // Timer N expires.\n        // https://tools.ietf.org/html/rfc6665#section-4.1.2\n        if (this.N) {\n            clearTimeout(this.N);\n            this.N = undefined;\n        }\n        // NOTIFY requests MUST contain \"Subscription-State\" header fields that\n        // indicate the status of the subscription.\n        // https://tools.ietf.org/html/rfc6665#section-4.1.3\n        const subscriptionState = message.parseHeader(\"Subscription-State\");\n        if (!subscriptionState || !subscriptionState.state) {\n            this.core.replyStateless(message, { statusCode: 489 });\n            return;\n        }\n        const state = subscriptionState.state;\n        const expires = subscriptionState.expires ? Math.max(subscriptionState.expires, 0) : undefined;\n        // Update our state and expiration.\n        switch (state) {\n            case \"pending\":\n                this.stateTransition(_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Pending, expires);\n                break;\n            case \"active\":\n                this.stateTransition(_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Active, expires);\n                break;\n            case \"terminated\":\n                this.stateTransition(_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Terminated, expires);\n                break;\n            default:\n                this.logger.warn(\"Unrecognized subscription state.\");\n                break;\n        }\n        // Delegate remainder of NOTIFY handling.\n        const uas = new _user_agents_notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_7__.NotifyUserAgentServer(this, message);\n        if (this.delegate && this.delegate.onNotify) {\n            this.delegate.onNotify(uas);\n        }\n        else {\n            uas.accept();\n        }\n    }\n    onRefresh(request) {\n        if (this.delegate && this.delegate.onRefresh) {\n            this.delegate.onRefresh(request);\n        }\n    }\n    onTerminated() {\n        if (this.delegate && this.delegate.onTerminated) {\n            this.delegate.onTerminated();\n        }\n    }\n    refreshTimerClear() {\n        if (this.refreshTimer) {\n            clearTimeout(this.refreshTimer);\n            this.refreshTimer = undefined;\n        }\n    }\n    refreshTimerSet() {\n        this.refreshTimerClear();\n        if (this.autoRefresh && this.subscriptionExpires > 0) {\n            const refresh = this.subscriptionExpires * 900;\n            this._subscriptionRefresh = Math.floor(refresh / 1000);\n            this._subscriptionRefreshLastSet = Math.floor(Date.now() / 1000);\n            this.refreshTimer = setTimeout(() => {\n                this.refreshTimer = undefined;\n                this._subscriptionRefresh = undefined;\n                this._subscriptionRefreshLastSet = undefined;\n                this.onRefresh(this.refresh());\n            }, refresh);\n        }\n    }\n    stateTransition(newState, newExpires) {\n        // Assert valid state transitions.\n        const invalidStateTransition = () => {\n            this.logger.warn(`Invalid subscription state transition from ${this.subscriptionState} to ${newState}`);\n        };\n        switch (newState) {\n            case _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Initial:\n                invalidStateTransition();\n                return;\n            case _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.NotifyWait:\n                invalidStateTransition();\n                return;\n            case _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Pending:\n                if (this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.NotifyWait &&\n                    this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Pending) {\n                    invalidStateTransition();\n                    return;\n                }\n                break;\n            case _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Active:\n                if (this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.NotifyWait &&\n                    this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Pending &&\n                    this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Active) {\n                    invalidStateTransition();\n                    return;\n                }\n                break;\n            case _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Terminated:\n                if (this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.NotifyWait &&\n                    this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Pending &&\n                    this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Active) {\n                    invalidStateTransition();\n                    return;\n                }\n                break;\n            default:\n                invalidStateTransition();\n                return;\n        }\n        // If the \"Subscription-State\" value is \"pending\", the subscription has\n        // been received by the notifier, but there is insufficient policy\n        // information to grant or deny the subscription yet.  If the header\n        // field also contains an \"expires\" parameter, the subscriber SHOULD\n        // take it as the authoritative subscription duration and adjust\n        // accordingly.  No further action is necessary on the part of the\n        // subscriber.  The \"retry-after\" and \"reason\" parameters have no\n        // semantics for \"pending\".\n        // https://tools.ietf.org/html/rfc6665#section-4.1.3\n        if (newState === _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Pending) {\n            if (newExpires) {\n                this.subscriptionExpires = newExpires;\n            }\n        }\n        // If the \"Subscription-State\" header field value is \"active\", it means\n        // that the subscription has been accepted and (in general) has been\n        // authorized.  If the header field also contains an \"expires\"\n        // parameter, the subscriber SHOULD take it as the authoritative\n        // subscription duration and adjust accordingly.  The \"retry-after\" and\n        // \"reason\" parameters have no semantics for \"active\".\n        // https://tools.ietf.org/html/rfc6665#section-4.1.3\n        if (newState === _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Active) {\n            if (newExpires) {\n                this.subscriptionExpires = newExpires;\n            }\n        }\n        // If the \"Subscription-State\" value is \"terminated\", the subscriber\n        // MUST consider the subscription terminated.  The \"expires\" parameter\n        // has no semantics for \"terminated\" -- notifiers SHOULD NOT include an\n        // \"expires\" parameter on a \"Subscription-State\" header field with a\n        // value of \"terminated\", and subscribers MUST ignore any such\n        // parameter, if present.\n        if (newState === _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Terminated) {\n            this.dispose();\n        }\n        this._subscriptionState = newState;\n    }\n    /**\n     * When refreshing a subscription, a subscriber starts Timer N, set to\n     * 64*T1, when it sends the SUBSCRIBE request.  If this Timer N expires\n     * prior to the receipt of a NOTIFY request, the subscriber considers\n     * the subscription terminated.  If the subscriber receives a success\n     * response to the SUBSCRIBE request that indicates that no NOTIFY\n     * request will be generated -- such as the 204 response defined for use\n     * with the optional extension described in [RFC5839] -- then it MUST\n     * cancel Timer N.\n     * https://tools.ietf.org/html/rfc6665#section-4.1.2.2\n     */\n    timerN() {\n        this.logger.warn(`Timer N expired for SUBSCRIBE dialog. Timed out waiting for NOTIFY.`);\n        if (this.subscriptionState !== _subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Terminated) {\n            this.stateTransition(_subscription_subscription_js__WEBPACK_IMPORTED_MODULE_4__.SubscriptionState.Terminated);\n            this.onTerminated();\n        }\n    }\n}\n\n\n/***/ }),\n/* 95 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ReSubscribeUserAgentClient\": () => (/* binding */ ReSubscribeUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n\n/**\n * Re-SUBSCRIBE UAC.\n * @public\n */\nclass ReSubscribeUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(dialog, delegate, options) {\n        const message = dialog.createOutgoingRequestMessage(_messages_methods_constants_js__WEBPACK_IMPORTED_MODULE_1__.C.SUBSCRIBE, options);\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_2__.NonInviteClientTransaction, dialog.userAgentCore, message, delegate);\n        this.dialog = dialog;\n    }\n    waitNotifyStop() {\n        // TODO: Placeholder. Not utilized currently.\n        return;\n    }\n    /**\n     * Receive a response from the transaction layer.\n     * @param message - Incoming response message.\n     */\n    receiveResponse(message) {\n        if (message.statusCode && message.statusCode >= 200 && message.statusCode < 300) {\n            //  The \"Expires\" header field in a 200-class response to SUBSCRIBE\n            //  request indicates the actual duration for which the subscription will\n            //  remain active (unless refreshed).  The received value might be\n            //  smaller than the value indicated in the SUBSCRIBE request but cannot\n            //  be larger; see Section 4.2.1 for details.\n            // https://tools.ietf.org/html/rfc6665#section-4.1.2.1\n            const expires = message.getHeader(\"Expires\");\n            if (!expires) {\n                this.logger.warn(\"Expires header missing in a 200-class response to SUBSCRIBE\");\n            }\n            else {\n                const subscriptionExpiresReceived = Number(expires);\n                if (this.dialog.subscriptionExpires > subscriptionExpiresReceived) {\n                    this.dialog.subscriptionExpires = subscriptionExpiresReceived;\n                }\n            }\n        }\n        if (message.statusCode && message.statusCode >= 400 && message.statusCode < 700) {\n            // If a SUBSCRIBE request to refresh a subscription receives a 404, 405,\n            // 410, 416, 480-485, 489, 501, or 604 response, the subscriber MUST\n            // consider the subscription terminated.  (See [RFC5057] for further\n            // details and notes about the effect of error codes on dialogs and\n            // usages within dialog, such as subscriptions).  If the subscriber\n            // wishes to re-subscribe to the state, he does so by composing an\n            // unrelated initial SUBSCRIBE request with a freshly generated Call-ID\n            // and a new, unique \"From\" tag (see Section 4.1.2.1).\n            // https://tools.ietf.org/html/rfc6665#section-4.1.2.2\n            const errorCodes = [404, 405, 410, 416, 480, 481, 482, 483, 484, 485, 489, 501, 604];\n            if (errorCodes.includes(message.statusCode)) {\n                this.dialog.terminate();\n            }\n            // If a SUBSCRIBE request to refresh a subscription fails with any error\n            // code other than those listed above, the original subscription is\n            // still considered valid for the duration of the most recently known\n            // \"Expires\" value as negotiated by the most recent successful SUBSCRIBE\n            // transaction, or as communicated by a NOTIFY request in its\n            // \"Subscription-State\" header field \"expires\" parameter.\n            // https://tools.ietf.org/html/rfc6665#section-4.1.2.2\n        }\n        super.receiveResponse(message);\n    }\n}\n\n\n/***/ }),\n/* 96 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"InviteUserAgentServer\": () => (/* binding */ InviteUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _dialogs_dialog_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(70);\n/* harmony import */ var _dialogs_session_dialog_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(71);\n/* harmony import */ var _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(36);\n/* harmony import */ var _session_session_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(31);\n/* harmony import */ var _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(72);\n/* harmony import */ var _user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(29);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n\n\n\n\n\n/**\n * INVITE UAS.\n * @remarks\n * 13 Initiating a Session\n * https://tools.ietf.org/html/rfc3261#section-13\n * 13.1 Overview\n * https://tools.ietf.org/html/rfc3261#section-13.1\n * 13.3 UAS Processing\n * https://tools.ietf.org/html/rfc3261#section-13.3\n * @public\n */\nclass InviteUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(core, message, delegate) {\n        super(_transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteServerTransaction, core, message, delegate);\n        this.core = core;\n    }\n    dispose() {\n        if (this.earlyDialog) {\n            this.earlyDialog.dispose();\n        }\n        super.dispose();\n    }\n    /**\n     * 13.3.1.4 The INVITE is Accepted\n     * The UAS core generates a 2xx response.  This response establishes a\n     * dialog, and therefore follows the procedures of Section 12.1.1 in\n     * addition to those of Section 8.2.6.\n     * https://tools.ietf.org/html/rfc3261#section-13.3.1.4\n     * @param options - Accept options bucket.\n     */\n    accept(options = { statusCode: 200 }) {\n        if (!this.acceptable) {\n            throw new _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_2__.TransactionStateError(`${this.message.method} not acceptable in state ${this.transaction.state}.`);\n        }\n        // This response establishes a dialog...\n        // https://tools.ietf.org/html/rfc3261#section-13.3.1.4\n        if (!this.confirmedDialog) {\n            if (this.earlyDialog) {\n                this.earlyDialog.confirm();\n                this.confirmedDialog = this.earlyDialog;\n                this.earlyDialog = undefined;\n            }\n            else {\n                const transaction = this.transaction;\n                if (!(transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteServerTransaction)) {\n                    throw new Error(\"Transaction not instance of InviteClientTransaction.\");\n                }\n                const state = _dialogs_dialog_js__WEBPACK_IMPORTED_MODULE_3__.Dialog.initialDialogStateForUserAgentServer(this.message, this.toTag);\n                this.confirmedDialog = new _dialogs_session_dialog_js__WEBPACK_IMPORTED_MODULE_4__.SessionDialog(transaction, this.core, state);\n            }\n        }\n        // When a UAS responds to a request with a response that establishes a\n        // dialog (such as a 2xx to INVITE), the UAS MUST copy all Record-Route\n        // header field values from the request into the response (including the\n        // URIs, URI parameters, and any Record-Route header field parameters,\n        // whether they are known or unknown to the UAS) and MUST maintain the\n        // order of those values.  The UAS MUST add a Contact header field to\n        // the response.  The Contact header field contains an address where the\n        // UAS would like to be contacted for subsequent requests in the dialog\n        // (which includes the ACK for a 2xx response in the case of an INVITE).\n        // Generally, the host portion of this URI is the IP address or FQDN of\n        // the host.  The URI provided in the Contact header field MUST be a SIP\n        // or SIPS URI.  If the request that initiated the dialog contained a\n        // SIPS URI in the Request-URI or in the top Record-Route header field\n        // value, if there was any, or the Contact header field if there was no\n        // Record-Route header field, the Contact header field in the response\n        // MUST be a SIPS URI.  The URI SHOULD have global scope (that is, the\n        // same URI can be used in messages outside this dialog).  The same way,\n        // the scope of the URI in the Contact header field of the INVITE is not\n        // limited to this dialog either.  It can therefore be used in messages\n        // to the UAC even outside this dialog.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.1\n        const recordRouteHeader = this.message.getHeaders(\"record-route\").map((header) => `Record-Route: ${header}`);\n        const contactHeader = `Contact: ${this.core.configuration.contact.toString()}`;\n        // A 2xx response to an INVITE SHOULD contain the Allow header field and\n        // the Supported header field, and MAY contain the Accept header field.\n        // Including these header fields allows the UAC to determine the\n        // features and extensions supported by the UAS for the duration of the\n        // call, without probing.\n        // https://tools.ietf.org/html/rfc3261#section-13.3.1.4\n        // FIXME: TODO: This should not be hard coded.\n        const allowHeader = \"Allow: \" + _user_agent_core_allowed_methods_js__WEBPACK_IMPORTED_MODULE_5__.AllowedMethods.toString();\n        // FIXME: TODO: Supported header (see reply())\n        // FIXME: TODO: Accept header\n        // If the INVITE request contained an offer, and the UAS had not yet\n        // sent an answer, the 2xx MUST contain an answer.  If the INVITE did\n        // not contain an offer, the 2xx MUST contain an offer if the UAS had\n        // not yet sent an offer.\n        // https://tools.ietf.org/html/rfc3261#section-13.3.1.4\n        if (!options.body) {\n            if (this.confirmedDialog.signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Stable) {\n                options.body = this.confirmedDialog.answer; // resend the answer sent in provisional response\n            }\n            else if (this.confirmedDialog.signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Initial ||\n                this.confirmedDialog.signalingState === _session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.HaveRemoteOffer) {\n                throw new Error(\"Response must have a body.\");\n            }\n        }\n        options.statusCode = options.statusCode || 200;\n        options.extraHeaders = options.extraHeaders || [];\n        options.extraHeaders = options.extraHeaders.concat(recordRouteHeader);\n        options.extraHeaders.push(allowHeader);\n        options.extraHeaders.push(contactHeader);\n        const response = super.accept(options);\n        const session = this.confirmedDialog;\n        const result = Object.assign(Object.assign({}, response), { session });\n        // Update dialog signaling state\n        if (options.body) {\n            // Once the UAS has sent or received an answer to the initial\n            // offer, it MUST NOT generate subsequent offers in any responses\n            // to the initial INVITE.  This means that a UAS based on this\n            // specification alone can never generate subsequent offers until\n            // completion of the initial transaction.\n            // https://tools.ietf.org/html/rfc3261#section-13.2.1\n            if (this.confirmedDialog.signalingState !== _session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Stable) {\n                this.confirmedDialog.signalingStateTransition(options.body);\n            }\n        }\n        return result;\n    }\n    /**\n     * 13.3.1.1 Progress\n     * If the UAS is not able to answer the invitation immediately, it can\n     * choose to indicate some kind of progress to the UAC (for example, an\n     * indication that a phone is ringing).  This is accomplished with a\n     * provisional response between 101 and 199.  These provisional\n     * responses establish early dialogs and therefore follow the procedures\n     * of Section 12.1.1 in addition to those of Section 8.2.6.  A UAS MAY\n     * send as many provisional responses as it likes.  Each of these MUST\n     * indicate the same dialog ID.  However, these will not be delivered\n     * reliably.\n     *\n     * If the UAS desires an extended period of time to answer the INVITE,\n     * it will need to ask for an \"extension\" in order to prevent proxies\n     * from canceling the transaction.  A proxy has the option of canceling\n     * a transaction when there is a gap of 3 minutes between responses in a\n     * transaction.  To prevent cancellation, the UAS MUST send a non-100\n     * provisional response at every minute, to handle the possibility of\n     * lost provisional responses.\n     * https://tools.ietf.org/html/rfc3261#section-13.3.1.1\n     * @param options - Progress options bucket.\n     */\n    progress(options = { statusCode: 180 }) {\n        if (!this.progressable) {\n            throw new _exceptions_transaction_state_error_js__WEBPACK_IMPORTED_MODULE_2__.TransactionStateError(`${this.message.method} not progressable in state ${this.transaction.state}.`);\n        }\n        // This response establishes a dialog...\n        // https://tools.ietf.org/html/rfc3261#section-13.3.1.4\n        if (!this.earlyDialog) {\n            const transaction = this.transaction;\n            if (!(transaction instanceof _transactions_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteServerTransaction)) {\n                throw new Error(\"Transaction not instance of InviteClientTransaction.\");\n            }\n            const state = _dialogs_dialog_js__WEBPACK_IMPORTED_MODULE_3__.Dialog.initialDialogStateForUserAgentServer(this.message, this.toTag, true);\n            this.earlyDialog = new _dialogs_session_dialog_js__WEBPACK_IMPORTED_MODULE_4__.SessionDialog(transaction, this.core, state);\n        }\n        // When a UAS responds to a request with a response that establishes a\n        // dialog (such as a 2xx to INVITE), the UAS MUST copy all Record-Route\n        // header field values from the request into the response (including the\n        // URIs, URI parameters, and any Record-Route header field parameters,\n        // whether they are known or unknown to the UAS) and MUST maintain the\n        // order of those values.  The UAS MUST add a Contact header field to\n        // the response.  The Contact header field contains an address where the\n        // UAS would like to be contacted for subsequent requests in the dialog\n        // (which includes the ACK for a 2xx response in the case of an INVITE).\n        // Generally, the host portion of this URI is the IP address or FQDN of\n        // the host.  The URI provided in the Contact header field MUST be a SIP\n        // or SIPS URI.  If the request that initiated the dialog contained a\n        // SIPS URI in the Request-URI or in the top Record-Route header field\n        // value, if there was any, or the Contact header field if there was no\n        // Record-Route header field, the Contact header field in the response\n        // MUST be a SIPS URI.  The URI SHOULD have global scope (that is, the\n        // same URI can be used in messages outside this dialog).  The same way,\n        // the scope of the URI in the Contact header field of the INVITE is not\n        // limited to this dialog either.  It can therefore be used in messages\n        // to the UAC even outside this dialog.\n        // https://tools.ietf.org/html/rfc3261#section-12.1.1\n        const recordRouteHeader = this.message.getHeaders(\"record-route\").map((header) => `Record-Route: ${header}`);\n        const contactHeader = `Contact: ${this.core.configuration.contact}`;\n        options.extraHeaders = options.extraHeaders || [];\n        options.extraHeaders = options.extraHeaders.concat(recordRouteHeader);\n        options.extraHeaders.push(contactHeader);\n        const response = super.progress(options);\n        const session = this.earlyDialog;\n        const result = Object.assign(Object.assign({}, response), { session });\n        // Update dialog signaling state\n        if (options.body) {\n            // Once the UAS has sent or received an answer to the initial\n            // offer, it MUST NOT generate subsequent offers in any responses\n            // to the initial INVITE.  This means that a UAS based on this\n            // specification alone can never generate subsequent offers until\n            // completion of the initial transaction.\n            // https://tools.ietf.org/html/rfc3261#section-13.2.1\n            if (this.earlyDialog.signalingState !== _session_session_js__WEBPACK_IMPORTED_MODULE_6__.SignalingState.Stable) {\n                this.earlyDialog.signalingStateTransition(options.body);\n            }\n        }\n        return result;\n    }\n    /**\n     * 13.3.1.2 The INVITE is Redirected\n     * If the UAS decides to redirect the call, a 3xx response is sent.  A\n     * 300 (Multiple Choices), 301 (Moved Permanently) or 302 (Moved\n     * Temporarily) response SHOULD contain a Contact header field\n     * containing one or more URIs of new addresses to be tried.  The\n     * response is passed to the INVITE server transaction, which will deal\n     * with its retransmissions.\n     * https://tools.ietf.org/html/rfc3261#section-13.3.1.2\n     * @param contacts - Contacts to redirect to.\n     * @param options - Redirect options bucket.\n     */\n    redirect(contacts, options = { statusCode: 302 }) {\n        return super.redirect(contacts, options);\n    }\n    /**\n     * 13.3.1.3 The INVITE is Rejected\n     * A common scenario occurs when the callee is currently not willing or\n     * able to take additional calls at this end system.  A 486 (Busy Here)\n     * SHOULD be returned in such a scenario.\n     * https://tools.ietf.org/html/rfc3261#section-13.3.1.3\n     * @param options - Reject options bucket.\n     */\n    reject(options = { statusCode: 486 }) {\n        return super.reject(options);\n    }\n}\n\n\n/***/ }),\n/* 97 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"RegisterUserAgentServer\": () => (/* binding */ RegisterUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n/**\n * REGISTER UAS.\n * @public\n */\nclass RegisterUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(core, message, delegate) {\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, core, message, delegate);\n        this.core = core;\n    }\n}\n\n\n/***/ }),\n/* 98 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SubscribeUserAgentServer\": () => (/* binding */ SubscribeUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n/**\n * SUBSCRIBE UAS.\n * @public\n */\nclass SubscribeUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(core, message, delegate) {\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, core, message, delegate);\n        this.core = core;\n    }\n}\n\n\n/***/ }),\n/* 99 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Parser\": () => (/* binding */ Parser)\n/* harmony export */ });\n/* harmony import */ var _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(22);\n/* harmony import */ var _incoming_request_message_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(19);\n/* harmony import */ var _incoming_response_message_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);\n/* eslint-disable no-inner-declarations */\n/* eslint-disable @typescript-eslint/no-namespace */\n\n\n\n/**\n * Extract and parse every header of a SIP message.\n * @internal\n */\nvar Parser;\n(function (Parser) {\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    function getHeader(data, headerStart) {\n        // 'start' position of the header.\n        let start = headerStart;\n        // 'end' position of the header.\n        let end = 0;\n        // 'partial end' position of the header.\n        let partialEnd = 0;\n        // End of message.\n        if (data.substring(start, start + 2).match(/(^\\r\\n)/)) {\n            return -2;\n        }\n        while (end === 0) {\n            // Partial End of Header.\n            partialEnd = data.indexOf(\"\\r\\n\", start);\n            // 'indexOf' returns -1 if the value to be found never occurs.\n            if (partialEnd === -1) {\n                return partialEnd;\n            }\n            if (!data.substring(partialEnd + 2, partialEnd + 4).match(/(^\\r\\n)/) &&\n                data.charAt(partialEnd + 2).match(/(^\\s+)/)) {\n                // Not the end of the message. Continue from the next position.\n                start = partialEnd + 2;\n            }\n            else {\n                end = partialEnd;\n            }\n        }\n        return end;\n    }\n    Parser.getHeader = getHeader;\n    function parseHeader(message, \n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    data, headerStart, headerEnd) {\n        const hcolonIndex = data.indexOf(\":\", headerStart);\n        const headerName = data.substring(headerStart, hcolonIndex).trim();\n        const headerValue = data.substring(hcolonIndex + 1, headerEnd).trim();\n        // eslint-disable-next-line @typescript-eslint/no-explicit-any\n        let parsed;\n        // If header-field is well-known, parse it.\n        switch (headerName.toLowerCase()) {\n            case \"via\":\n            case \"v\":\n                message.addHeader(\"via\", headerValue);\n                if (message.getHeaders(\"via\").length === 1) {\n                    parsed = message.parseHeader(\"Via\");\n                    if (parsed) {\n                        message.via = parsed;\n                        message.viaBranch = parsed.branch;\n                    }\n                }\n                else {\n                    parsed = 0;\n                }\n                break;\n            case \"from\":\n            case \"f\":\n                message.setHeader(\"from\", headerValue);\n                parsed = message.parseHeader(\"from\");\n                if (parsed) {\n                    message.from = parsed;\n                    message.fromTag = parsed.getParam(\"tag\");\n                }\n                break;\n            case \"to\":\n            case \"t\":\n                message.setHeader(\"to\", headerValue);\n                parsed = message.parseHeader(\"to\");\n                if (parsed) {\n                    message.to = parsed;\n                    message.toTag = parsed.getParam(\"tag\");\n                }\n                break;\n            case \"record-route\":\n                parsed = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_0__.Grammar.parse(headerValue, \"Record_Route\");\n                if (parsed === -1) {\n                    parsed = undefined;\n                    break;\n                }\n                if (!(parsed instanceof Array)) {\n                    parsed = undefined;\n                    break;\n                }\n                parsed.forEach((header) => {\n                    message.addHeader(\"record-route\", headerValue.substring(header.position, header.offset));\n                    message.headers[\"Record-Route\"][message.getHeaders(\"record-route\").length - 1].parsed = header.parsed;\n                });\n                break;\n            case \"call-id\":\n            case \"i\":\n                message.setHeader(\"call-id\", headerValue);\n                parsed = message.parseHeader(\"call-id\");\n                if (parsed) {\n                    message.callId = headerValue;\n                }\n                break;\n            case \"contact\":\n            case \"m\":\n                parsed = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_0__.Grammar.parse(headerValue, \"Contact\");\n                if (parsed === -1) {\n                    parsed = undefined;\n                    break;\n                }\n                if (!(parsed instanceof Array)) {\n                    parsed = undefined;\n                    break;\n                }\n                parsed.forEach((header) => {\n                    message.addHeader(\"contact\", headerValue.substring(header.position, header.offset));\n                    message.headers.Contact[message.getHeaders(\"contact\").length - 1].parsed = header.parsed;\n                });\n                break;\n            case \"content-length\":\n            case \"l\":\n                message.setHeader(\"content-length\", headerValue);\n                parsed = message.parseHeader(\"content-length\");\n                break;\n            case \"content-type\":\n            case \"c\":\n                message.setHeader(\"content-type\", headerValue);\n                parsed = message.parseHeader(\"content-type\");\n                break;\n            case \"cseq\":\n                message.setHeader(\"cseq\", headerValue);\n                parsed = message.parseHeader(\"cseq\");\n                if (parsed) {\n                    message.cseq = parsed.value;\n                }\n                if (message instanceof _incoming_response_message_js__WEBPACK_IMPORTED_MODULE_1__.IncomingResponseMessage) {\n                    message.method = parsed.method;\n                }\n                break;\n            case \"max-forwards\":\n                message.setHeader(\"max-forwards\", headerValue);\n                parsed = message.parseHeader(\"max-forwards\");\n                break;\n            case \"www-authenticate\":\n                message.setHeader(\"www-authenticate\", headerValue);\n                parsed = message.parseHeader(\"www-authenticate\");\n                break;\n            case \"proxy-authenticate\":\n                message.setHeader(\"proxy-authenticate\", headerValue);\n                parsed = message.parseHeader(\"proxy-authenticate\");\n                break;\n            case \"refer-to\":\n            case \"r\":\n                message.setHeader(\"refer-to\", headerValue);\n                parsed = message.parseHeader(\"refer-to\");\n                if (parsed) {\n                    message.referTo = parsed;\n                }\n                break;\n            default:\n                // Do not parse this header.\n                message.addHeader(headerName.toLowerCase(), headerValue);\n                parsed = 0;\n        }\n        if (parsed === undefined) {\n            return {\n                error: \"error parsing header '\" + headerName + \"'\"\n            };\n        }\n        else {\n            return true;\n        }\n    }\n    Parser.parseHeader = parseHeader;\n    function parseMessage(data, logger) {\n        let headerStart = 0;\n        let headerEnd = data.indexOf(\"\\r\\n\");\n        if (headerEnd === -1) {\n            logger.warn(\"no CRLF found, not a SIP message, discarded\");\n            return;\n        }\n        // Parse first line. Check if it is a Request or a Reply.\n        const firstLine = data.substring(0, headerEnd);\n        const parsed = _grammar_grammar_js__WEBPACK_IMPORTED_MODULE_0__.Grammar.parse(firstLine, \"Request_Response\");\n        let message;\n        if (parsed === -1) {\n            logger.warn('error parsing first line of SIP message: \"' + firstLine + '\"');\n            return;\n        }\n        else if (!parsed.status_code) {\n            message = new _incoming_request_message_js__WEBPACK_IMPORTED_MODULE_2__.IncomingRequestMessage();\n            message.method = parsed.method;\n            message.ruri = parsed.uri;\n        }\n        else {\n            message = new _incoming_response_message_js__WEBPACK_IMPORTED_MODULE_1__.IncomingResponseMessage();\n            message.statusCode = parsed.status_code;\n            message.reasonPhrase = parsed.reason_phrase;\n        }\n        message.data = data;\n        headerStart = headerEnd + 2;\n        // Loop over every line in data. Detect the end of each header and parse\n        // it or simply add to the headers collection.\n        let bodyStart;\n        // eslint-disable-next-line no-constant-condition\n        while (true) {\n            headerEnd = getHeader(data, headerStart);\n            // The SIP message has normally finished.\n            if (headerEnd === -2) {\n                bodyStart = headerStart + 2;\n                break;\n            }\n            else if (headerEnd === -1) {\n                // data.indexOf returned -1 due to a malformed message.\n                logger.error(\"malformed message\");\n                return;\n            }\n            const parsedHeader = parseHeader(message, data, headerStart, headerEnd);\n            if (parsedHeader && parsedHeader !== true) {\n                logger.error(parsedHeader.error);\n                return;\n            }\n            headerStart = headerEnd + 2;\n        }\n        // RFC3261 18.3.\n        // If there are additional bytes in the transport packet\n        // beyond the end of the body, they MUST be discarded.\n        if (message.hasHeader(\"content-length\")) {\n            message.body = data.substr(bodyStart, Number(message.getHeader(\"content-length\")));\n        }\n        else {\n            message.body = data.substring(bodyStart);\n        }\n        return message;\n    }\n    Parser.parseMessage = parseMessage;\n})(Parser = Parser || (Parser = {}));\n\n\n/***/ }),\n/* 100 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Grammar\": () => (/* reexport safe */ _grammar_js__WEBPACK_IMPORTED_MODULE_0__.Grammar),\n/* harmony export */   \"NameAddrHeader\": () => (/* reexport safe */ _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__.NameAddrHeader),\n/* harmony export */   \"Parameters\": () => (/* reexport safe */ _parameters_js__WEBPACK_IMPORTED_MODULE_2__.Parameters),\n/* harmony export */   \"URI\": () => (/* reexport safe */ _uri_js__WEBPACK_IMPORTED_MODULE_3__.URI),\n/* harmony export */   \"equivalentURI\": () => (/* reexport safe */ _uri_js__WEBPACK_IMPORTED_MODULE_3__.equivalentURI)\n/* harmony export */ });\n/* harmony import */ var _grammar_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(22);\n/* harmony import */ var _name_addr_header_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(26);\n/* harmony import */ var _parameters_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(25);\n/* harmony import */ var _uri_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(24);\n\n\n\n\n\n\n/***/ }),\n/* 101 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ByeUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.ByeUserAgentClient),\n/* harmony export */   \"ByeUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.ByeUserAgentServer),\n/* harmony export */   \"C\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.C),\n/* harmony export */   \"CancelUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.CancelUserAgentClient),\n/* harmony export */   \"ClientTransaction\": () => (/* reexport safe */ _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__.ClientTransaction),\n/* harmony export */   \"Dialog\": () => (/* reexport safe */ _dialogs_index_js__WEBPACK_IMPORTED_MODULE_0__.Dialog),\n/* harmony export */   \"DigestAuthentication\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.DigestAuthentication),\n/* harmony export */   \"Exception\": () => (/* reexport safe */ _exceptions_index_js__WEBPACK_IMPORTED_MODULE_1__.Exception),\n/* harmony export */   \"Grammar\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_10__.Grammar),\n/* harmony export */   \"IncomingMessage\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.IncomingMessage),\n/* harmony export */   \"IncomingRequestMessage\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.IncomingRequestMessage),\n/* harmony export */   \"IncomingResponseMessage\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.IncomingResponseMessage),\n/* harmony export */   \"InfoUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.InfoUserAgentClient),\n/* harmony export */   \"InfoUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.InfoUserAgentServer),\n/* harmony export */   \"InviteClientTransaction\": () => (/* reexport safe */ _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__.InviteClientTransaction),\n/* harmony export */   \"InviteServerTransaction\": () => (/* reexport safe */ _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__.InviteServerTransaction),\n/* harmony export */   \"InviteUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.InviteUserAgentClient),\n/* harmony export */   \"InviteUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.InviteUserAgentServer),\n/* harmony export */   \"Levels\": () => (/* reexport safe */ _log_index_js__WEBPACK_IMPORTED_MODULE_2__.Levels),\n/* harmony export */   \"Logger\": () => (/* reexport safe */ _log_index_js__WEBPACK_IMPORTED_MODULE_2__.Logger),\n/* harmony export */   \"LoggerFactory\": () => (/* reexport safe */ _log_index_js__WEBPACK_IMPORTED_MODULE_2__.LoggerFactory),\n/* harmony export */   \"MessageUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.MessageUserAgentClient),\n/* harmony export */   \"MessageUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.MessageUserAgentServer),\n/* harmony export */   \"NameAddrHeader\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_10__.NameAddrHeader),\n/* harmony export */   \"NonInviteClientTransaction\": () => (/* reexport safe */ _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__.NonInviteClientTransaction),\n/* harmony export */   \"NonInviteServerTransaction\": () => (/* reexport safe */ _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__.NonInviteServerTransaction),\n/* harmony export */   \"NotifyUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.NotifyUserAgentClient),\n/* harmony export */   \"NotifyUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.NotifyUserAgentServer),\n/* harmony export */   \"OutgoingRequestMessage\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.OutgoingRequestMessage),\n/* harmony export */   \"Parameters\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_10__.Parameters),\n/* harmony export */   \"Parser\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.Parser),\n/* harmony export */   \"PrackUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.PrackUserAgentClient),\n/* harmony export */   \"PrackUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.PrackUserAgentServer),\n/* harmony export */   \"PublishUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.PublishUserAgentClient),\n/* harmony export */   \"ReInviteUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.ReInviteUserAgentClient),\n/* harmony export */   \"ReInviteUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.ReInviteUserAgentServer),\n/* harmony export */   \"ReSubscribeUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.ReSubscribeUserAgentClient),\n/* harmony export */   \"ReSubscribeUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.ReSubscribeUserAgentServer),\n/* harmony export */   \"ReferUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.ReferUserAgentClient),\n/* harmony export */   \"ReferUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.ReferUserAgentServer),\n/* harmony export */   \"RegisterUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.RegisterUserAgentClient),\n/* harmony export */   \"RegisterUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.RegisterUserAgentServer),\n/* harmony export */   \"ServerTransaction\": () => (/* reexport safe */ _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__.ServerTransaction),\n/* harmony export */   \"SessionDialog\": () => (/* reexport safe */ _dialogs_index_js__WEBPACK_IMPORTED_MODULE_0__.SessionDialog),\n/* harmony export */   \"SessionState\": () => (/* reexport safe */ _session_index_js__WEBPACK_IMPORTED_MODULE_4__.SessionState),\n/* harmony export */   \"SignalingState\": () => (/* reexport safe */ _session_index_js__WEBPACK_IMPORTED_MODULE_4__.SignalingState),\n/* harmony export */   \"SubscribeUserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.SubscribeUserAgentClient),\n/* harmony export */   \"SubscribeUserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.SubscribeUserAgentServer),\n/* harmony export */   \"SubscriptionDialog\": () => (/* reexport safe */ _dialogs_index_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionDialog),\n/* harmony export */   \"SubscriptionState\": () => (/* reexport safe */ _subscription_index_js__WEBPACK_IMPORTED_MODULE_5__.SubscriptionState),\n/* harmony export */   \"Timers\": () => (/* reexport safe */ _timers_js__WEBPACK_IMPORTED_MODULE_9__.Timers),\n/* harmony export */   \"Transaction\": () => (/* reexport safe */ _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__.Transaction),\n/* harmony export */   \"TransactionState\": () => (/* reexport safe */ _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__.TransactionState),\n/* harmony export */   \"TransactionStateError\": () => (/* reexport safe */ _exceptions_index_js__WEBPACK_IMPORTED_MODULE_1__.TransactionStateError),\n/* harmony export */   \"TransportError\": () => (/* reexport safe */ _exceptions_index_js__WEBPACK_IMPORTED_MODULE_1__.TransportError),\n/* harmony export */   \"URI\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_10__.URI),\n/* harmony export */   \"UserAgentClient\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.UserAgentClient),\n/* harmony export */   \"UserAgentCore\": () => (/* reexport safe */ _user_agent_core_index_js__WEBPACK_IMPORTED_MODULE_7__.UserAgentCore),\n/* harmony export */   \"UserAgentServer\": () => (/* reexport safe */ _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__.UserAgentServer),\n/* harmony export */   \"constructOutgoingResponse\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.constructOutgoingResponse),\n/* harmony export */   \"equivalentURI\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_10__.equivalentURI),\n/* harmony export */   \"fromBodyLegacy\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.fromBodyLegacy),\n/* harmony export */   \"getBody\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.getBody),\n/* harmony export */   \"isBody\": () => (/* reexport safe */ _messages_index_js__WEBPACK_IMPORTED_MODULE_3__.isBody)\n/* harmony export */ });\n/* harmony import */ var _dialogs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(102);\n/* harmony import */ var _exceptions_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(103);\n/* harmony import */ var _log_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(104);\n/* harmony import */ var _messages_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(105);\n/* harmony import */ var _session_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(107);\n/* harmony import */ var _subscription_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(108);\n/* harmony import */ var _transactions_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(109);\n/* harmony import */ var _user_agent_core_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(110);\n/* harmony import */ var _user_agents_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(111);\n/* harmony import */ var _timers_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(37);\n/* harmony import */ var _grammar_index_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(100);\n/**\n * A core library implementing low level SIP protocol elements.\n * @packageDocumentation\n */\n// Directories\n\n\n\n\n\n\n\n\n\n// Files\n\n\n// Grammar\n// TODO:\n// - This is documented as part of the core, but it is also exported by root index.js.\n// - Arguably move grammar to core proper and deprecate the export from the root.\n// - Arguably URI should be a top level export.\n\n\n\n/***/ }),\n/* 102 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Dialog\": () => (/* reexport safe */ _dialog_js__WEBPACK_IMPORTED_MODULE_0__.Dialog),\n/* harmony export */   \"SessionDialog\": () => (/* reexport safe */ _session_dialog_js__WEBPACK_IMPORTED_MODULE_1__.SessionDialog),\n/* harmony export */   \"SubscriptionDialog\": () => (/* reexport safe */ _subscription_dialog_js__WEBPACK_IMPORTED_MODULE_2__.SubscriptionDialog)\n/* harmony export */ });\n/* harmony import */ var _dialog_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(70);\n/* harmony import */ var _session_dialog_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(71);\n/* harmony import */ var _subscription_dialog_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(94);\n\n\n\n\n\n\n/***/ }),\n/* 103 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Exception\": () => (/* reexport safe */ _exception_js__WEBPACK_IMPORTED_MODULE_0__.Exception),\n/* harmony export */   \"TransactionStateError\": () => (/* reexport safe */ _transaction_state_error_js__WEBPACK_IMPORTED_MODULE_1__.TransactionStateError),\n/* harmony export */   \"TransportError\": () => (/* reexport safe */ _transport_error_js__WEBPACK_IMPORTED_MODULE_2__.TransportError)\n/* harmony export */ });\n/* harmony import */ var _exception_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);\n/* harmony import */ var _transaction_state_error_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(36);\n/* harmony import */ var _transport_error_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(68);\n\n\n\n\n\n/***/ }),\n/* 104 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Levels\": () => (/* reexport safe */ _levels_js__WEBPACK_IMPORTED_MODULE_0__.Levels),\n/* harmony export */   \"Logger\": () => (/* reexport safe */ _logger_js__WEBPACK_IMPORTED_MODULE_2__.Logger),\n/* harmony export */   \"LoggerFactory\": () => (/* reexport safe */ _logger_factory_js__WEBPACK_IMPORTED_MODULE_1__.LoggerFactory)\n/* harmony export */ });\n/* harmony import */ var _levels_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(52);\n/* harmony import */ var _logger_factory_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(51);\n/* harmony import */ var _logger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(53);\n\n\n\n\n\n/***/ }),\n/* 105 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"C\": () => (/* reexport safe */ _methods_index_js__WEBPACK_IMPORTED_MODULE_0__.C),\n/* harmony export */   \"DigestAuthentication\": () => (/* reexport safe */ _digest_authentication_js__WEBPACK_IMPORTED_MODULE_2__.DigestAuthentication),\n/* harmony export */   \"IncomingMessage\": () => (/* reexport safe */ _incoming_message_js__WEBPACK_IMPORTED_MODULE_3__.IncomingMessage),\n/* harmony export */   \"IncomingRequestMessage\": () => (/* reexport safe */ _incoming_request_message_js__WEBPACK_IMPORTED_MODULE_4__.IncomingRequestMessage),\n/* harmony export */   \"IncomingResponseMessage\": () => (/* reexport safe */ _incoming_response_message_js__WEBPACK_IMPORTED_MODULE_5__.IncomingResponseMessage),\n/* harmony export */   \"OutgoingRequestMessage\": () => (/* reexport safe */ _outgoing_request_message_js__WEBPACK_IMPORTED_MODULE_6__.OutgoingRequestMessage),\n/* harmony export */   \"Parser\": () => (/* reexport safe */ _parser_js__WEBPACK_IMPORTED_MODULE_8__.Parser),\n/* harmony export */   \"constructOutgoingResponse\": () => (/* reexport safe */ _outgoing_response_js__WEBPACK_IMPORTED_MODULE_7__.constructOutgoingResponse),\n/* harmony export */   \"fromBodyLegacy\": () => (/* reexport safe */ _body_js__WEBPACK_IMPORTED_MODULE_1__.fromBodyLegacy),\n/* harmony export */   \"getBody\": () => (/* reexport safe */ _body_js__WEBPACK_IMPORTED_MODULE_1__.getBody),\n/* harmony export */   \"isBody\": () => (/* reexport safe */ _body_js__WEBPACK_IMPORTED_MODULE_1__.isBody)\n/* harmony export */ });\n/* harmony import */ var _methods_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(106);\n/* harmony import */ var _body_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18);\n/* harmony import */ var _digest_authentication_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(59);\n/* harmony import */ var _incoming_message_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(20);\n/* harmony import */ var _incoming_request_message_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(19);\n/* harmony import */ var _incoming_response_message_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(27);\n/* harmony import */ var _outgoing_request_message_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(28);\n/* harmony import */ var _outgoing_response_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(84);\n/* harmony import */ var _parser_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(99);\n// Directories\n\n// Files\n\n\n\n\n\n\n\n\n\n\n\n\n\n/***/ }),\n/* 106 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"C\": () => (/* reexport safe */ _constants_js__WEBPACK_IMPORTED_MODULE_0__.C)\n/* harmony export */ });\n/* harmony import */ var _constants_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(30);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/***/ }),\n/* 107 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionState\": () => (/* reexport safe */ _session_js__WEBPACK_IMPORTED_MODULE_0__.SessionState),\n/* harmony export */   \"SignalingState\": () => (/* reexport safe */ _session_js__WEBPACK_IMPORTED_MODULE_0__.SignalingState)\n/* harmony export */ });\n/* harmony import */ var _session_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);\n\n\n\n\n/***/ }),\n/* 108 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SubscriptionState\": () => (/* reexport safe */ _subscription_js__WEBPACK_IMPORTED_MODULE_0__.SubscriptionState)\n/* harmony export */ });\n/* harmony import */ var _subscription_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(47);\n\n\n\n\n/***/ }),\n/* 109 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ClientTransaction\": () => (/* reexport safe */ _client_transaction_js__WEBPACK_IMPORTED_MODULE_0__.ClientTransaction),\n/* harmony export */   \"InviteClientTransaction\": () => (/* reexport safe */ _invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.InviteClientTransaction),\n/* harmony export */   \"InviteServerTransaction\": () => (/* reexport safe */ _invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__.InviteServerTransaction),\n/* harmony export */   \"NonInviteClientTransaction\": () => (/* reexport safe */ _non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_3__.NonInviteClientTransaction),\n/* harmony export */   \"NonInviteServerTransaction\": () => (/* reexport safe */ _non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_4__.NonInviteServerTransaction),\n/* harmony export */   \"ServerTransaction\": () => (/* reexport safe */ _server_transaction_js__WEBPACK_IMPORTED_MODULE_5__.ServerTransaction),\n/* harmony export */   \"Transaction\": () => (/* reexport safe */ _transaction_js__WEBPACK_IMPORTED_MODULE_7__.Transaction),\n/* harmony export */   \"TransactionState\": () => (/* reexport safe */ _transaction_state_js__WEBPACK_IMPORTED_MODULE_6__.TransactionState)\n/* harmony export */ });\n/* harmony import */ var _client_transaction_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(66);\n/* harmony import */ var _invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(69);\n/* harmony import */ var _invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(72);\n/* harmony import */ var _non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(65);\n/* harmony import */ var _non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(83);\n/* harmony import */ var _server_transaction_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(73);\n/* harmony import */ var _transaction_state_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(64);\n/* harmony import */ var _transaction_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(67);\n\n\n\n\n\n\n\n\n\n\n\n\n/***/ }),\n/* 110 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"UserAgentCore\": () => (/* reexport safe */ _user_agent_core_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentCore)\n/* harmony export */ });\n/* harmony import */ var _user_agent_core_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(61);\n\n\n\n\n\n/***/ }),\n/* 111 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ByeUserAgentClient\": () => (/* reexport safe */ _bye_user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.ByeUserAgentClient),\n/* harmony export */   \"ByeUserAgentServer\": () => (/* reexport safe */ _bye_user_agent_server_js__WEBPACK_IMPORTED_MODULE_1__.ByeUserAgentServer),\n/* harmony export */   \"CancelUserAgentClient\": () => (/* reexport safe */ _cancel_user_agent_client_js__WEBPACK_IMPORTED_MODULE_2__.CancelUserAgentClient),\n/* harmony export */   \"InfoUserAgentClient\": () => (/* reexport safe */ _info_user_agent_client_js__WEBPACK_IMPORTED_MODULE_3__.InfoUserAgentClient),\n/* harmony export */   \"InfoUserAgentServer\": () => (/* reexport safe */ _info_user_agent_server_js__WEBPACK_IMPORTED_MODULE_4__.InfoUserAgentServer),\n/* harmony export */   \"InviteUserAgentClient\": () => (/* reexport safe */ _invite_user_agent_client_js__WEBPACK_IMPORTED_MODULE_5__.InviteUserAgentClient),\n/* harmony export */   \"InviteUserAgentServer\": () => (/* reexport safe */ _invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_6__.InviteUserAgentServer),\n/* harmony export */   \"MessageUserAgentClient\": () => (/* reexport safe */ _message_user_agent_client_js__WEBPACK_IMPORTED_MODULE_7__.MessageUserAgentClient),\n/* harmony export */   \"MessageUserAgentServer\": () => (/* reexport safe */ _message_user_agent_server_js__WEBPACK_IMPORTED_MODULE_8__.MessageUserAgentServer),\n/* harmony export */   \"NotifyUserAgentClient\": () => (/* reexport safe */ _notify_user_agent_client_js__WEBPACK_IMPORTED_MODULE_9__.NotifyUserAgentClient),\n/* harmony export */   \"NotifyUserAgentServer\": () => (/* reexport safe */ _notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_10__.NotifyUserAgentServer),\n/* harmony export */   \"PrackUserAgentClient\": () => (/* reexport safe */ _prack_user_agent_client_js__WEBPACK_IMPORTED_MODULE_12__.PrackUserAgentClient),\n/* harmony export */   \"PrackUserAgentServer\": () => (/* reexport safe */ _prack_user_agent_server_js__WEBPACK_IMPORTED_MODULE_13__.PrackUserAgentServer),\n/* harmony export */   \"PublishUserAgentClient\": () => (/* reexport safe */ _publish_user_agent_client_js__WEBPACK_IMPORTED_MODULE_11__.PublishUserAgentClient),\n/* harmony export */   \"ReInviteUserAgentClient\": () => (/* reexport safe */ _re_invite_user_agent_client_js__WEBPACK_IMPORTED_MODULE_14__.ReInviteUserAgentClient),\n/* harmony export */   \"ReInviteUserAgentServer\": () => (/* reexport safe */ _re_invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_15__.ReInviteUserAgentServer),\n/* harmony export */   \"ReSubscribeUserAgentClient\": () => (/* reexport safe */ _re_subscribe_user_agent_client_js__WEBPACK_IMPORTED_MODULE_16__.ReSubscribeUserAgentClient),\n/* harmony export */   \"ReSubscribeUserAgentServer\": () => (/* reexport safe */ _re_subscribe_user_agent_server_js__WEBPACK_IMPORTED_MODULE_17__.ReSubscribeUserAgentServer),\n/* harmony export */   \"ReferUserAgentClient\": () => (/* reexport safe */ _refer_user_agent_client_js__WEBPACK_IMPORTED_MODULE_18__.ReferUserAgentClient),\n/* harmony export */   \"ReferUserAgentServer\": () => (/* reexport safe */ _refer_user_agent_server_js__WEBPACK_IMPORTED_MODULE_19__.ReferUserAgentServer),\n/* harmony export */   \"RegisterUserAgentClient\": () => (/* reexport safe */ _register_user_agent_client_js__WEBPACK_IMPORTED_MODULE_20__.RegisterUserAgentClient),\n/* harmony export */   \"RegisterUserAgentServer\": () => (/* reexport safe */ _register_user_agent_server_js__WEBPACK_IMPORTED_MODULE_21__.RegisterUserAgentServer),\n/* harmony export */   \"SubscribeUserAgentClient\": () => (/* reexport safe */ _subscribe_user_agent_client_js__WEBPACK_IMPORTED_MODULE_22__.SubscribeUserAgentClient),\n/* harmony export */   \"SubscribeUserAgentServer\": () => (/* reexport safe */ _subscribe_user_agent_server_js__WEBPACK_IMPORTED_MODULE_23__.SubscribeUserAgentServer),\n/* harmony export */   \"UserAgentClient\": () => (/* reexport safe */ _user_agent_client_js__WEBPACK_IMPORTED_MODULE_24__.UserAgentClient),\n/* harmony export */   \"UserAgentServer\": () => (/* reexport safe */ _user_agent_server_js__WEBPACK_IMPORTED_MODULE_25__.UserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _bye_user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(74);\n/* harmony import */ var _bye_user_agent_server_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(81);\n/* harmony import */ var _cancel_user_agent_client_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(112);\n/* harmony import */ var _info_user_agent_client_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(75);\n/* harmony import */ var _info_user_agent_server_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(85);\n/* harmony import */ var _invite_user_agent_client_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(62);\n/* harmony import */ var _invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(96);\n/* harmony import */ var _message_user_agent_client_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(77);\n/* harmony import */ var _message_user_agent_server_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(87);\n/* harmony import */ var _notify_user_agent_client_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(78);\n/* harmony import */ var _notify_user_agent_server_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(88);\n/* harmony import */ var _publish_user_agent_client_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(91);\n/* harmony import */ var _prack_user_agent_client_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(79);\n/* harmony import */ var _prack_user_agent_server_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(89);\n/* harmony import */ var _re_invite_user_agent_client_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(76);\n/* harmony import */ var _re_invite_user_agent_server_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(86);\n/* harmony import */ var _re_subscribe_user_agent_client_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(95);\n/* harmony import */ var _re_subscribe_user_agent_server_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(113);\n/* harmony import */ var _refer_user_agent_client_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(80);\n/* harmony import */ var _refer_user_agent_server_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(90);\n/* harmony import */ var _register_user_agent_client_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(92);\n/* harmony import */ var _register_user_agent_server_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(97);\n/* harmony import */ var _subscribe_user_agent_client_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(93);\n/* harmony import */ var _subscribe_user_agent_server_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(98);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(63);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(82);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/***/ }),\n/* 112 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"CancelUserAgentClient\": () => (/* binding */ CancelUserAgentClient)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(65);\n/* harmony import */ var _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(63);\n\n\n/**\n * CANCEL UAC.\n * @public\n */\nclass CancelUserAgentClient extends _user_agent_client_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentClient {\n    constructor(core, message, delegate) {\n        super(_transactions_non_invite_client_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteClientTransaction, core, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 113 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"ReSubscribeUserAgentServer\": () => (/* binding */ ReSubscribeUserAgentServer)\n/* harmony export */ });\n/* harmony import */ var _transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);\n/* harmony import */ var _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(82);\n\n\n/**\n * Re-SUBSCRIBE UAS.\n * @public\n */\nclass ReSubscribeUserAgentServer extends _user_agent_server_js__WEBPACK_IMPORTED_MODULE_0__.UserAgentServer {\n    constructor(dialog, message, delegate) {\n        super(_transactions_non_invite_server_transaction_js__WEBPACK_IMPORTED_MODULE_1__.NonInviteServerTransaction, dialog.userAgentCore, message, delegate);\n    }\n}\n\n\n/***/ }),\n/* 114 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionDescriptionHandler\": () => (/* reexport safe */ _session_description_handler_index_js__WEBPACK_IMPORTED_MODULE_1__.SessionDescriptionHandler),\n/* harmony export */   \"SessionManager\": () => (/* reexport safe */ _session_manager_index_js__WEBPACK_IMPORTED_MODULE_2__.SessionManager),\n/* harmony export */   \"SimpleUser\": () => (/* reexport safe */ _simple_user_index_js__WEBPACK_IMPORTED_MODULE_3__.SimpleUser),\n/* harmony export */   \"Transport\": () => (/* reexport safe */ _transport_index_js__WEBPACK_IMPORTED_MODULE_4__.Transport),\n/* harmony export */   \"WebAudioSessionDescriptionHandler\": () => (/* reexport safe */ _session_description_handler_index_js__WEBPACK_IMPORTED_MODULE_1__.WebAudioSessionDescriptionHandler),\n/* harmony export */   \"addMidLines\": () => (/* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__.addMidLines),\n/* harmony export */   \"cleanJitsiSdpImageattr\": () => (/* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__.cleanJitsiSdpImageattr),\n/* harmony export */   \"defaultManagedSessionFactory\": () => (/* reexport safe */ _session_manager_index_js__WEBPACK_IMPORTED_MODULE_2__.defaultManagedSessionFactory),\n/* harmony export */   \"defaultMediaStreamFactory\": () => (/* reexport safe */ _session_description_handler_index_js__WEBPACK_IMPORTED_MODULE_1__.defaultMediaStreamFactory),\n/* harmony export */   \"defaultPeerConnectionConfiguration\": () => (/* reexport safe */ _session_description_handler_index_js__WEBPACK_IMPORTED_MODULE_1__.defaultPeerConnectionConfiguration),\n/* harmony export */   \"defaultSessionDescriptionHandlerFactory\": () => (/* reexport safe */ _session_description_handler_index_js__WEBPACK_IMPORTED_MODULE_1__.defaultSessionDescriptionHandlerFactory),\n/* harmony export */   \"holdModifier\": () => (/* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__.holdModifier),\n/* harmony export */   \"startLocalConference\": () => (/* reexport safe */ _session_description_handler_index_js__WEBPACK_IMPORTED_MODULE_1__.startLocalConference),\n/* harmony export */   \"stripG722\": () => (/* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__.stripG722),\n/* harmony export */   \"stripRtpPayload\": () => (/* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__.stripRtpPayload),\n/* harmony export */   \"stripTcpCandidates\": () => (/* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__.stripTcpCandidates),\n/* harmony export */   \"stripTelephoneEvent\": () => (/* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__.stripTelephoneEvent),\n/* harmony export */   \"stripVideo\": () => (/* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__.stripVideo)\n/* harmony export */ });\n/* harmony import */ var _modifiers_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(115);\n/* harmony import */ var _session_description_handler_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(117);\n/* harmony import */ var _session_manager_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(119);\n/* harmony import */ var _simple_user_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(122);\n/* harmony import */ var _transport_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(124);\n\n\n\n\n\n\n\n/***/ }),\n/* 115 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"addMidLines\": () => (/* reexport safe */ _modifiers_js__WEBPACK_IMPORTED_MODULE_0__.addMidLines),\n/* harmony export */   \"cleanJitsiSdpImageattr\": () => (/* reexport safe */ _modifiers_js__WEBPACK_IMPORTED_MODULE_0__.cleanJitsiSdpImageattr),\n/* harmony export */   \"holdModifier\": () => (/* reexport safe */ _modifiers_js__WEBPACK_IMPORTED_MODULE_0__.holdModifier),\n/* harmony export */   \"stripG722\": () => (/* reexport safe */ _modifiers_js__WEBPACK_IMPORTED_MODULE_0__.stripG722),\n/* harmony export */   \"stripRtpPayload\": () => (/* reexport safe */ _modifiers_js__WEBPACK_IMPORTED_MODULE_0__.stripRtpPayload),\n/* harmony export */   \"stripTcpCandidates\": () => (/* reexport safe */ _modifiers_js__WEBPACK_IMPORTED_MODULE_0__.stripTcpCandidates),\n/* harmony export */   \"stripTelephoneEvent\": () => (/* reexport safe */ _modifiers_js__WEBPACK_IMPORTED_MODULE_0__.stripTelephoneEvent),\n/* harmony export */   \"stripVideo\": () => (/* reexport safe */ _modifiers_js__WEBPACK_IMPORTED_MODULE_0__.stripVideo)\n/* harmony export */ });\n/* harmony import */ var _modifiers_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(116);\n/**\n * SessionDescriptionHandlerModifer functions for web browsers.\n * @packageDocumentation\n */\n\n\n\n/***/ }),\n/* 116 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"addMidLines\": () => (/* binding */ addMidLines),\n/* harmony export */   \"cleanJitsiSdpImageattr\": () => (/* binding */ cleanJitsiSdpImageattr),\n/* harmony export */   \"holdModifier\": () => (/* binding */ holdModifier),\n/* harmony export */   \"stripG722\": () => (/* binding */ stripG722),\n/* harmony export */   \"stripRtpPayload\": () => (/* binding */ stripRtpPayload),\n/* harmony export */   \"stripTcpCandidates\": () => (/* binding */ stripTcpCandidates),\n/* harmony export */   \"stripTelephoneEvent\": () => (/* binding */ stripTelephoneEvent),\n/* harmony export */   \"stripVideo\": () => (/* binding */ stripVideo)\n/* harmony export */ });\nconst stripPayload = (sdp, payload) => {\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    const mediaDescs = [];\n    const lines = sdp.split(/\\r\\n/);\n    // eslint-disable-next-line @typescript-eslint/no-explicit-any\n    let currentMediaDesc;\n    for (let i = 0; i < lines.length;) {\n        const line = lines[i];\n        if (/^m=(?:audio|video)/.test(line)) {\n            currentMediaDesc = {\n                index: i,\n                stripped: []\n            };\n            mediaDescs.push(currentMediaDesc);\n        }\n        else if (currentMediaDesc) {\n            const rtpmap = /^a=rtpmap:(\\d+) ([^/]+)\\//.exec(line);\n            if (rtpmap && payload === rtpmap[2]) {\n                lines.splice(i, 1);\n                currentMediaDesc.stripped.push(rtpmap[1]);\n                continue; // Don't increment 'i'\n            }\n        }\n        i++;\n    }\n    for (const mediaDesc of mediaDescs) {\n        const mline = lines[mediaDesc.index].split(\" \");\n        // Ignore the first 3 parameters of the mline. The codec information is after that\n        for (let j = 3; j < mline.length;) {\n            if (mediaDesc.stripped.indexOf(mline[j]) !== -1) {\n                mline.splice(j, 1);\n                continue;\n            }\n            j++;\n        }\n        lines[mediaDesc.index] = mline.join(\" \");\n    }\n    return lines.join(\"\\r\\n\");\n};\nconst stripMediaDescription = (sdp, description) => {\n    const descriptionRegExp = new RegExp(\"m=\" + description + \".*$\", \"gm\");\n    const groupRegExp = new RegExp(\"^a=group:.*$\", \"gm\");\n    if (descriptionRegExp.test(sdp)) {\n        let midLineToRemove;\n        sdp = sdp.split(/^m=/gm).filter((section) => {\n            if (section.substr(0, description.length) === description) {\n                midLineToRemove = section.match(/^a=mid:.*$/gm);\n                if (midLineToRemove) {\n                    const step = midLineToRemove[0].match(/:.+$/g);\n                    if (step) {\n                        midLineToRemove = step[0].substr(1);\n                    }\n                }\n                return false;\n            }\n            return true;\n        }).join(\"m=\");\n        const groupLine = sdp.match(groupRegExp);\n        if (groupLine && groupLine.length === 1) {\n            let groupLinePortion = groupLine[0];\n            // eslint-disable-next-line no-useless-escape\n            const groupRegExpReplace = new RegExp(\"\\ *\" + midLineToRemove + \"[^\\ ]*\", \"g\");\n            groupLinePortion = groupLinePortion.replace(groupRegExpReplace, \"\");\n            sdp = sdp.split(groupRegExp).join(groupLinePortion);\n        }\n    }\n    return sdp;\n};\n/**\n * Modifier.\n * @public\n */\nfunction stripTcpCandidates(description) {\n    description.sdp = (description.sdp || \"\").replace(/^a=candidate:\\d+ \\d+ tcp .*?\\r\\n/img, \"\");\n    return Promise.resolve(description);\n}\n/**\n * Modifier.\n * @public\n */\nfunction stripTelephoneEvent(description) {\n    description.sdp = stripPayload(description.sdp || \"\", \"telephone-event\");\n    return Promise.resolve(description);\n}\n/**\n * Modifier.\n * @public\n */\nfunction cleanJitsiSdpImageattr(description) {\n    description.sdp = (description.sdp || \"\").replace(/^(a=imageattr:.*?)(x|y)=\\[0-/gm, \"$1$2=[1:\");\n    return Promise.resolve(description);\n}\n/**\n * Modifier.\n * @public\n */\nfunction stripG722(description) {\n    description.sdp = stripPayload(description.sdp || \"\", \"G722\");\n    return Promise.resolve(description);\n}\n/**\n * Modifier.\n * @public\n */\nfunction stripRtpPayload(payload) {\n    return (description) => {\n        description.sdp = stripPayload(description.sdp || \"\", payload);\n        return Promise.resolve(description);\n    };\n}\n/**\n * Modifier.\n * @public\n */\nfunction stripVideo(description) {\n    description.sdp = stripMediaDescription(description.sdp || \"\", \"video\");\n    return Promise.resolve(description);\n}\n/**\n * Modifier.\n * @public\n */\nfunction addMidLines(description) {\n    let sdp = description.sdp || \"\";\n    if (sdp.search(/^a=mid.*$/gm) === -1) {\n        const mlines = sdp.match(/^m=.*$/gm);\n        const sdpArray = sdp.split(/^m=.*$/gm);\n        if (mlines) {\n            mlines.forEach((elem, idx) => {\n                mlines[idx] = elem + \"\\na=mid:\" + idx;\n            });\n        }\n        sdpArray.forEach((elem, idx) => {\n            if (mlines && mlines[idx]) {\n                sdpArray[idx] = elem + mlines[idx];\n            }\n        });\n        sdp = sdpArray.join(\"\");\n        description.sdp = sdp;\n    }\n    return Promise.resolve(description);\n}\n/**\n * The modifier that should be used when the session would like to place the call on hold.\n * @param description - The description that will be modified.\n */\nfunction holdModifier(description) {\n    if (!description.sdp || !description.type) {\n        throw new Error(\"Invalid SDP\");\n    }\n    let sdp = description.sdp;\n    const type = description.type;\n    if (sdp) {\n        if (!/a=(sendrecv|sendonly|recvonly|inactive)/.test(sdp)) {\n            sdp = sdp.replace(/(m=[^\\r]*\\r\\n)/g, \"$1a=sendonly\\r\\n\");\n        }\n        else {\n            sdp = sdp.replace(/a=sendrecv\\r\\n/g, \"a=sendonly\\r\\n\");\n            sdp = sdp.replace(/a=recvonly\\r\\n/g, \"a=inactive\\r\\n\");\n        }\n    }\n    return Promise.resolve({ sdp, type });\n}\n\n\n/***/ }),\n/* 117 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionDescriptionHandler\": () => (/* reexport safe */ _session_description_handler_js__WEBPACK_IMPORTED_MODULE_3__.SessionDescriptionHandler),\n/* harmony export */   \"WebAudioSessionDescriptionHandler\": () => (/* reexport safe */ _web_audio_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__.WebAudioSessionDescriptionHandler),\n/* harmony export */   \"defaultMediaStreamFactory\": () => (/* reexport safe */ _media_stream_factory_default_js__WEBPACK_IMPORTED_MODULE_0__.defaultMediaStreamFactory),\n/* harmony export */   \"defaultPeerConnectionConfiguration\": () => (/* reexport safe */ _peer_connection_configuration_default_js__WEBPACK_IMPORTED_MODULE_1__.defaultPeerConnectionConfiguration),\n/* harmony export */   \"defaultSessionDescriptionHandlerFactory\": () => (/* reexport safe */ _session_description_handler_factory_default_js__WEBPACK_IMPORTED_MODULE_2__.defaultSessionDescriptionHandlerFactory),\n/* harmony export */   \"startLocalConference\": () => (/* reexport safe */ _web_audio_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__.startLocalConference)\n/* harmony export */ });\n/* harmony import */ var _media_stream_factory_default_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(55);\n/* harmony import */ var _peer_connection_configuration_default_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(56);\n/* harmony import */ var _session_description_handler_factory_default_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);\n/* harmony import */ var _session_description_handler_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(57);\n/* harmony import */ var _web_audio_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(118);\n/**\n * A SessionDescriptionHandler for web browsers.\n * @packageDocumentation\n */\n\n\n\n\n\n\n\n\n\n\n\n\n\n/***/ }),\n/* 118 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"WebAudioSessionDescriptionHandler\": () => (/* binding */ WebAudioSessionDescriptionHandler),\n/* harmony export */   \"startLocalConference\": () => (/* binding */ startLocalConference)\n/* harmony export */ });\n/* harmony import */ var _session_description_handler_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(57);\n\n/**\n * Start a conference.\n * @param conferenceSessions - The sessions to conference.\n *\n * @beta\n */\nfunction startLocalConference(conferenceSessions) {\n    if (conferenceSessions.length < 2) {\n        throw new Error(\"Start local conference requires at leaast 2 sessions.\");\n    }\n    // Return all possible pairs of elements in an array.\n    const pairs = (arr) => arr.map((v, i) => arr.slice(i + 1).map((w) => [v, w])).reduce((acc, curVal) => acc.concat(curVal), []);\n    // For each pair of sessions making up the conference, join their media together.\n    // A session desciprion handler manages the media, streams and tracks for a session.\n    pairs(conferenceSessions.map((session) => session.sessionDescriptionHandler)).forEach(([sdh0, sdh1]) => {\n        if (!(sdh0 instanceof WebAudioSessionDescriptionHandler && sdh1 instanceof WebAudioSessionDescriptionHandler)) {\n            throw new Error(\"Session description handler not instance of SessionManagerSessionDescriptionHandler\");\n        }\n        sdh0.joinWith(sdh1);\n    });\n}\n/**\n * A WebAudioSessionDescriptionHandler uses the Web Audio API to enable local conferencing of audio streams.\n * @remarks\n * This handler only works for one track of audio per peer connection. While the session description handler\n * being extended supports both audio and video, attempting to utilize video with this handler is not defined.\n *\n * @beta\n */\nclass WebAudioSessionDescriptionHandler extends _session_description_handler_js__WEBPACK_IMPORTED_MODULE_0__.SessionDescriptionHandler {\n    constructor(logger, mediaStreamFactory, sessionDescriptionHandlerConfiguration) {\n        super(logger, mediaStreamFactory, sessionDescriptionHandlerConfiguration);\n        if (!WebAudioSessionDescriptionHandler.audioContext) {\n            WebAudioSessionDescriptionHandler.audioContext = new AudioContext();\n        }\n    }\n    /**\n     * Helper function to enable/disable media tracks.\n     * @param enable - If true enable tracks.\n     */\n    enableSenderTracks(enable) {\n        // This session decription handler is not using the original outbound (local) media stream source\n        // and has instead inserted a Web Audio proxy media stream to allow conferencing and mixing of stream.\n        // So here, we only want to mute the original source and not the proxy as it may be mixing other\n        // sources into the outbound stream and we do not want to enable/disable those. We only want to\n        // enable/disable the original stream source so that it's media gets muted/unmuted going to the proxy.\n        const stream = this.localMediaStreamReal;\n        if (stream === undefined) {\n            throw new Error(\"Stream undefined.\");\n        }\n        stream.getAudioTracks().forEach((track) => {\n            track.enabled = enable;\n        });\n    }\n    /**\n     * Returns a WebRTC MediaStream proxying the provided audio media stream.\n     * This allows additional Web Audio media stream source nodes to be connected\n     * to the destination node assoicated with the returned stream so we can mix\n     * aditional audio sorces into the local media stream (ie for 3-way conferencing).\n     * @param stream - The MediaStream to proxy.\n     */\n    initLocalMediaStream(stream) {\n        if (!WebAudioSessionDescriptionHandler.audioContext) {\n            throw new Error(\"SessionManagerSessionDescriptionHandler.audioContext undefined.\");\n        }\n        this.localMediaStreamReal = stream;\n        this.localMediaStreamSourceNode = WebAudioSessionDescriptionHandler.audioContext.createMediaStreamSource(stream);\n        this.localMediaStreamDestinationNode =\n            WebAudioSessionDescriptionHandler.audioContext.createMediaStreamDestination();\n        this.localMediaStreamSourceNode.connect(this.localMediaStreamDestinationNode);\n        return this.localMediaStreamDestinationNode.stream;\n    }\n    /**\n     * Join (conference) media streams with another party.\n     * @param peer - The session description handler of the peer to join with.\n     */\n    joinWith(peer) {\n        if (!WebAudioSessionDescriptionHandler.audioContext) {\n            throw new Error(\"SessionManagerSessionDescriptionHandler.audioContext undefined.\");\n        }\n        // Mix our inbound (remote) stream into the peer's outbound (local) streams.\n        const ourNewInboundStreamSource = WebAudioSessionDescriptionHandler.audioContext.createMediaStreamSource(this.remoteMediaStream);\n        const peerOutboundStreamDestination = peer.localMediaStreamDestinationNode;\n        if (peerOutboundStreamDestination === undefined) {\n            throw new Error(\"Peer outbound (local) stream local media stream destination is undefined.\");\n        }\n        ourNewInboundStreamSource.connect(peerOutboundStreamDestination);\n        // Mix the peer's inbound (remote) streams into our outbound (local) stream.\n        const peerNewInboundStreamSource = WebAudioSessionDescriptionHandler.audioContext.createMediaStreamSource(peer.remoteMediaStream);\n        const ourOutboundStreamDestination = this.localMediaStreamDestinationNode;\n        if (ourOutboundStreamDestination === undefined) {\n            throw new Error(\"Our outbound (local) stream local media stream destination is undefined.\");\n        }\n        peerNewInboundStreamSource.connect(ourOutboundStreamDestination);\n    }\n    /**\n     * Sets the original local media stream.\n     * @param stream - Media stream containing tracks to be utilized.\n     * @remarks\n     * Only the first audio and video tracks of the provided MediaStream are utilized.\n     * Adds tracks if audio and/or video tracks are not already present, otherwise replaces tracks.\n     */\n    setRealLocalMediaStream(stream) {\n        if (!WebAudioSessionDescriptionHandler.audioContext) {\n            throw new Error(\"SessionManagerSessionDescriptionHandler.audioContext undefined.\");\n        }\n        if (!this.localMediaStreamReal) {\n            this.initLocalMediaStream(stream);\n            return;\n        }\n        if (!this.localMediaStreamDestinationNode || !this.localMediaStreamSourceNode || !this.localMediaStreamReal) {\n            throw new Error(\"Local media stream undefined.\");\n        }\n        this.localMediaStreamReal = stream;\n        this.localMediaStreamSourceNode.disconnect(this.localMediaStreamDestinationNode);\n        this.localMediaStreamSourceNode = WebAudioSessionDescriptionHandler.audioContext.createMediaStreamSource(stream);\n        this.localMediaStreamSourceNode.connect(this.localMediaStreamDestinationNode);\n    }\n}\n\n\n/***/ }),\n/* 119 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionManager\": () => (/* reexport safe */ _session_manager_js__WEBPACK_IMPORTED_MODULE_1__.SessionManager),\n/* harmony export */   \"defaultManagedSessionFactory\": () => (/* reexport safe */ _managed_session_factory_default_js__WEBPACK_IMPORTED_MODULE_0__.defaultManagedSessionFactory)\n/* harmony export */ });\n/* harmony import */ var _managed_session_factory_default_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(120);\n/* harmony import */ var _session_manager_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(121);\n\n\n\n\n\n\n\n\n/***/ }),\n/* 120 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"defaultManagedSessionFactory\": () => (/* binding */ defaultManagedSessionFactory)\n/* harmony export */ });\n/**\n * Function which returns a ManagedSessionFactory.\n * @public\n */\nfunction defaultManagedSessionFactory() {\n    return (sessionManager, session) => {\n        return { session, held: false, muted: false };\n    };\n}\n\n\n/***/ }),\n/* 121 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SessionManager\": () => (/* binding */ SessionManager)\n/* harmony export */ });\n/* harmony import */ var _api_invitation_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(15);\n/* harmony import */ var _api_inviter_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(38);\n/* harmony import */ var _api_messager_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(39);\n/* harmony import */ var _api_registerer_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(43);\n/* harmony import */ var _api_registerer_state_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(42);\n/* harmony import */ var _api_exceptions_request_pending_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(6);\n/* harmony import */ var _api_session_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(16);\n/* harmony import */ var _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(17);\n/* harmony import */ var _api_user_agent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(50);\n/* harmony import */ var _api_user_agent_state_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(49);\n/* harmony import */ var _session_description_handler_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(57);\n/* harmony import */ var _transport_transport_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(58);\n/* harmony import */ var _managed_session_factory_default_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(120);\n\n\n\n\n\n\n\n\n\n\n\n\n\n/**\n * A session manager for SIP.js sessions.\n * @public\n */\nclass SessionManager {\n    /**\n     * Constructs a new instance of the `SessionManager` class.\n     * @param server - SIP WebSocket Server URL.\n     * @param options - Options bucket. See {@link SessionManagerOptions} for details.\n     */\n    constructor(server, options = {}) {\n        /** Sessions being managed. */\n        this.managedSessions = [];\n        this.attemptingReconnection = false;\n        this.optionsPingFailure = false;\n        this.optionsPingRunning = false;\n        this.shouldBeConnected = false;\n        this.shouldBeRegistered = false;\n        // Delegate\n        this.delegate = options.delegate;\n        // Copy options\n        this.options = Object.assign({\n            aor: \"\",\n            autoStop: true,\n            delegate: {},\n            iceStopWaitingOnServerReflexive: false,\n            managedSessionFactory: (0,_managed_session_factory_default_js__WEBPACK_IMPORTED_MODULE_0__.defaultManagedSessionFactory)(),\n            maxSimultaneousSessions: 2,\n            media: {},\n            optionsPingInterval: -1,\n            optionsPingRequestURI: \"\",\n            reconnectionAttempts: 3,\n            reconnectionDelay: 4,\n            registrationRetry: false,\n            registrationRetryInterval: 3,\n            registerGuard: null,\n            registererOptions: {},\n            registererRegisterOptions: {},\n            sendDTMFUsingSessionDescriptionHandler: false,\n            userAgentOptions: {}\n        }, SessionManager.stripUndefinedProperties(options));\n        // UserAgentOptions\n        const userAgentOptions = Object.assign({}, options.userAgentOptions);\n        // Transport\n        if (!userAgentOptions.transportConstructor) {\n            userAgentOptions.transportConstructor = _transport_transport_js__WEBPACK_IMPORTED_MODULE_1__.Transport;\n        }\n        // TransportOptions\n        if (!userAgentOptions.transportOptions) {\n            userAgentOptions.transportOptions = {\n                server\n            };\n        }\n        // URI\n        if (!userAgentOptions.uri) {\n            // If an AOR was provided, convert it to a URI\n            if (options.aor) {\n                const uri = _api_user_agent_js__WEBPACK_IMPORTED_MODULE_2__.UserAgent.makeURI(options.aor);\n                if (!uri) {\n                    throw new Error(`Failed to create valid URI from ${options.aor}`);\n                }\n                userAgentOptions.uri = uri;\n            }\n        }\n        // UserAgent\n        this.userAgent = new _api_user_agent_js__WEBPACK_IMPORTED_MODULE_2__.UserAgent(userAgentOptions);\n        // UserAgent's delegate\n        this.userAgent.delegate = {\n            // Handle connection with server established\n            onConnect: () => {\n                this.logger.log(`Connected`);\n                if (this.delegate && this.delegate.onServerConnect) {\n                    this.delegate.onServerConnect();\n                }\n                // Attempt to register if we are supposed to be registered\n                if (this.shouldBeRegistered) {\n                    this.register();\n                }\n                // Start OPTIONS pings if we are to be pinging\n                if (this.options.optionsPingInterval > 0) {\n                    this.optionsPingStart();\n                }\n            },\n            // Handle connection with server lost\n            onDisconnect: async (error) => {\n                this.logger.log(`Disconnected`);\n                // Stop OPTIONS ping if need be.\n                let optionsPingFailure = false;\n                if (this.options.optionsPingInterval > 0) {\n                    optionsPingFailure = this.optionsPingFailure;\n                    this.optionsPingFailure = false;\n                    this.optionsPingStop();\n                }\n                // Let delgate know we have disconnected\n                if (this.delegate && this.delegate.onServerDisconnect) {\n                    this.delegate.onServerDisconnect(error);\n                }\n                // If the user called `disconnect` a graceful cleanup will be done therein.\n                // Only cleanup if network/server dropped the connection.\n                // Only reconnect if network/server dropped the connection\n                if (error || optionsPingFailure) {\n                    // There is no transport at this point, so we are not expecting to be able to\n                    // send messages much less get responses. So just dispose of everything without\n                    // waiting for anything to succeed.\n                    if (this.registerer) {\n                        this.logger.log(`Disposing of registerer...`);\n                        this.registerer.dispose().catch((e) => {\n                            this.logger.debug(`Error occurred disposing of registerer after connection with server was lost.`);\n                            this.logger.debug(e.toString());\n                        });\n                        this.registerer = undefined;\n                    }\n                    this.managedSessions\n                        .slice()\n                        .map((el) => el.session)\n                        .forEach(async (session) => {\n                        this.logger.log(`Disposing of session...`);\n                        session.dispose().catch((e) => {\n                            this.logger.debug(`Error occurred disposing of a session after connection with server was lost.`);\n                            this.logger.debug(e.toString());\n                        });\n                    });\n                    // Attempt to reconnect if we are supposed to be connected.\n                    if (this.shouldBeConnected) {\n                        this.attemptReconnection();\n                    }\n                }\n            },\n            // Handle incoming invitations\n            onInvite: (invitation) => {\n                this.logger.log(`[${invitation.id}] Received INVITE`);\n                // Guard against a maximum number of pre-existing sessions.\n                // An incoming INVITE request may be received at any time and/or while in the process\n                // of sending an outgoing INVITE request. So we reject any incoming INVITE in those cases.\n                const maxSessions = this.options.maxSimultaneousSessions;\n                if (maxSessions !== 0 && this.managedSessions.length > maxSessions) {\n                    this.logger.warn(`[${invitation.id}] Session already in progress, rejecting INVITE...`);\n                    invitation\n                        .reject()\n                        .then(() => {\n                        this.logger.log(`[${invitation.id}] Rejected INVITE`);\n                    })\n                        .catch((error) => {\n                        this.logger.error(`[${invitation.id}] Failed to reject INVITE`);\n                        this.logger.error(error.toString());\n                    });\n                    return;\n                }\n                // Use our configured constraints as options for any Inviter created as result of a REFER\n                const referralInviterOptions = {\n                    sessionDescriptionHandlerOptions: { constraints: this.constraints }\n                };\n                // Initialize our session\n                this.initSession(invitation, referralInviterOptions);\n                // Delegate\n                if (this.delegate && this.delegate.onCallReceived) {\n                    this.delegate.onCallReceived(invitation);\n                }\n                else {\n                    this.logger.warn(`[${invitation.id}] No handler available, rejecting INVITE...`);\n                    invitation\n                        .reject()\n                        .then(() => {\n                        this.logger.log(`[${invitation.id}] Rejected INVITE`);\n                    })\n                        .catch((error) => {\n                        this.logger.error(`[${invitation.id}] Failed to reject INVITE`);\n                        this.logger.error(error.toString());\n                    });\n                }\n            },\n            // Handle incoming messages\n            onMessage: (message) => {\n                message.accept().then(() => {\n                    if (this.delegate && this.delegate.onMessageReceived) {\n                        this.delegate.onMessageReceived(message);\n                    }\n                });\n            },\n            // Handle incoming notifications\n            onNotify: (notification) => {\n                notification.accept().then(() => {\n                    if (this.delegate && this.delegate.onNotificationReceived) {\n                        this.delegate.onNotificationReceived(notification);\n                    }\n                });\n            }\n        };\n        // RegistererOptions\n        this.registererOptions = Object.assign({}, options.registererOptions);\n        // RegistererRegisterOptions\n        this.registererRegisterOptions = Object.assign({}, options.registererRegisterOptions);\n        // Retry registration on failure or rejection.\n        if (this.options.registrationRetry) {\n            // If the register request is rejected, try again...\n            this.registererRegisterOptions.requestDelegate = this.registererRegisterOptions.requestDelegate || {};\n            const existingOnReject = this.registererRegisterOptions.requestDelegate.onReject;\n            this.registererRegisterOptions.requestDelegate.onReject = (response) => {\n                existingOnReject && existingOnReject(response);\n                // If at first we don't succeed, try try again...\n                this.attemptRegistration();\n            };\n        }\n        // Use the SIP.js logger\n        this.logger = this.userAgent.getLogger(\"sip.SessionManager\");\n        // Monitor network connectivity and attempt reconnection and reregistration when we come online\n        window.addEventListener(\"online\", () => {\n            this.logger.log(`Online`);\n            if (this.shouldBeConnected) {\n                this.connect();\n            }\n        });\n        // NOTE: The autoStop option does not currently work as one likley expects.\n        //       This code is here because the \"autoStop behavior\" and this assoicated\n        //       implemenation has been a recurring request. So instead of removing\n        //       the implementation again (because it doesn't work) and then having\n        //       to explain agian the issue over and over again to those who want it,\n        //       we have included it here to break that cycle. The implementation is\n        //       harmless and serves to provide an explaination for those interested.\n        if (this.options.autoStop) {\n            // Standard operation workflow will resume after this callback exits, meaning\n            // that any asynchronous operations are likely not going to be finished, especially\n            // if they are guaranteed to not be executed in the current tick (promises fall\n            // under this category, they will never be resolved synchronously by design).\n            window.addEventListener(\"beforeunload\", async () => {\n                this.shouldBeConnected = false;\n                this.shouldBeRegistered = false;\n                if (this.userAgent.state !== _api_user_agent_state_js__WEBPACK_IMPORTED_MODULE_3__.UserAgentState.Stopped) {\n                    // The stop() method returns a promise which will not resolve before the page unloads.\n                    await this.userAgent.stop();\n                }\n            });\n        }\n    }\n    /**\n     * Strip properties with undefined values from options.\n     * This is a work around while waiting for missing vs undefined to be addressed (or not)...\n     * https://github.com/Microsoft/TypeScript/issues/13195\n     * @param options - Options to reduce\n     */\n    static stripUndefinedProperties(options) {\n        return Object.keys(options).reduce((object, key) => {\n            // eslint-disable-next-line @typescript-eslint/no-explicit-any\n            if (options[key] !== undefined) {\n                // eslint-disable-next-line @typescript-eslint/no-explicit-any\n                object[key] = options[key];\n            }\n            return object;\n        }, {});\n    }\n    /**\n     * The local media stream. Undefined if call not answered.\n     * @param session - Session to get the media stream from.\n     */\n    getLocalMediaStream(session) {\n        const sdh = session.sessionDescriptionHandler;\n        if (!sdh) {\n            return undefined;\n        }\n        if (!(sdh instanceof _session_description_handler_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__.SessionDescriptionHandler)) {\n            throw new Error(\"Session description handler not instance of web SessionDescriptionHandler\");\n        }\n        return sdh.localMediaStream;\n    }\n    /**\n     * The remote media stream. Undefined if call not answered.\n     * @param session - Session to get the media stream from.\n     */\n    getRemoteMediaStream(session) {\n        const sdh = session.sessionDescriptionHandler;\n        if (!sdh) {\n            return undefined;\n        }\n        if (!(sdh instanceof _session_description_handler_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__.SessionDescriptionHandler)) {\n            throw new Error(\"Session description handler not instance of web SessionDescriptionHandler\");\n        }\n        return sdh.remoteMediaStream;\n    }\n    /**\n     * The local audio track, if available.\n     * @param session - Session to get track from.\n     * @deprecated Use localMediaStream and get track from the stream.\n     */\n    getLocalAudioTrack(session) {\n        var _a;\n        return (_a = this.getLocalMediaStream(session)) === null || _a === void 0 ? void 0 : _a.getTracks().find((track) => track.kind === \"audio\");\n    }\n    /**\n     * The local video track, if available.\n     * @param session - Session to get track from.\n     * @deprecated Use localMediaStream and get track from the stream.\n     */\n    getLocalVideoTrack(session) {\n        var _a;\n        return (_a = this.getLocalMediaStream(session)) === null || _a === void 0 ? void 0 : _a.getTracks().find((track) => track.kind === \"video\");\n    }\n    /**\n     * The remote audio track, if available.\n     * @param session - Session to get track from.\n     * @deprecated Use remoteMediaStream and get track from the stream.\n     */\n    getRemoteAudioTrack(session) {\n        var _a;\n        return (_a = this.getRemoteMediaStream(session)) === null || _a === void 0 ? void 0 : _a.getTracks().find((track) => track.kind === \"audio\");\n    }\n    /**\n     * The remote video track, if available.\n     * @param session - Session to get track from.\n     * @deprecated Use remoteMediaStream and get track from the stream.\n     */\n    getRemoteVideoTrack(session) {\n        var _a;\n        return (_a = this.getRemoteMediaStream(session)) === null || _a === void 0 ? void 0 : _a.getTracks().find((track) => track.kind === \"video\");\n    }\n    /**\n     * Connect.\n     * @remarks\n     * If not started, starts the UserAgent connecting the WebSocket Transport.\n     * Otherwise reconnects the UserAgent's WebSocket Transport.\n     * Attempts will be made to reconnect as needed.\n     */\n    async connect() {\n        this.logger.log(`Connecting UserAgent...`);\n        this.shouldBeConnected = true;\n        if (this.userAgent.state !== _api_user_agent_state_js__WEBPACK_IMPORTED_MODULE_3__.UserAgentState.Started) {\n            return this.userAgent.start();\n        }\n        return this.userAgent.reconnect();\n    }\n    /**\n     * Disconnect.\n     * @remarks\n     * If not stopped, stops the UserAgent disconnecting the WebSocket Transport.\n     */\n    async disconnect() {\n        this.logger.log(`Disconnecting UserAgent...`);\n        if (this.userAgent.state === _api_user_agent_state_js__WEBPACK_IMPORTED_MODULE_3__.UserAgentState.Stopped) {\n            return Promise.resolve();\n        }\n        this.shouldBeConnected = false;\n        this.shouldBeRegistered = false;\n        this.registerer = undefined;\n        return this.userAgent.stop();\n    }\n    /**\n     * Return true if transport is connected.\n     */\n    isConnected() {\n        return this.userAgent.isConnected();\n    }\n    /**\n     * Start receiving incoming calls.\n     * @remarks\n     * Send a REGISTER request for the UserAgent's AOR.\n     * Resolves when the REGISTER request is sent, otherwise rejects.\n     * Attempts will be made to re-register as needed.\n     */\n    async register(registererRegisterOptions) {\n        this.logger.log(`Registering UserAgent...`);\n        this.shouldBeRegistered = true;\n        if (registererRegisterOptions !== undefined) {\n            this.registererRegisterOptions = Object.assign({}, registererRegisterOptions);\n        }\n        if (!this.registerer) {\n            this.registerer = new _api_registerer_js__WEBPACK_IMPORTED_MODULE_5__.Registerer(this.userAgent, this.registererOptions);\n            this.registerer.stateChange.addListener((state) => {\n                switch (state) {\n                    case _api_registerer_state_js__WEBPACK_IMPORTED_MODULE_6__.RegistererState.Initial:\n                        break;\n                    case _api_registerer_state_js__WEBPACK_IMPORTED_MODULE_6__.RegistererState.Registered:\n                        if (this.delegate && this.delegate.onRegistered) {\n                            this.delegate.onRegistered();\n                        }\n                        break;\n                    case _api_registerer_state_js__WEBPACK_IMPORTED_MODULE_6__.RegistererState.Unregistered:\n                        if (this.delegate && this.delegate.onUnregistered) {\n                            this.delegate.onUnregistered();\n                        }\n                        // If we transition to an unregister state, attempt to get back to a registered state.\n                        if (this.shouldBeRegistered) {\n                            this.attemptRegistration();\n                        }\n                        break;\n                    case _api_registerer_state_js__WEBPACK_IMPORTED_MODULE_6__.RegistererState.Terminated:\n                        break;\n                    default:\n                        throw new Error(\"Unknown registerer state.\");\n                }\n            });\n        }\n        return this.attemptRegistration(true);\n    }\n    /**\n     * Stop receiving incoming calls.\n     * @remarks\n     * Send an un-REGISTER request for the UserAgent's AOR.\n     * Resolves when the un-REGISTER request is sent, otherwise rejects.\n     */\n    async unregister(registererUnregisterOptions) {\n        this.logger.log(`Unregistering UserAgent...`);\n        this.shouldBeRegistered = false;\n        if (!this.registerer) {\n            this.logger.warn(`No registerer to unregister.`);\n            return Promise.resolve();\n        }\n        return this.registerer.unregister(registererUnregisterOptions).then(() => {\n            return;\n        });\n    }\n    /**\n     * Make an outgoing call.\n     * @remarks\n     * Send an INVITE request to create a new Session.\n     * Resolves when the INVITE request is sent, otherwise rejects.\n     * Use `onCallAnswered` delegate method to determine if Session is established.\n     * @param destination - The target destination to call. A SIP address to send the INVITE to.\n     * @param inviterOptions - Optional options for Inviter constructor.\n     * @param inviterInviteOptions - Optional options for Inviter.invite().\n     */\n    async call(destination, inviterOptions, inviterInviteOptions) {\n        this.logger.log(`Beginning Session...`);\n        // Guard against a maximum number of pre-existing sessions.\n        // An incoming INVITE request may be received at any time and/or while in the process\n        // of sending an outgoing INVITE request. So we reject any incoming INVITE in those cases.\n        const maxSessions = this.options.maxSimultaneousSessions;\n        if (maxSessions !== 0 && this.managedSessions.length > maxSessions) {\n            return Promise.reject(new Error(\"Maximum number of sessions already exists.\"));\n        }\n        const target = _api_user_agent_js__WEBPACK_IMPORTED_MODULE_2__.UserAgent.makeURI(destination);\n        if (!target) {\n            return Promise.reject(new Error(`Failed to create a valid URI from \"${destination}\"`));\n        }\n        // Use our configured constraints as InviterOptions if none provided\n        if (!inviterOptions) {\n            inviterOptions = {};\n        }\n        if (!inviterOptions.sessionDescriptionHandlerOptions) {\n            inviterOptions.sessionDescriptionHandlerOptions = {};\n        }\n        if (!inviterOptions.sessionDescriptionHandlerOptions.constraints) {\n            inviterOptions.sessionDescriptionHandlerOptions.constraints = this.constraints;\n        }\n        // If utilizing early media, add a handler to catch 183 Session Progress\n        // messages and then to play the associated remote media (the early media).\n        if (inviterOptions.earlyMedia) {\n            inviterInviteOptions = inviterInviteOptions || {};\n            inviterInviteOptions.requestDelegate = inviterInviteOptions.requestDelegate || {};\n            const existingOnProgress = inviterInviteOptions.requestDelegate.onProgress;\n            inviterInviteOptions.requestDelegate.onProgress = (response) => {\n                if (response.message.statusCode === 183) {\n                    this.setupRemoteMedia(inviter);\n                }\n                existingOnProgress && existingOnProgress(response);\n            };\n        }\n        // TODO: Any existing onSessionDescriptionHandler is getting clobbered here.\n        // If we get a server reflexive candidate, stop waiting on ICE gathering to complete.\n        // The candidate is a server reflexive candidate; the ip indicates an intermediary\n        // address assigned by the STUN server to represent the candidate's peer anonymously.\n        if (this.options.iceStopWaitingOnServerReflexive) {\n            inviterOptions.delegate = inviterOptions.delegate || {};\n            inviterOptions.delegate.onSessionDescriptionHandler = (sessionDescriptionHandler) => {\n                if (!(sessionDescriptionHandler instanceof _session_description_handler_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__.SessionDescriptionHandler)) {\n                    throw new Error(\"Session description handler not instance of SessionDescriptionHandler\");\n                }\n                sessionDescriptionHandler.peerConnectionDelegate = {\n                    onicecandidate: (event) => {\n                        var _a;\n                        if (((_a = event.candidate) === null || _a === void 0 ? void 0 : _a.type) === \"srflx\") {\n                            this.logger.log(`[${inviter.id}] Found srflx ICE candidate, stop waiting...`);\n                            // In sip.js > 0.20.1 this cast should be removed as iceGatheringComplete will be public\n                            const sdh = sessionDescriptionHandler;\n                            sdh.iceGatheringComplete();\n                        }\n                    }\n                };\n            };\n        }\n        // Create a new Inviter for the outgoing Session\n        const inviter = new _api_inviter_js__WEBPACK_IMPORTED_MODULE_7__.Inviter(this.userAgent, target, inviterOptions);\n        // Send INVITE\n        return this.sendInvite(inviter, inviterOptions, inviterInviteOptions).then(() => {\n            return inviter;\n        });\n    }\n    /**\n     * Hangup a call.\n     * @param session - Session to hangup.\n     * @remarks\n     * Send a BYE request, CANCEL request or reject response to end the current Session.\n     * Resolves when the request/response is sent, otherwise rejects.\n     * Use `onCallHangup` delegate method to determine if and when call is ended.\n     */\n    async hangup(session) {\n        this.logger.log(`[${session.id}] Hangup...`);\n        if (!this.sessionExists(session)) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        return this.terminate(session);\n    }\n    /**\n     * Answer an incoming call.\n     * @param session - Session to answer.\n     * @remarks\n     * Accept an incoming INVITE request creating a new Session.\n     * Resolves with the response is sent, otherwise rejects.\n     * Use `onCallAnswered` delegate method to determine if and when call is established.\n     * @param invitationAcceptOptions - Optional options for Inviter.accept().\n     */\n    async answer(session, invitationAcceptOptions) {\n        this.logger.log(`[${session.id}] Accepting Invitation...`);\n        if (!this.sessionExists(session)) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        if (!(session instanceof _api_invitation_js__WEBPACK_IMPORTED_MODULE_8__.Invitation)) {\n            return Promise.reject(new Error(\"Session not instance of Invitation.\"));\n        }\n        // Use our configured constraints as InvitationAcceptOptions if none provided\n        if (!invitationAcceptOptions) {\n            invitationAcceptOptions = {};\n        }\n        if (!invitationAcceptOptions.sessionDescriptionHandlerOptions) {\n            invitationAcceptOptions.sessionDescriptionHandlerOptions = {};\n        }\n        if (!invitationAcceptOptions.sessionDescriptionHandlerOptions.constraints) {\n            invitationAcceptOptions.sessionDescriptionHandlerOptions.constraints = this.constraints;\n        }\n        return session.accept(invitationAcceptOptions);\n    }\n    /**\n     * Decline an incoming call.\n     * @param session - Session to decline.\n     * @remarks\n     * Reject an incoming INVITE request.\n     * Resolves with the response is sent, otherwise rejects.\n     * Use `onCallHangup` delegate method to determine if and when call is ended.\n     */\n    async decline(session) {\n        this.logger.log(`[${session.id}] Rejecting Invitation...`);\n        if (!this.sessionExists(session)) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        if (!(session instanceof _api_invitation_js__WEBPACK_IMPORTED_MODULE_8__.Invitation)) {\n            return Promise.reject(new Error(\"Session not instance of Invitation.\"));\n        }\n        return session.reject();\n    }\n    /**\n     * Hold call\n     * @param session - Session to hold.\n     * @remarks\n     * Send a re-INVITE with new offer indicating \"hold\".\n     * Resolves when the re-INVITE request is sent, otherwise rejects.\n     * Use `onCallHold` delegate method to determine if request is accepted or rejected.\n     * See: https://tools.ietf.org/html/rfc6337\n     */\n    async hold(session) {\n        this.logger.log(`[${session.id}] Holding session...`);\n        return this.setHold(session, true);\n    }\n    /**\n     * Unhold call.\n     * @param session - Session to unhold.\n     * @remarks\n     * Send a re-INVITE with new offer indicating \"unhold\".\n     * Resolves when the re-INVITE request is sent, otherwise rejects.\n     * Use `onCallHold` delegate method to determine if request is accepted or rejected.\n     * See: https://tools.ietf.org/html/rfc6337\n     */\n    async unhold(session) {\n        this.logger.log(`[${session.id}] Unholding session...`);\n        return this.setHold(session, false);\n    }\n    /**\n     * Hold state.\n     * @param session - Session to check.\n     * @remarks\n     * True if session is on hold.\n     */\n    isHeld(session) {\n        const managedSession = this.sessionManaged(session);\n        return managedSession ? managedSession.held : false;\n    }\n    /**\n     * Mute call.\n     * @param session - Session to mute.\n     * @remarks\n     * Disable sender's media tracks.\n     */\n    mute(session) {\n        this.logger.log(`[${session.id}] Disabling media tracks...`);\n        this.setMute(session, true);\n    }\n    /**\n     * Unmute call.\n     * @param session - Session to unmute.\n     * @remarks\n     * Enable sender's media tracks.\n     */\n    unmute(session) {\n        this.logger.log(`[${session.id}] Enabling media tracks...`);\n        this.setMute(session, false);\n    }\n    /**\n     * Mute state.\n     * @param session - Session to check.\n     * @remarks\n     * True if sender's media track is disabled.\n     */\n    isMuted(session) {\n        const managedSession = this.sessionManaged(session);\n        return managedSession ? managedSession.muted : false;\n    }\n    /**\n     * Send DTMF.\n     * @param session - Session to send on.\n     * @remarks\n     * Send an INFO request with content type application/dtmf-relay.\n     * @param tone - Tone to send.\n     */\n    async sendDTMF(session, tone) {\n        this.logger.log(`[${session.id}] Sending DTMF...`);\n        // Validate tone\n        if (!/^[0-9A-D#*,]$/.exec(tone)) {\n            return Promise.reject(new Error(\"Invalid DTMF tone.\"));\n        }\n        if (!this.sessionExists(session)) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        this.logger.log(`[${session.id}] Sending DTMF tone: ${tone}`);\n        if (this.options.sendDTMFUsingSessionDescriptionHandler) {\n            if (!session.sessionDescriptionHandler) {\n                return Promise.reject(new Error(\"Session desciption handler undefined.\"));\n            }\n            if (!session.sessionDescriptionHandler.sendDtmf(tone)) {\n                return Promise.reject(new Error(\"Failed to send DTMF\"));\n            }\n            return Promise.resolve();\n        }\n        else {\n            // As RFC 6086 states, sending DTMF via INFO is not standardized...\n            //\n            // Companies have been using INFO messages in order to transport\n            // Dual-Tone Multi-Frequency (DTMF) tones.  All mechanisms are\n            // proprietary and have not been standardized.\n            // https://tools.ietf.org/html/rfc6086#section-2\n            //\n            // It is however widely supported based on this draft:\n            // https://tools.ietf.org/html/draft-kaplan-dispatch-info-dtmf-package-00\n            // The UA MUST populate the \"application/dtmf-relay\" body, as defined\n            // earlier, with the button pressed and the duration it was pressed\n            // for.  Technically, this actually requires the INFO to be generated\n            // when the user *releases* the button, however if the user has still\n            // not released a button after 5 seconds, which is the maximum duration\n            // supported by this mechanism, the UA should generate the INFO at that\n            // time.\n            // https://tools.ietf.org/html/draft-kaplan-dispatch-info-dtmf-package-00#section-5.3\n            const dtmf = tone;\n            const duration = 2000;\n            const body = {\n                contentDisposition: \"render\",\n                contentType: \"application/dtmf-relay\",\n                content: \"Signal=\" + dtmf + \"\\r\\nDuration=\" + duration\n            };\n            const requestOptions = { body };\n            return session.info({ requestOptions }).then(() => {\n                return;\n            });\n        }\n    }\n    /**\n     * Transfer.\n     * @param session - Session with the transferee to transfer.\n     * @param target - The referral target.\n     * @remarks\n     * If target is a Session this is an attended transfer completion (REFER with Replaces),\n     * otherwise this is a blind transfer (REFER). Attempting an attended transfer\n     * completion on a call that has not been answered will be rejected. To implement\n     * an attended transfer with early completion, hangup the call with the target\n     * and execute a blind transfer to the target.\n     */\n    async transfer(session, target, options) {\n        this.logger.log(`[${session.id}] Referring session...`);\n        if (target instanceof _api_session_js__WEBPACK_IMPORTED_MODULE_9__.Session) {\n            return session.refer(target, options).then(() => {\n                return;\n            });\n        }\n        const uri = _api_user_agent_js__WEBPACK_IMPORTED_MODULE_2__.UserAgent.makeURI(target);\n        if (!uri) {\n            return Promise.reject(new Error(`Failed to create a valid URI from \"${target}\"`));\n        }\n        return session.refer(uri, options).then(() => {\n            return;\n        });\n    }\n    /**\n     * Send a message.\n     * @remarks\n     * Send a MESSAGE request.\n     * @param destination - The target destination for the message. A SIP address to send the MESSAGE to.\n     */\n    async message(destination, message) {\n        this.logger.log(`Sending message...`);\n        const target = _api_user_agent_js__WEBPACK_IMPORTED_MODULE_2__.UserAgent.makeURI(destination);\n        if (!target) {\n            return Promise.reject(new Error(`Failed to create a valid URI from \"${destination}\"`));\n        }\n        return new _api_messager_js__WEBPACK_IMPORTED_MODULE_10__.Messager(this.userAgent, target, message).message();\n    }\n    /** Media constraints. */\n    get constraints() {\n        let constraints = { audio: true, video: false }; // default to audio only calls\n        if (this.options.media.constraints) {\n            constraints = Object.assign({}, this.options.media.constraints);\n        }\n        return constraints;\n    }\n    /**\n     * Attempt reconnection up to `reconnectionAttempts` times.\n     * @param reconnectionAttempt - Current attempt number.\n     */\n    attemptReconnection(reconnectionAttempt = 1) {\n        const reconnectionAttempts = this.options.reconnectionAttempts;\n        const reconnectionDelay = this.options.reconnectionDelay;\n        if (!this.shouldBeConnected) {\n            this.logger.log(`Should not be connected currently`);\n            return; // If intentionally disconnected, don't reconnect.\n        }\n        if (this.attemptingReconnection) {\n            this.logger.log(`Reconnection attempt already in progress`);\n        }\n        if (reconnectionAttempt > reconnectionAttempts) {\n            this.logger.log(`Reconnection maximum attempts reached`);\n            return;\n        }\n        if (reconnectionAttempt === 1) {\n            this.logger.log(`Reconnection attempt ${reconnectionAttempt} of ${reconnectionAttempts} - trying`);\n        }\n        else {\n            this.logger.log(`Reconnection attempt ${reconnectionAttempt} of ${reconnectionAttempts} - trying in ${reconnectionDelay} seconds`);\n        }\n        this.attemptingReconnection = true;\n        setTimeout(() => {\n            if (!this.shouldBeConnected) {\n                this.logger.log(`Reconnection attempt ${reconnectionAttempt} of ${reconnectionAttempts} - aborted`);\n                this.attemptingReconnection = false;\n                return; // If intentionally disconnected, don't reconnect.\n            }\n            this.userAgent\n                .reconnect()\n                .then(() => {\n                this.logger.log(`Reconnection attempt ${reconnectionAttempt} of ${reconnectionAttempts} - succeeded`);\n                this.attemptingReconnection = false;\n            })\n                .catch((error) => {\n                this.logger.log(`Reconnection attempt ${reconnectionAttempt} of ${reconnectionAttempts} - failed`);\n                this.logger.error(error.message);\n                this.attemptingReconnection = false;\n                this.attemptReconnection(++reconnectionAttempt);\n            });\n        }, reconnectionAttempt === 1 ? 0 : reconnectionDelay * 1000);\n    }\n    /**\n     * Register to receive calls.\n     * @param withoutDelay - If true attempt immediately, otherwise wait `registrationRetryInterval`.\n     */\n    attemptRegistration(withoutDelay = false) {\n        this.logger.log(`Registration attempt ${withoutDelay ? \"without delay\" : \"\"}`);\n        if (!this.shouldBeRegistered) {\n            this.logger.log(`Should not be registered currently`);\n            return Promise.resolve();\n        }\n        // It only makes sense to have one attempt in progress at a time.\n        // Perhaps we shall (or should) try once again.\n        if (this.registrationAttemptTimeout !== undefined) {\n            this.logger.log(`Registration attempt already in progress`);\n            return Promise.resolve();\n        }\n        // Helper function to send the register request.\n        const _register = () => {\n            // If we do not have a registerer, it is not worth trying to register.\n            if (!this.registerer) {\n                this.logger.log(`Registerer undefined`);\n                return Promise.resolve();\n            }\n            // If the WebSocket transport is not connected, it is not worth trying to register.\n            // Perhpas we shall (or should) try once we are connected.\n            if (!this.isConnected()) {\n                this.logger.log(`User agent not connected`);\n                return Promise.resolve();\n            }\n            // If the UserAgent is stopped, it is not worth trying to register.\n            // Perhaps we shall (or should) try once the UserAgent is running.\n            if (this.userAgent.state === _api_user_agent_state_js__WEBPACK_IMPORTED_MODULE_3__.UserAgentState.Stopped) {\n                this.logger.log(`User agent stopped`);\n                return Promise.resolve();\n            }\n            // If no guard defined, we are good to proceed without any further ado.\n            if (!this.options.registerGuard) {\n                return this.registerer.register(this.registererRegisterOptions).then(() => {\n                    return;\n                });\n            }\n            // Otherwise check to make sure the guard does not want us halt.\n            return this.options\n                .registerGuard()\n                .catch((error) => {\n                this.logger.log(`Register guard rejected will making registration attempt`);\n                throw error;\n            })\n                .then((halt) => {\n                if (halt || !this.registerer) {\n                    return Promise.resolve();\n                }\n                return this.registerer.register(this.registererRegisterOptions).then(() => {\n                    return;\n                });\n            });\n        };\n        // Compute an amount of time in seconds to wait before sending another register request.\n        // This is a small attempt to avoid DOS attacking our own backend in the event that a\n        // relatively large number of clients sychonously keep retrying register reqeusts.\n        // This is known to happen when the backend goes down for a period and all clients\n        // are attempting to register again - the backend gets slammed with synced reqeusts.\n        const computeRegistrationTimeout = (lowerBound) => {\n            const upperBound = lowerBound * 2;\n            return 1000 * (Math.random() * (upperBound - lowerBound) + lowerBound);\n        };\n        // Send register request after a delay\n        return new Promise((resolve, reject) => {\n            this.registrationAttemptTimeout = setTimeout(() => {\n                _register()\n                    .then(() => {\n                    this.registrationAttemptTimeout = undefined;\n                    resolve();\n                })\n                    .catch((error) => {\n                    this.registrationAttemptTimeout = undefined;\n                    if (error instanceof _api_exceptions_request_pending_js__WEBPACK_IMPORTED_MODULE_11__.RequestPendingError) {\n                        resolve();\n                    }\n                    else {\n                        reject(error);\n                    }\n                });\n            }, withoutDelay ? 0 : computeRegistrationTimeout(this.options.registrationRetryInterval));\n        });\n    }\n    /** Helper function to remove media from html elements. */\n    cleanupMedia(session) {\n        const managedSession = this.sessionManaged(session);\n        if (!managedSession) {\n            throw new Error(\"Managed session does not exist.\");\n        }\n        if (managedSession.mediaLocal) {\n            if (managedSession.mediaLocal.video) {\n                managedSession.mediaLocal.video.srcObject = null;\n                managedSession.mediaLocal.video.pause();\n            }\n        }\n        if (managedSession.mediaRemote) {\n            if (managedSession.mediaRemote.audio) {\n                managedSession.mediaRemote.audio.srcObject = null;\n                managedSession.mediaRemote.audio.pause();\n            }\n            if (managedSession.mediaRemote.video) {\n                managedSession.mediaRemote.video.srcObject = null;\n                managedSession.mediaRemote.video.pause();\n            }\n        }\n    }\n    /** Helper function to enable/disable media tracks. */\n    enableReceiverTracks(session, enable) {\n        if (!this.sessionExists(session)) {\n            throw new Error(\"Session does not exist.\");\n        }\n        const sessionDescriptionHandler = session.sessionDescriptionHandler;\n        if (!(sessionDescriptionHandler instanceof _session_description_handler_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__.SessionDescriptionHandler)) {\n            throw new Error(\"Session's session description handler not instance of SessionDescriptionHandler.\");\n        }\n        sessionDescriptionHandler.enableReceiverTracks(enable);\n    }\n    /** Helper function to enable/disable media tracks. */\n    enableSenderTracks(session, enable) {\n        if (!this.sessionExists(session)) {\n            throw new Error(\"Session does not exist.\");\n        }\n        const sessionDescriptionHandler = session.sessionDescriptionHandler;\n        if (!(sessionDescriptionHandler instanceof _session_description_handler_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__.SessionDescriptionHandler)) {\n            throw new Error(\"Session's session description handler not instance of SessionDescriptionHandler.\");\n        }\n        sessionDescriptionHandler.enableSenderTracks(enable);\n    }\n    /**\n     * Setup session delegate and state change handler.\n     * @param session - Session to setup.\n     * @param referralInviterOptions - Options for any Inviter created as result of a REFER.\n     */\n    initSession(session, referralInviterOptions) {\n        // Add the session\n        this.sessionAdd(session);\n        // Call session created callback\n        if (this.delegate && this.delegate.onCallCreated) {\n            this.delegate.onCallCreated(session);\n        }\n        // Setup session state change handler\n        session.stateChange.addListener((state) => {\n            this.logger.log(`[${session.id}] Session state changed to ${state}`);\n            switch (state) {\n                case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Initial:\n                    break;\n                case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Establishing:\n                    break;\n                case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Established:\n                    this.setupLocalMedia(session);\n                    this.setupRemoteMedia(session);\n                    if (this.delegate && this.delegate.onCallAnswered) {\n                        this.delegate.onCallAnswered(session);\n                    }\n                    break;\n                case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Terminating:\n                // fall through\n                case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Terminated:\n                    // This will already have executed if/when we fall\n                    // through from Terminating and thus the managed\n                    // session may already have been cleaned up.\n                    if (this.sessionExists(session)) {\n                        this.cleanupMedia(session);\n                        this.sessionRemove(session);\n                        if (this.delegate && this.delegate.onCallHangup) {\n                            this.delegate.onCallHangup(session);\n                        }\n                    }\n                    break;\n                default:\n                    throw new Error(\"Unknown session state.\");\n            }\n        });\n        // TODO: Any existing onInfo or onRefer delegate gets clobbered here.\n        // Setup delegate\n        session.delegate = session.delegate || {};\n        session.delegate.onInfo = (info) => {\n            // As RFC 6086 states, sending DTMF via INFO is not standardized...\n            //\n            // Companies have been using INFO messages in order to transport\n            // Dual-Tone Multi-Frequency (DTMF) tones.  All mechanisms are\n            // proprietary and have not been standardized.\n            // https://tools.ietf.org/html/rfc6086#section-2\n            //\n            // It is however widely supported based on this draft:\n            // https://tools.ietf.org/html/draft-kaplan-dispatch-info-dtmf-package-00\n            var _a;\n            // FIXME: TODO: We should reject correctly...\n            //\n            // If a UA receives an INFO request associated with an Info Package that\n            // the UA has not indicated willingness to receive, the UA MUST send a\n            // 469 (Bad Info Package) response (see Section 11.6), which contains a\n            // Recv-Info header field with Info Packages for which the UA is willing\n            // to receive INFO requests.\n            // https://tools.ietf.org/html/rfc6086#section-4.2.2\n            // No delegate\n            if (((_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onCallDTMFReceived) === undefined) {\n                info.reject();\n                return;\n            }\n            // Invalid content type\n            const contentType = info.request.getHeader(\"content-type\");\n            if (!contentType || !/^application\\/dtmf-relay/i.exec(contentType)) {\n                info.reject();\n                return;\n            }\n            // Invalid body\n            const body = info.request.body.split(\"\\r\\n\", 2);\n            if (body.length !== 2) {\n                info.reject();\n                return;\n            }\n            // Invalid tone\n            let tone;\n            const toneRegExp = /^(Signal\\s*?=\\s*?)([0-9A-D#*]{1})(\\s)?.*/;\n            if (body[0] !== undefined && toneRegExp.test(body[0])) {\n                tone = body[0].replace(toneRegExp, \"$2\");\n            }\n            if (!tone) {\n                info.reject();\n                return;\n            }\n            // Invalid duration\n            let duration;\n            const durationRegExp = /^(Duration\\s?=\\s?)([0-9]{1,4})(\\s)?.*/;\n            if (body[1] !== undefined && durationRegExp.test(body[1])) {\n                duration = parseInt(body[1].replace(durationRegExp, \"$2\"), 10);\n            }\n            if (!duration) {\n                info.reject();\n                return;\n            }\n            info\n                .accept()\n                .then(() => {\n                if (this.delegate && this.delegate.onCallDTMFReceived) {\n                    if (!tone || !duration) {\n                        throw new Error(\"Tone or duration undefined.\");\n                    }\n                    this.delegate.onCallDTMFReceived(session, tone, duration);\n                }\n            })\n                .catch((error) => {\n                this.logger.error(error.message);\n            });\n        };\n        session.delegate.onRefer = (referral) => {\n            referral\n                .accept()\n                .then(() => this.sendInvite(referral.makeInviter(referralInviterOptions), referralInviterOptions))\n                .catch((error) => {\n                this.logger.error(error.message);\n            });\n        };\n    }\n    /**\n     * Periodically send OPTIONS pings and disconnect when a ping fails.\n     * @param requestURI - Request URI to target\n     * @param fromURI - From URI\n     * @param toURI - To URI\n     */\n    optionsPingRun(requestURI, fromURI, toURI) {\n        // Guard against nvalid interval\n        if (this.options.optionsPingInterval < 1) {\n            throw new Error(\"Invalid options ping interval.\");\n        }\n        // Guard against sending a ping when there is one outstanading\n        if (this.optionsPingRunning) {\n            return;\n        }\n        this.optionsPingRunning = true;\n        // Setup next ping to run in future\n        this.optionsPingTimeout = setTimeout(() => {\n            this.optionsPingTimeout = undefined;\n            // If ping succeeds...\n            const onPingSuccess = () => {\n                // record success or failure\n                this.optionsPingFailure = false;\n                // if we are still running, queue up the next ping\n                if (this.optionsPingRunning) {\n                    this.optionsPingRunning = false;\n                    this.optionsPingRun(requestURI, fromURI, toURI);\n                }\n            };\n            // If ping fails...\n            const onPingFailure = () => {\n                this.logger.error(\"OPTIONS ping failed\");\n                // record success or failure\n                this.optionsPingFailure = true;\n                // stop running\n                this.optionsPingRunning = false;\n                // disconnect the transport\n                this.userAgent.transport.disconnect().catch((error) => this.logger.error(error));\n            };\n            // Create an OPTIONS request message\n            const core = this.userAgent.userAgentCore;\n            const message = core.makeOutgoingRequestMessage(\"OPTIONS\", requestURI, fromURI, toURI, {});\n            // Send the request message\n            this.optionsPingRequest = core.request(message, {\n                onAccept: () => {\n                    this.optionsPingRequest = undefined;\n                    onPingSuccess();\n                },\n                onReject: (response) => {\n                    this.optionsPingRequest = undefined;\n                    // Ping fails on following responses...\n                    // - 408 Request Timeout (no response was received)\n                    // - 503 Service Unavailable (a transport layer error occured)\n                    if (response.message.statusCode === 408 || response.message.statusCode === 503) {\n                        onPingFailure();\n                    }\n                    else {\n                        onPingSuccess();\n                    }\n                }\n            });\n        }, this.options.optionsPingInterval * 1000);\n    }\n    /**\n     * Start sending OPTIONS pings.\n     */\n    optionsPingStart() {\n        this.logger.log(`OPTIONS pings started`);\n        // Create the URIs needed to send OPTIONS pings\n        let requestURI, fromURI, toURI;\n        if (this.options.optionsPingRequestURI) {\n            // Use whatever specific RURI is provided.\n            requestURI = _api_user_agent_js__WEBPACK_IMPORTED_MODULE_2__.UserAgent.makeURI(this.options.optionsPingRequestURI);\n            if (!requestURI) {\n                throw new Error(\"Failed to create Request URI.\");\n            }\n            // Use the user agent's contact URI for From and To URIs\n            fromURI = this.userAgent.contact.uri.clone();\n            toURI = this.userAgent.contact.uri.clone();\n        }\n        else if (this.options.aor) {\n            // Otherwise use the AOR provided to target the assocated registrar server.\n            const uri = _api_user_agent_js__WEBPACK_IMPORTED_MODULE_2__.UserAgent.makeURI(this.options.aor);\n            if (!uri) {\n                throw new Error(\"Failed to create URI.\");\n            }\n            requestURI = uri.clone();\n            requestURI.user = undefined; // target the registrar server\n            fromURI = uri.clone();\n            toURI = uri.clone();\n        }\n        else {\n            this.logger.error(\"You have enabled sending OPTIONS pings and as such you must provide either \" +\n                \"a) an AOR to register, or b) an RURI to use for the target of the OPTIONS ping requests. \");\n            return;\n        }\n        // Send the OPTIONS pings\n        this.optionsPingRun(requestURI, fromURI, toURI);\n    }\n    /**\n     * Stop sending OPTIONS pings.\n     */\n    optionsPingStop() {\n        this.logger.log(`OPTIONS pings stopped`);\n        this.optionsPingRunning = false;\n        this.optionsPingFailure = false;\n        if (this.optionsPingRequest) {\n            this.optionsPingRequest.dispose();\n            this.optionsPingRequest = undefined;\n        }\n        if (this.optionsPingTimeout) {\n            clearTimeout(this.optionsPingTimeout);\n            this.optionsPingTimeout = undefined;\n        }\n    }\n    /** Helper function to init send then send invite. */\n    async sendInvite(inviter, inviterOptions, inviterInviteOptions) {\n        // Initialize our session\n        this.initSession(inviter, inviterOptions);\n        // Send the INVITE\n        return inviter.invite(inviterInviteOptions).then(() => {\n            this.logger.log(`[${inviter.id}] Sent INVITE`);\n        });\n    }\n    /** Helper function to add a session to the ones we are managing. */\n    sessionAdd(session) {\n        const managedSession = this.options.managedSessionFactory(this, session);\n        this.managedSessions.push(managedSession);\n    }\n    /** Helper function to check if the session is one we are managing. */\n    sessionExists(session) {\n        return this.sessionManaged(session) !== undefined;\n    }\n    /** Helper function to check if the session is one we are managing. */\n    sessionManaged(session) {\n        return this.managedSessions.find((el) => el.session.id === session.id);\n    }\n    /** Helper function to remoce a session from the ones we are managing. */\n    sessionRemove(session) {\n        this.managedSessions = this.managedSessions.filter((el) => el.session.id !== session.id);\n    }\n    /**\n     * Puts Session on hold.\n     * @param session - The session to set.\n     * @param hold - Hold on if true, off if false.\n     */\n    async setHold(session, hold) {\n        if (!this.sessionExists(session)) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        // Just resolve if we are already in correct state\n        if (this.isHeld(session) === hold) {\n            return Promise.resolve();\n        }\n        const sessionDescriptionHandler = session.sessionDescriptionHandler;\n        if (!(sessionDescriptionHandler instanceof _session_description_handler_session_description_handler_js__WEBPACK_IMPORTED_MODULE_4__.SessionDescriptionHandler)) {\n            throw new Error(\"Session's session description handler not instance of SessionDescriptionHandler.\");\n        }\n        const options = {\n            requestDelegate: {\n                onAccept: () => {\n                    const managedSession = this.sessionManaged(session);\n                    if (managedSession !== undefined) {\n                        managedSession.held = hold;\n                        this.enableReceiverTracks(session, !managedSession.held);\n                        this.enableSenderTracks(session, !managedSession.held && !managedSession.muted);\n                        if (this.delegate && this.delegate.onCallHold) {\n                            this.delegate.onCallHold(session, managedSession.held);\n                        }\n                    }\n                },\n                onReject: () => {\n                    this.logger.warn(`[${session.id}] Re-invite request was rejected`);\n                    const managedSession = this.sessionManaged(session);\n                    if (managedSession !== undefined) {\n                        managedSession.held = !hold; // this was preemptively set so undo on failure\n                        this.enableReceiverTracks(session, !managedSession.held);\n                        this.enableSenderTracks(session, !managedSession.held && !managedSession.muted);\n                        if (this.delegate && this.delegate.onCallHold) {\n                            this.delegate.onCallHold(session, managedSession.held);\n                        }\n                    }\n                }\n            }\n        };\n        // Session properties used to pass options to the SessionDescriptionHandler:\n        //\n        // 1) Session.sessionDescriptionHandlerOptions\n        //    SDH options for the initial INVITE transaction.\n        //    - Used in all cases when handling the initial INVITE transaction as either UAC or UAS.\n        //    - May be set directly at anytime.\n        //    - May optionally be set via constructor option.\n        //    - May optionally be set via options passed to Inviter.invite() or Invitation.accept().\n        //\n        // 2) Session.sessionDescriptionHandlerOptionsReInvite\n        //    SDH options for re-INVITE transactions.\n        //    - Used in all cases when handling a re-INVITE transaction as either UAC or UAS.\n        //    - May be set directly at anytime.\n        //    - May optionally be set via constructor option.\n        //    - May optionally be set via options passed to Session.invite().\n        const sessionDescriptionHandlerOptions = session.sessionDescriptionHandlerOptionsReInvite;\n        sessionDescriptionHandlerOptions.hold = hold;\n        session.sessionDescriptionHandlerOptionsReInvite = sessionDescriptionHandlerOptions;\n        // Preemptively and optimistically set held state (but do not call delegate).\n        const managedSession = this.sessionManaged(session);\n        if (!managedSession) {\n            throw new Error(\"Managed session is undefiend.\");\n        }\n        managedSession.held = hold;\n        // Send re-INVITE\n        return session\n            .invite(options)\n            .then(() => {\n            // Preemptively enable/disable tracks\n            const managedSession = this.sessionManaged(session);\n            if (managedSession !== undefined) {\n                this.enableReceiverTracks(session, !managedSession.held);\n                this.enableSenderTracks(session, !managedSession.held && !managedSession.muted);\n            }\n        })\n            .catch((error) => {\n            managedSession.held = !hold; // was preemptively set so undo on failure\n            if (error instanceof _api_exceptions_request_pending_js__WEBPACK_IMPORTED_MODULE_11__.RequestPendingError) {\n                this.logger.error(`[${session.id}] A hold request is already in progress.`);\n            }\n            throw error;\n        });\n    }\n    /**\n     * Puts Session on mute.\n     * @param session - The session to mute.\n     * @param mute - Mute on if true, off if false.\n     */\n    setMute(session, mute) {\n        if (!this.sessionExists(session)) {\n            this.logger.warn(`[${session.id}] A session is required to enabled/disable media tracks`);\n            return;\n        }\n        if (session.state !== _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Established) {\n            this.logger.warn(`[${session.id}] An established session is required to enable/disable media tracks`);\n            return;\n        }\n        const managedSession = this.sessionManaged(session);\n        if (managedSession !== undefined) {\n            managedSession.muted = mute;\n            this.enableSenderTracks(session, !managedSession.held && !managedSession.muted);\n        }\n    }\n    /** Helper function to attach local media to html elements. */\n    setupLocalMedia(session) {\n        const managedSession = this.sessionManaged(session);\n        if (!managedSession) {\n            throw new Error(\"Managed session does not exist.\");\n        }\n        // Get the local media element, if any, from the and configuraiton options\n        // and save the info with the managed session so we can clean it up later.\n        const mediaLocal = typeof this.options.media.local === \"function\" ? this.options.media.local(session) : this.options.media.local;\n        managedSession.mediaLocal = mediaLocal;\n        const mediaElement = mediaLocal === null || mediaLocal === void 0 ? void 0 : mediaLocal.video;\n        if (mediaElement) {\n            const localStream = this.getLocalMediaStream(session);\n            if (!localStream) {\n                throw new Error(\"Local media stream undefiend.\");\n            }\n            mediaElement.srcObject = localStream;\n            mediaElement.volume = 0;\n            mediaElement.play().catch((error) => {\n                this.logger.error(`[${session.id}] Failed to play local media`);\n                this.logger.error(error.message);\n            });\n        }\n    }\n    /** Helper function to attach remote media to html elements. */\n    setupRemoteMedia(session) {\n        const managedSession = this.sessionManaged(session);\n        if (!managedSession) {\n            throw new Error(\"Managed session does not exist.\");\n        }\n        // Get the remote media element, if any, from the and configuraiton options\n        // and save the info with the managed session so we can clean it up later.\n        const mediaRemote = typeof this.options.media.remote === \"function\" ? this.options.media.remote(session) : this.options.media.remote;\n        managedSession.mediaRemote = mediaRemote;\n        const mediaElement = (mediaRemote === null || mediaRemote === void 0 ? void 0 : mediaRemote.video) || (mediaRemote === null || mediaRemote === void 0 ? void 0 : mediaRemote.audio);\n        if (mediaElement) {\n            const remoteStream = this.getRemoteMediaStream(session);\n            if (!remoteStream) {\n                throw new Error(\"Remote media stream undefiend.\");\n            }\n            mediaElement.autoplay = true; // Safari hack, because you cannot call .play() from a non user action\n            mediaElement.srcObject = remoteStream;\n            mediaElement.play().catch((error) => {\n                this.logger.error(`[${session.id}] Failed to play remote media`);\n                this.logger.error(error.message);\n            });\n            remoteStream.onaddtrack = () => {\n                this.logger.log(`Remote media onaddtrack`);\n                mediaElement.load(); // Safari hack, as it doesn't work otheriwse\n                mediaElement.play().catch((error) => {\n                    this.logger.error(`[${session.id}] Failed to play remote media`);\n                    this.logger.error(error.message);\n                });\n            };\n        }\n    }\n    /**\n     * End a session.\n     * @param session - The session to terminate.\n     * @remarks\n     * Send a BYE request, CANCEL request or reject response to end the current Session.\n     * Resolves when the request/response is sent, otherwise rejects.\n     * Use `onCallHangup` delegate method to determine if and when Session is terminated.\n     */\n    async terminate(session) {\n        this.logger.log(`[${session.id}] Terminating...`);\n        switch (session.state) {\n            case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Initial:\n                if (session instanceof _api_inviter_js__WEBPACK_IMPORTED_MODULE_7__.Inviter) {\n                    return session.cancel().then(() => {\n                        this.logger.log(`[${session.id}] Inviter never sent INVITE (canceled)`);\n                    });\n                }\n                else if (session instanceof _api_invitation_js__WEBPACK_IMPORTED_MODULE_8__.Invitation) {\n                    return session.reject().then(() => {\n                        this.logger.log(`[${session.id}] Invitation rejected (sent 480)`);\n                    });\n                }\n                else {\n                    throw new Error(\"Unknown session type.\");\n                }\n            case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Establishing:\n                if (session instanceof _api_inviter_js__WEBPACK_IMPORTED_MODULE_7__.Inviter) {\n                    return session.cancel().then(() => {\n                        this.logger.log(`[${session.id}] Inviter canceled (sent CANCEL)`);\n                    });\n                }\n                else if (session instanceof _api_invitation_js__WEBPACK_IMPORTED_MODULE_8__.Invitation) {\n                    return session.reject().then(() => {\n                        this.logger.log(`[${session.id}] Invitation rejected (sent 480)`);\n                    });\n                }\n                else {\n                    throw new Error(\"Unknown session type.\");\n                }\n            case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Established:\n                return session.bye().then(() => {\n                    this.logger.log(`[${session.id}] Session ended (sent BYE)`);\n                });\n            case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Terminating:\n                break;\n            case _api_session_state_js__WEBPACK_IMPORTED_MODULE_12__.SessionState.Terminated:\n                break;\n            default:\n                throw new Error(\"Unknown state\");\n        }\n        this.logger.log(`[${session.id}] Terminating in state ${session.state}, no action taken`);\n        return Promise.resolve();\n    }\n}\n\n\n/***/ }),\n/* 122 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SimpleUser\": () => (/* reexport safe */ _simple_user_js__WEBPACK_IMPORTED_MODULE_0__.SimpleUser)\n/* harmony export */ });\n/* harmony import */ var _simple_user_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(123);\n/**\n * A simple SIP user implementation for web browsers.\n * @packageDocumentation\n */\n\n\n\n\n\n/***/ }),\n/* 123 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"SimpleUser\": () => (/* binding */ SimpleUser)\n/* harmony export */ });\n/* harmony import */ var _session_manager_session_manager_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(121);\n\n/**\n * A simple SIP user class.\n * @remarks\n * While this class is completely functional for simple use cases, it is not intended\n * to provide an interface which is suitable for most (must less all) applications.\n * While this class has many limitations (for example, it only handles a single concurrent session),\n * it is, however, intended to serve as a simple example of using the SIP.js API.\n * @public\n */\nclass SimpleUser {\n    /**\n     * Constructs a new instance of the `SimpleUser` class.\n     * @param server - SIP WebSocket Server URL.\n     * @param options - Options bucket. See {@link SimpleUserOptions} for details.\n     */\n    constructor(server, options = {}) {\n        this.session = undefined;\n        // Delegate\n        this.delegate = options.delegate;\n        // Copy options\n        this.options = Object.assign({}, options);\n        // Session manager options\n        const sessionManagerOptions = {\n            aor: this.options.aor,\n            delegate: {\n                onCallAnswered: () => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onCallAnswered) === null || _b === void 0 ? void 0 : _b.call(_a); },\n                onCallCreated: (session) => {\n                    var _a, _b;\n                    this.session = session;\n                    (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onCallCreated) === null || _b === void 0 ? void 0 : _b.call(_a);\n                },\n                onCallReceived: () => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onCallReceived) === null || _b === void 0 ? void 0 : _b.call(_a); },\n                onCallHangup: () => {\n                    var _a, _b;\n                    this.session = undefined;\n                    ((_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onCallHangup) && ((_b = this.delegate) === null || _b === void 0 ? void 0 : _b.onCallHangup());\n                },\n                onCallHold: (s, held) => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onCallHold) === null || _b === void 0 ? void 0 : _b.call(_a, held); },\n                onCallDTMFReceived: (s, tone, dur) => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onCallDTMFReceived) === null || _b === void 0 ? void 0 : _b.call(_a, tone, dur); },\n                onMessageReceived: (message) => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onMessageReceived) === null || _b === void 0 ? void 0 : _b.call(_a, message.request.body); },\n                onRegistered: () => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onRegistered) === null || _b === void 0 ? void 0 : _b.call(_a); },\n                onUnregistered: () => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onUnregistered) === null || _b === void 0 ? void 0 : _b.call(_a); },\n                onServerConnect: () => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onServerConnect) === null || _b === void 0 ? void 0 : _b.call(_a); },\n                onServerDisconnect: () => { var _a, _b; return (_b = (_a = this.delegate) === null || _a === void 0 ? void 0 : _a.onServerDisconnect) === null || _b === void 0 ? void 0 : _b.call(_a); }\n            },\n            maxSimultaneousSessions: 1,\n            media: this.options.media,\n            reconnectionAttempts: this.options.reconnectionAttempts,\n            reconnectionDelay: this.options.reconnectionDelay,\n            registererOptions: this.options.registererOptions,\n            sendDTMFUsingSessionDescriptionHandler: this.options.sendDTMFUsingSessionDescriptionHandler,\n            userAgentOptions: this.options.userAgentOptions\n        };\n        this.sessionManager = new _session_manager_session_manager_js__WEBPACK_IMPORTED_MODULE_0__.SessionManager(server, sessionManagerOptions);\n        // Use the SIP.js logger\n        this.logger = this.sessionManager.userAgent.getLogger(\"sip.SimpleUser\");\n    }\n    /**\n     * Instance identifier.\n     * @internal\n     */\n    get id() {\n        return (this.options.userAgentOptions && this.options.userAgentOptions.displayName) || \"Anonymous\";\n    }\n    /** The local media stream. Undefined if call not answered. */\n    get localMediaStream() {\n        return this.session && this.sessionManager.getLocalMediaStream(this.session);\n    }\n    /** The remote media stream. Undefined if call not answered. */\n    get remoteMediaStream() {\n        return this.session && this.sessionManager.getRemoteMediaStream(this.session);\n    }\n    /**\n     * The local audio track, if available.\n     * @deprecated Use localMediaStream and get track from the stream.\n     */\n    get localAudioTrack() {\n        return this.session && this.sessionManager.getLocalAudioTrack(this.session);\n    }\n    /**\n     * The local video track, if available.\n     * @deprecated Use localMediaStream and get track from the stream.\n     */\n    get localVideoTrack() {\n        return this.session && this.sessionManager.getLocalVideoTrack(this.session);\n    }\n    /**\n     * The remote audio track, if available.\n     * @deprecated Use remoteMediaStream and get track from the stream.\n     */\n    get remoteAudioTrack() {\n        return this.session && this.sessionManager.getRemoteAudioTrack(this.session);\n    }\n    /**\n     * The remote video track, if available.\n     * @deprecated Use remoteMediaStream and get track from the stream.\n     */\n    get remoteVideoTrack() {\n        return this.session && this.sessionManager.getRemoteVideoTrack(this.session);\n    }\n    /**\n     * Connect.\n     * @remarks\n     * Start the UserAgent's WebSocket Transport.\n     */\n    connect() {\n        this.logger.log(`[${this.id}] Connecting UserAgent...`);\n        return this.sessionManager.connect();\n    }\n    /**\n     * Disconnect.\n     * @remarks\n     * Stop the UserAgent's WebSocket Transport.\n     */\n    disconnect() {\n        this.logger.log(`[${this.id}] Disconnecting UserAgent...`);\n        return this.sessionManager.disconnect();\n    }\n    /**\n     * Return true if connected.\n     */\n    isConnected() {\n        return this.sessionManager.isConnected();\n    }\n    /**\n     * Start receiving incoming calls.\n     * @remarks\n     * Send a REGISTER request for the UserAgent's AOR.\n     * Resolves when the REGISTER request is sent, otherwise rejects.\n     */\n    register(registererRegisterOptions) {\n        this.logger.log(`[${this.id}] Registering UserAgent...`);\n        return this.sessionManager.register(registererRegisterOptions);\n    }\n    /**\n     * Stop receiving incoming calls.\n     * @remarks\n     * Send an un-REGISTER request for the UserAgent's AOR.\n     * Resolves when the un-REGISTER request is sent, otherwise rejects.\n     */\n    unregister(registererUnregisterOptions) {\n        this.logger.log(`[${this.id}] Unregistering UserAgent...`);\n        return this.sessionManager.unregister(registererUnregisterOptions);\n    }\n    /**\n     * Make an outgoing call.\n     * @remarks\n     * Send an INVITE request to create a new Session.\n     * Resolves when the INVITE request is sent, otherwise rejects.\n     * Use `onCallAnswered` delegate method to determine if Session is established.\n     * @param destination - The target destination to call. A SIP address to send the INVITE to.\n     * @param inviterOptions - Optional options for Inviter constructor.\n     * @param inviterInviteOptions - Optional options for Inviter.invite().\n     */\n    call(destination, inviterOptions, inviterInviteOptions) {\n        this.logger.log(`[${this.id}] Beginning Session...`);\n        if (this.session) {\n            return Promise.reject(new Error(\"Session already exists.\"));\n        }\n        return this.sessionManager.call(destination, inviterOptions, inviterInviteOptions).then(() => {\n            return;\n        });\n    }\n    /**\n     * Hangup a call.\n     * @remarks\n     * Send a BYE request, CANCEL request or reject response to end the current Session.\n     * Resolves when the request/response is sent, otherwise rejects.\n     * Use `onCallHangup` delegate method to determine if and when call is ended.\n     */\n    hangup() {\n        this.logger.log(`[${this.id}] Hangup...`);\n        if (!this.session) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        return this.sessionManager.hangup(this.session).then(() => {\n            this.session = undefined;\n        });\n    }\n    /**\n     * Answer an incoming call.\n     * @remarks\n     * Accept an incoming INVITE request creating a new Session.\n     * Resolves with the response is sent, otherwise rejects.\n     * Use `onCallAnswered` delegate method to determine if and when call is established.\n     * @param invitationAcceptOptions - Optional options for Inviter.accept().\n     */\n    answer(invitationAcceptOptions) {\n        this.logger.log(`[${this.id}] Accepting Invitation...`);\n        if (!this.session) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        return this.sessionManager.answer(this.session, invitationAcceptOptions);\n    }\n    /**\n     * Decline an incoming call.\n     * @remarks\n     * Reject an incoming INVITE request.\n     * Resolves with the response is sent, otherwise rejects.\n     * Use `onCallHangup` delegate method to determine if and when call is ended.\n     */\n    decline() {\n        this.logger.log(`[${this.id}] rejecting Invitation...`);\n        if (!this.session) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        return this.sessionManager.decline(this.session);\n    }\n    /**\n     * Hold call\n     * @remarks\n     * Send a re-INVITE with new offer indicating \"hold\".\n     * Resolves when the re-INVITE request is sent, otherwise rejects.\n     * Use `onCallHold` delegate method to determine if request is accepted or rejected.\n     * See: https://tools.ietf.org/html/rfc6337\n     */\n    hold() {\n        this.logger.log(`[${this.id}] holding session...`);\n        if (!this.session) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        return this.sessionManager.hold(this.session);\n    }\n    /**\n     * Unhold call.\n     * @remarks\n     * Send a re-INVITE with new offer indicating \"unhold\".\n     * Resolves when the re-INVITE request is sent, otherwise rejects.\n     * Use `onCallHold` delegate method to determine if request is accepted or rejected.\n     * See: https://tools.ietf.org/html/rfc6337\n     */\n    unhold() {\n        this.logger.log(`[${this.id}] unholding session...`);\n        if (!this.session) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        return this.sessionManager.unhold(this.session);\n    }\n    /**\n     * Hold state.\n     * @remarks\n     * True if session is on hold.\n     */\n    isHeld() {\n        return this.session ? this.sessionManager.isHeld(this.session) : false;\n    }\n    /**\n     * Mute call.\n     * @remarks\n     * Disable sender's media tracks.\n     */\n    mute() {\n        this.logger.log(`[${this.id}] disabling media tracks...`);\n        return this.session && this.sessionManager.mute(this.session);\n    }\n    /**\n     * Unmute call.\n     * @remarks\n     * Enable sender's media tracks.\n     */\n    unmute() {\n        this.logger.log(`[${this.id}] enabling media tracks...`);\n        return this.session && this.sessionManager.unmute(this.session);\n    }\n    /**\n     * Mute state.\n     * @remarks\n     * True if sender's media track is disabled.\n     */\n    isMuted() {\n        return this.session ? this.sessionManager.isMuted(this.session) : false;\n    }\n    /**\n     * Send DTMF.\n     * @remarks\n     * Send an INFO request with content type application/dtmf-relay.\n     * @param tone - Tone to send.\n     */\n    sendDTMF(tone) {\n        this.logger.log(`[${this.id}] sending DTMF...`);\n        if (!this.session) {\n            return Promise.reject(new Error(\"Session does not exist.\"));\n        }\n        return this.sessionManager.sendDTMF(this.session, tone);\n    }\n    /**\n     * Send a message.\n     * @remarks\n     * Send a MESSAGE request.\n     * @param destination - The target destination for the message. A SIP address to send the MESSAGE to.\n     */\n    message(destination, message) {\n        this.logger.log(`[${this.id}] sending message...`);\n        return this.sessionManager.message(destination, message);\n    }\n}\n\n\n/***/ }),\n/* 124 */\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Transport\": () => (/* reexport safe */ _transport_js__WEBPACK_IMPORTED_MODULE_0__.Transport)\n/* harmony export */ });\n/* harmony import */ var _transport_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(58);\n/**\n * A Transport implementation for web browsers.\n * @packageDocumentation\n */\n\n\n\n\n/***/ })\n/******/ \t]);\n/************************************************************************/\n/******/ \t// The module cache\n/******/ \tvar __webpack_module_cache__ = {};\n/******/ \t\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/ \t\t// Check if module is in cache\n/******/ \t\tvar cachedModule = __webpack_module_cache__[moduleId];\n/******/ \t\tif (cachedModule !== undefined) {\n/******/ \t\t\treturn cachedModule.exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = __webpack_module_cache__[moduleId] = {\n/******/ \t\t\t// no module.id needed\n/******/ \t\t\t// no module.loaded needed\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/ \t\n/******/ \t\t// Execute the module function\n/******/ \t\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n/******/ \t\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/ \t\n/************************************************************************/\n/******/ \t/* webpack/runtime/define property getters */\n/******/ \t(() => {\n/******/ \t\t// define getter functions for harmony exports\n/******/ \t\t__webpack_require__.d = (exports, definition) => {\n/******/ \t\t\tfor(var key in definition) {\n/******/ \t\t\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n/******/ \t\t\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n/******/ \t\t\t\t}\n/******/ \t\t\t}\n/******/ \t\t};\n/******/ \t})();\n/******/ \t\n/******/ \t/* webpack/runtime/hasOwnProperty shorthand */\n/******/ \t(() => {\n/******/ \t\t__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))\n/******/ \t})();\n/******/ \t\n/******/ \t/* webpack/runtime/make namespace object */\n/******/ \t(() => {\n/******/ \t\t// define __esModule on exports\n/******/ \t\t__webpack_require__.r = (exports) => {\n/******/ \t\t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n/******/ \t\t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n/******/ \t\t\t}\n/******/ \t\t\tObject.defineProperty(exports, '__esModule', { value: true });\n/******/ \t\t};\n/******/ \t})();\n/******/ \t\n/************************************************************************/\nvar __webpack_exports__ = {};\n// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.\n(() => {\n__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"Ack\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Ack),\n/* harmony export */   \"Bye\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Bye),\n/* harmony export */   \"Cancel\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Cancel),\n/* harmony export */   \"ContentTypeUnsupportedError\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.ContentTypeUnsupportedError),\n/* harmony export */   \"Core\": () => (/* reexport module object */ _core_index_js__WEBPACK_IMPORTED_MODULE_3__),\n/* harmony export */   \"EmitterImpl\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.EmitterImpl),\n/* harmony export */   \"Grammar\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_2__.Grammar),\n/* harmony export */   \"Info\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Info),\n/* harmony export */   \"Invitation\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Invitation),\n/* harmony export */   \"Inviter\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Inviter),\n/* harmony export */   \"Message\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Message),\n/* harmony export */   \"Messager\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Messager),\n/* harmony export */   \"NameAddrHeader\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_2__.NameAddrHeader),\n/* harmony export */   \"Notification\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Notification),\n/* harmony export */   \"Parameters\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_2__.Parameters),\n/* harmony export */   \"Publisher\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Publisher),\n/* harmony export */   \"PublisherState\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.PublisherState),\n/* harmony export */   \"Referral\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Referral),\n/* harmony export */   \"Registerer\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Registerer),\n/* harmony export */   \"RegistererState\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.RegistererState),\n/* harmony export */   \"RequestPendingError\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.RequestPendingError),\n/* harmony export */   \"SIPExtension\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.SIPExtension),\n/* harmony export */   \"Session\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Session),\n/* harmony export */   \"SessionDescriptionHandlerError\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.SessionDescriptionHandlerError),\n/* harmony export */   \"SessionState\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.SessionState),\n/* harmony export */   \"SessionTerminatedError\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.SessionTerminatedError),\n/* harmony export */   \"StateTransitionError\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.StateTransitionError),\n/* harmony export */   \"Subscriber\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Subscriber),\n/* harmony export */   \"Subscription\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.Subscription),\n/* harmony export */   \"SubscriptionState\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.SubscriptionState),\n/* harmony export */   \"TransportState\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.TransportState),\n/* harmony export */   \"URI\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_2__.URI),\n/* harmony export */   \"UserAgent\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.UserAgent),\n/* harmony export */   \"UserAgentRegisteredOptionTags\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.UserAgentRegisteredOptionTags),\n/* harmony export */   \"UserAgentState\": () => (/* reexport safe */ _api_index_js__WEBPACK_IMPORTED_MODULE_1__.UserAgentState),\n/* harmony export */   \"Web\": () => (/* reexport module object */ _platform_web_index_js__WEBPACK_IMPORTED_MODULE_4__),\n/* harmony export */   \"equivalentURI\": () => (/* reexport safe */ _grammar_index_js__WEBPACK_IMPORTED_MODULE_2__.equivalentURI),\n/* harmony export */   \"name\": () => (/* binding */ name),\n/* harmony export */   \"version\": () => (/* binding */ version)\n/* harmony export */ });\n/* harmony import */ var _version_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);\n/* harmony import */ var _api_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(2);\n/* harmony import */ var _grammar_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(100);\n/* harmony import */ var _core_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(101);\n/* harmony import */ var _platform_web_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(114);\n// Helpful name and version exports\n\nconst version = _version_js__WEBPACK_IMPORTED_MODULE_0__.LIBRARY_VERSION;\nconst name = \"sip.js\";\n\n// Export api\n\n// Export grammar\n\n// Export namespaced core\n\n\n// Export namespaced web\n\n\n\n})();\n\n/******/ \treturn __webpack_exports__;\n/******/ })()\n;\n});\n"
  },
  {
    "path": "voip_oca/static/src/components/activity_list/activity_list.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\n\nimport {Component, onMounted} from \"@odoo/owl\";\nimport {_t} from \"@web/core/l10n/translation\";\nimport {registry} from \"@web/core/registry\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class ActivityList extends Component {\n    setup() {\n        super.setup();\n        this.voip = useService(\"voip_oca\");\n        onMounted(() => this.voip.searchActivities());\n    }\n\n    onClick(activity) {\n        this.voip.open({activity: activity});\n    }\n}\nActivityList.props = {records: {type: Array}};\nActivityList.template = \"voip_oca.ActivityList\";\n\nregistry.category(\"voip_elements\").add(\"activity_list\", {\n    component: ActivityList,\n    order: 20,\n    title: _t(\"Activities\"),\n    input: \"activities\",\n    search: (voip, value) => voip.searchActivities(value),\n    call: (voip) => {\n        if (voip.activities) {\n            voip.open({activity: voip.activities[0]});\n        }\n    },\n});\n"
  },
  {
    "path": "voip_oca/static/src/components/activity_list/activity_list.scss",
    "content": ".o_voip_activity_item {\n    border-bottom: 1px solid var(--border-color, #d8dadd) !important;\n}\n"
  },
  {
    "path": "voip_oca/static/src/components/activity_list/activity_list.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.ActivityList\">\n        <t t-foreach=\"props.records\" t-as=\"activity\" t-key=\"activity.id\">\n            <div\n                class=\"o_voip_activity_item d-flex flex-column p-3 cursor-pointer\"\n                t-on-click=\"() => this.onClick(activity)\"\n            >\n                <span class=\"fw-bold\" t-esc=\"activity.main_partner\" />\n                <t t-if=\"activity.main_partner != activity.res_name\">\n                    <span class=\"fst-normal\" t-esc=\"activity.res_name\" />\n                </t>\n                <t t-if=\"activity.summary\">\n                    <span class=\"fst-italic\" t-esc=\"activity.summary\" />\n                </t>\n            </div>\n        </t>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/call/call.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\n\nimport {Component, useState} from \"@odoo/owl\";\nimport {Numpad} from \"../numpad/numpad.esm\";\nimport {Transfer} from \"../transfer/transfer.esm\";\nimport {usePopover} from \"@web/core/popover/popover_hook\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class Call extends Component {\n    setup() {\n        super.setup();\n        this.action = useService(\"action\");\n        this.voip = useState(useService(\"voip_oca\"));\n        this.agent = useService(\"voip_agent_oca\");\n        this.state = useState({duration: \" 00:00\", elapsedSeconds: 0, numpad: false});\n        this.transferPopover = usePopover(Transfer, {position: \"top\"});\n        if (this.voip.inCall) {\n            this.startTimer();\n        }\n    }\n\n    startTimer() {\n        this.timer = setInterval(() => {\n            this.state.elapsedSeconds += 1;\n            const minutes = String(Math.floor(this.state.elapsedSeconds / 60)).padStart(\n                2,\n                \"0\"\n            );\n            const seconds = String(this.state.elapsedSeconds % 60).padStart(2, \"0\");\n            this.state.duration = ` ${minutes}:${seconds}`;\n        }, 1000);\n    }\n\n    get resId() {\n        if (this.voip.activity && this.voip.activity.id) {\n            return this.voip.activity.id;\n        }\n        return this.voip.partner.id;\n    }\n\n    get duration() {\n        return this.state.duration;\n    }\n\n    onEmailClick() {\n        this.action.doAction({\n            type: \"ir.actions.act_window\",\n            res_model: \"mail.compose.message\",\n            views: [[false, \"form\"]],\n            target: \"new\",\n            context: {\n                default_model: this.model,\n                default_res_ids: this.resId ? [this.resId] : false,\n                default_partner_ids: this.resId ? [this.resId] : false,\n                default_composition_mode: \"comment\",\n                default_use_template: true,\n                default_subject: \"Comment\",\n            },\n        });\n    }\n    onOpenPartnerClick() {\n        this.action.doAction({\n            type: \"ir.actions.act_window\",\n            res_model: \"res.partner\",\n            views: [[false, \"form\"]],\n            res_id: this.voip.partner.id,\n            target: \"new\",\n        });\n    }\n    onScheduleActivity() {\n        this.action.doAction({\n            type: \"ir.actions.act_window\",\n            res_model: \"mail.activity\",\n            views: [[false, \"form\"]],\n            target: \"new\",\n            context: {\n                default_res_id: this.resId,\n                default_res_model: this.model,\n            },\n        });\n    }\n    onTransfer(event) {\n        if (this.transferPopover.isOpen) {\n            return;\n        }\n        this.transferPopover.open(event.currentTarget, {\n            onTransfer: this.onTransferCall.bind(this),\n        });\n    }\n    onTransferCall(transferTo) {\n        if (transferTo) {\n            this.agent.transfer(transferTo);\n        }\n    }\n    onHold() {\n        this.agent.hold();\n    }\n    onMute() {\n        this.agent.mute();\n    }\n    onAccept() {\n        this.agent.accept();\n        this.state.elapsedSeconds = 0;\n    }\n    onHangup() {\n        this.agent.hangup();\n        clearInterval(this.timer);\n    }\n    onOpenNumpad() {\n        this.state.numpad = !this.state.numpad;\n    }\n    onNumpadValue(key) {\n        this.agent.session?.sessionDescriptionHandler.sendDtmf(key);\n    }\n}\nCall.template = \"voip_oca.Call\";\nCall.components = {Numpad};\n"
  },
  {
    "path": "voip_oca/static/src/components/call/call.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.Call\">\n        <t t-if=\"!this.state.numpad\">\n            <div\n                class=\"d-flex flex-column justify-content-center align-items-center py-2\"\n            >\n                <t t-if=\"voip.partner and voip.partner.id\">\n                    <img\n                        class=\"rounded-circle\"\n                        t-att-src=\"voip.imagePartner(voip.partner.id)\"\n                    />\n                    <span class=\"mt-2 fw-bolder\" t-esc=\"voip.partner.name\" />\n                    <span class=\"mt-2\" t-esc=\"voip.partner.displayName\" />\n                </t>\n                <t t-else=\"\">\n                    <span class=\"fw-bolder\">No contact info</span>\n                </t>\n                <span class=\"mt-2\">\n                    <i class=\"fa fa-phone\" />\n                    <span class=\"mt-2 mx-2\" t-esc=\"voip.call.phoneNumber\" />\n                </span>\n                <span class=\"mt-2 small text-muted\" t-if=\"voip.call\">\n                    <i class=\"px-2\" t-att-class=\"voip.call.iconTypeCall\" />\n                    <t t-esc=\"voip.call.dateStr\" />\n                </span>\n                <span class=\"mt-2 small\">\n                    In call for: <t t-esc=\"duration\" />\n                </span>\n            </div>\n            <div class=\"d-flex flex-column px-3 pt-2\">\n                <span>Actions</span>\n                <div class=\"d-flex justify-content-around my-3\">\n                    <button\n                        class=\"btn btn-secondary p-3 rounded-circle\"\n                        title=\"Send email\"\n                        t-on-click=\"onEmailClick\"\n                    >\n                        <i class=\"fa fa-fw fa-lg fa-envelope-o\" />\n                    </button>\n                    <button\n                        t-if=\"voip.partner and voip.partner.id\"\n                        class=\"btn btn-secondary p-3 rounded-circle\"\n                        title=\"Info contact\"\n                        t-on-click=\"onOpenPartnerClick\"\n                    >\n                        <i class=\"fa fa-fw fa-lg fa-user\" />\n                    </button>\n                    <button\n                        class=\"btn btn-secondary p-3 rounded-circle\"\n                        title=\"Schedule activity\"\n                        t-on-click=\"onScheduleActivity\"\n                    >\n                        <i class=\"fa fa-fw fa-lg fa-clock-o\" />\n                    </button>\n                </div>\n            </div>\n            <div\n                class=\"d-flex flex-column px-3\"\n                t-if=\"voip.call.state == 'calling' and voip.call.typeCall == 'incoming'\"\n            >\n                <div class=\"d-flex justify-content-around my-3\">\n                    <button\n                        class=\"btn btn-success p-3 rounded-circle\"\n                        title=\"Accept\"\n                        t-on-click=\"onAccept\"\n                    >\n                        <i class=\"fa fa-fw fa-lg fa-phone\" />\n                    </button>\n                </div>\n            </div>\n            <div class=\"d-flex flex-column px-3\" t-if=\"voip.call.state == 'ongoing' \">\n                <span>Call</span>\n                <div class=\"d-flex justify-content-around my-3\">\n                    <button\n                        class=\"btn btn-secondary p-3 rounded-circle\"\n                        title=\"Transfer\"\n                        t-on-click=\"onTransfer\"\n                    >\n                        <i class=\"fa fa-fw fa-lg fa-arrows-h\" />\n                    </button>\n                    <button\n                        class=\"btn btn-secondary p-3 rounded-circle\"\n                        title=\"Mute\"\n                        t-on-click=\"onMute\"\n                    >\n                        <i class=\"fa fa-fw fa-lg fa-microphone\" />\n                    </button>\n                    <button\n                        class=\"btn btn-secondary p-3 rounded-circle\"\n                        title=\"Pause\"\n                        t-on-click=\"onHold\"\n                    >\n                        <i\n                            t-attf-class=\"fa fa-fw fa-lg #{ agent.isHolded? 'fa-play': 'fa-pause' }\"\n                        />\n                    </button>\n                </div>\n            </div>\n        </t>\n        <t t-else=\"\">\n            <Numpad onNumpadValue.bind=\"onNumpadValue\" />\n        </t>\n        <div\n            class=\"o_voip_softphone_footer d-flex justify-content-around align-items-center p-3\"\n        >\n            <button\n                class=\"btn shadow-none\"\n                title=\"Open Numpad\"\n                t-on-click=\"() => this.onOpenNumpad()\"\n            >\n                <i class=\"fa fa-fw fa-lg fa-keyboard-o\" />\n            </button>\n            <button\n                class=\"btn text-danger shadow-none\"\n                title=\"Call\"\n                t-on-click=\"() => this.onHangup()\"\n            >\n                <i class=\"fa fa-fw fa-lg fa-phone\" />\n            </button>\n        </div>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/call_list/call_list.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\n\nimport {Component, onMounted} from \"@odoo/owl\";\nimport {_t} from \"@web/core/l10n/translation\";\nimport {registry} from \"@web/core/registry\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class CallList extends Component {\n    setup() {\n        super.setup();\n        this.voip = useService(\"voip_oca\");\n        onMounted(() => this.voip.searchCalls());\n    }\n\n    onClick(call) {\n        this.voip.open({call: call});\n    }\n}\nCallList.props = {records: {type: Array}};\nCallList.template = \"voip_oca.CallList\";\n\nregistry.category(\"voip_elements\").add(\"call_list\", {\n    component: CallList,\n    order: 10,\n    title: _t(\"Calls\"),\n    input: \"calls\",\n    search: (voip, value) => voip.searchCalls(value),\n    call: (voip) => {\n        if (voip.calls) {\n            voip.open({call: voip.calls[0], partner: voip.calls[0]});\n        }\n    },\n});\n"
  },
  {
    "path": "voip_oca/static/src/components/call_list/call_list.scss",
    "content": ".o_voip_call_item {\n    border-bottom: 1px solid var(--border-color, #d8dadd) !important;\n}\n"
  },
  {
    "path": "voip_oca/static/src/components/call_list/call_list.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.CallList\">\n        <t t-foreach=\"props.records\" t-as=\"call\" t-key=\"call.id\">\n            <div\n                class=\"o_voip_call_item d-flex flex-column p-3 cursor-pointer\"\n                t-on-click=\"() => this.onClick(call)\"\n            >\n                <span class=\"fw-bold\" t-esc=\"call.partner[1]\" />\n                <span t-esc=\"call.displayName\" />\n                <div class=\"small text-muted\">\n                    <t t-esc=\"call.dateStr\" />\n                    <t t-if=\"call.duration\"> • <t t-esc=\"call.durationStr\" />\n                    </t>\n                </div>\n            </div>\n        </t>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/numpad/numpad.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {Component, onMounted, useRef, useState} from \"@odoo/owl\";\nimport {useSelection} from \"@mail/utils/common/hooks\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class Numpad extends Component {\n    setup() {\n        super.setup();\n        this.keys = [\"1\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \"8\", \"9\", \"*\", \"0\", \"#\"];\n        this.voip = useState(useService(\"voip_oca\"));\n        this.numpadValue = useRef(\"numpadValue\");\n        this.selectionNumpad = useSelection({\n            refName: \"numpadValue\",\n            model: this.voip.numpad.selection,\n        });\n        onMounted(() => this.numpadValue.el.focus());\n    }\n\n    onKeyClick(key) {\n        const {value} = this.voip.numpad;\n        const {selectionStart, selectionEnd} = this.numpadValue.el;\n        this.voip.numpad.value =\n            value.slice(0, selectionStart) + key + value.slice(selectionEnd);\n        this.numpadValue.el.focus();\n        this.selectionNumpad.restore();\n        this.onNumpadValue({key});\n    }\n\n    onNumpadValue(ev) {\n        const {value} = this.voip.numpad;\n        if (ev.key === \"Enter\" && value.length > 0) {\n            this.props.onCall();\n            return;\n        }\n        this.props.onNumpadValue(ev.key);\n    }\n\n    deleteNumber() {\n        const {value} = this.voip.numpad;\n        if (value.length > 0) {\n            this.voip.numpad.value = value.slice(0, -1);\n        }\n    }\n}\nNumpad.props = {\n    onNumpadValue: {type: Function, optional: true},\n    onCall: {type: Function, optional: true},\n};\nNumpad.defaultProps = {\n    // eslint-disable-next-line no-empty-function\n    onNumpadValue: () => {},\n    // eslint-disable-next-line no-empty-function\n    onCall: () => {},\n};\nNumpad.template = \"voip_oca.Numpad\";\n"
  },
  {
    "path": "voip_oca/static/src/components/numpad/numpad.scss",
    "content": ".no-border {\n    outline: none;\n}\n.o_numpad_input {\n    width: 100%;\n}\n"
  },
  {
    "path": "voip_oca/static/src/components/numpad/numpad.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.Numpad\">\n        <div class=\"d-flex border-bottom justify-content-around\">\n            <input\n                class=\"o_numpad_input ps-3 border-0 no-border\"\n                placeholder=\"Enter number...\"\n                t-model=\"voip.numpad.value\"\n                t-ref=\"numpadValue\"\n                t-on-keydown=\"onNumpadValue\"\n            />\n            <button\n                class=\"btn o_numpad_delete\"\n                title=\"Delete\"\n                t-on-click=\"() => this.deleteNumber()\"\n            >\n                <i class=\"fa fa-arrow-left\" />\n            </button>\n        </div>\n        <div class=\"d-flex justify-content-center row row-cols-3 mx-0\">\n            <button\n                t-foreach=\"keys\"\n                t-as=\"key\"\n                t-key=\"key\"\n                t-esc=\"key\"\n                t-on-click=\"() => this.onKeyClick(key)\"\n                t-att-name=\"key\"\n                class=\"o_numpad_button btn btn-light py-3 fw-normal fs-2 \"\n            />\n        </div>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/partner/partner.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\n\nimport {Component} from \"@odoo/owl\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class Partner extends Component {\n    setup() {\n        super.setup();\n        this.action = useService(\"action\");\n        this.voip = useService(\"voip_oca\");\n        this.agent = useService(\"voip_agent_oca\");\n        this.store = useService(\"mail.store\");\n    }\n    get phoneNumber() {\n        return (\n            this.props.call.phoneNumber ||\n            this.props.partner.mobileNumber ||\n            this.props.partner.landlineNumber\n        );\n    }\n    get model() {\n        if (this.props.activity && this.props.activity.res_model) {\n            return this.props.activity.res_model;\n        }\n        return \"res.partner\";\n    }\n    get resId() {\n        if (this.props.activity && this.props.activity.id) {\n            return this.props.activity.id;\n        }\n        return this.props.partner.id;\n    }\n    onClose() {\n        this.voip.call = false;\n        this.voip.activity = false;\n        this.voip.partner = false;\n    }\n    onOpenDocument() {\n        this.action.doAction({\n            type: \"ir.actions.act_window\",\n            res_model: this.model,\n            views: [[false, \"form\"]],\n            target: \"new\",\n            res_id: this.resId,\n        });\n    }\n    onEmailClick() {\n        this.action.doAction({\n            type: \"ir.actions.act_window\",\n            res_model: \"mail.compose.message\",\n            views: [[false, \"form\"]],\n            target: \"new\",\n            context: {\n                default_model: this.model,\n                default_res_ids: this.resId ? [this.resId] : false,\n                default_partner_ids: this.resId ? [this.resId] : false,\n                default_composition_mode: \"comment\",\n                default_use_template: true,\n                default_subject: \"Comment\",\n            },\n        });\n    }\n    onOpenPartnerClick() {\n        this.action.doAction({\n            type: \"ir.actions.act_window\",\n            res_model: \"res.partner\",\n            views: [[false, \"form\"]],\n            res_id: this.props.partner.id,\n            target: \"new\",\n        });\n    }\n    onNewPartnerClick() {\n        this.action.doAction({\n            type: \"ir.actions.act_window\",\n            res_model: \"res.partner\",\n            views: [[false, \"form\"]],\n            target: \"new\",\n            context: {\n                default_phone: this.phoneNumber,\n            },\n        });\n    }\n    onScheduleActivity() {\n        this.action.doAction({\n            type: \"ir.actions.act_window\",\n            res_model: \"mail.activity\",\n            views: [[false, \"form\"]],\n            target: \"new\",\n            context: {\n                default_res_id: this.resId,\n                default_res_model: this.model,\n            },\n        });\n    }\n    onCall() {\n        this.agent.call({number: this.phoneNumber, partner: this.props.partner});\n    }\n    async onMarkAsDone() {\n        const thread = this.store.Thread.insert({\n            model: this.props.activity.res_model,\n            id: this.props.activity.res_id,\n        });\n        await this.props.activity.markAsDone();\n        await thread.fetchData([\"activities\"]);\n        await this.store.fetchData({systray_get_activities: true});\n        this.voip.call = false;\n        this.voip.activity = false;\n        this.voip.partner = false;\n    }\n    async onEdit() {\n        await this.props.activity.edit();\n    }\n    async onDelete() {\n        await this.props.activity.delete();\n        await this.env.services.orm.unlink(\"mail.activity\", [this.props.activity.id]);\n        this.voip.call = false;\n        this.voip.activity = false;\n        this.voip.partner = false;\n    }\n}\nPartner.props = {\n    partner: {type: Object},\n    activity: {type: Object, optional: true},\n    call: {type: Object, optional: true},\n};\nPartner.template = \"voip_oca.Partner\";\n"
  },
  {
    "path": "voip_oca/static/src/components/partner/partner.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.Partner\">\n        <div class=\"d-flex align-items-start w-100 py-2\">\n            <button class=\"btn\" t-on-click=\"onClose\">\n                <i class=\"fa fa-chevron-left\" />\n            </button>\n        </div>\n        <div\n            class=\"o_voip_partner_header d-flex flex-column justify-content-center align-items-center\"\n        >\n            <t t-if=\"props.partner.id\">\n                <img\n                    class=\"rounded-circle\"\n                    t-att-src=\"voip.imagePartner(props.partner.id)\"\n                />\n                <span class=\"mt-2 fw-bolder\" t-esc=\"props.partner.name\" />\n            </t>\n            <t t-else=\"\">\n                <span class=\"fw-bolder\">No contact info</span>\n            </t>\n            <t t-if=\"phoneNumber\">\n                <button class=\"btn text-success\" t-on-click=\"onCall\">\n                    <i class=\"fa fa-phone\" />\n                    <span class=\"mt-2 mx-2\" t-esc=\"phoneNumber\" />\n                </button>\n            </t>\n            <span class=\"mt-2 small text-muted\" t-if=\"props.call\">\n                <i class=\"px-2\" t-att-class=\"props.call.iconTypeCall\" />\n                <t t-esc=\"props.call.dateStr\" />\n                <t t-if=\"props.call.duration\"> • <t t-esc=\"props.call.durationStr\" />\n                </t>\n            </span>\n        </div>\n        <div class=\"o_voip_partner_actions d-flex flex-column px-3 pt-4\">\n            <span>Actions</span>\n            <div class=\"d-flex justify-content-around my-3\">\n                <button\n                    t-if=\"this.props.activity.id\"\n                    class=\"btn btn-secondary p-3 rounded-circle\"\n                    title=\"Related document\"\n                    t-on-click=\"onOpenDocument\"\n                >\n                    <i class=\"fa fa-fw fa-lg fa-file-text-o\" />\n                </button>\n                <button\n                    class=\"btn btn-secondary p-3 rounded-circle\"\n                    title=\"Send email\"\n                    t-on-click=\"onEmailClick\"\n                >\n                    <i class=\"fa fa-fw fa-lg fa-envelope-o\" />\n                </button>\n                <button\n                    t-if=\"this.props.partner.id\"\n                    class=\"btn btn-secondary p-3 rounded-circle\"\n                    title=\"Info contact\"\n                    t-on-click=\"onOpenPartnerClick\"\n                >\n                    <i class=\"fa fa-fw fa-lg fa-user\" />\n                </button>\n                <button\n                    t-if=\"!this.props.partner.id\"\n                    class=\"btn btn-secondary p-3 rounded-circle\"\n                    title=\"New contact\"\n                    t-on-click=\"onNewPartnerClick\"\n                >\n                    <i class=\"fa fa-fw fa-lg fa-plus\" />\n                </button>\n                <button\n                    class=\"btn btn-secondary p-3 rounded-circle\"\n                    title=\"Schedule activity\"\n                    t-on-click=\"onScheduleActivity\"\n                >\n                    <i class=\"fa fa-fw fa-lg fa-clock-o\" />\n                </button>\n            </div>\n        </div>\n        <div\n            t-if=\"props.activity.id\"\n            class=\"o_voip_partner_activity d-flex flex-column px-3\"\n        >\n            <span>Related activity</span>\n            <div class=\"d-flex justify-content-around my-3\">\n                <button\n                    class=\"btn btn-secondary p-3 rounded-circle\"\n                    title=\"Mark as done\"\n                    t-on-click=\"onMarkAsDone\"\n                >\n                    <i class=\"fa fa-fw fa-lg fa-check\" />\n                </button>\n                <button\n                    class=\"btn btn-secondary p-3 rounded-circle\"\n                    title=\"Edit activity\"\n                    t-on-click=\"onEdit\"\n                >\n                    <i class=\"fa fa-fw fa-lg fa-pencil\" />\n                </button>\n                <button\n                    class=\"btn btn-secondary p-3 rounded-circle\"\n                    title=\"Cancel activity\"\n                    t-on-click=\"onDelete\"\n                >\n                    <i class=\"fa fa-fw fa-lg fa-times\" />\n                </button>\n            </div>\n        </div>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/partner_list/partner_list.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\n\nimport {Component, onMounted} from \"@odoo/owl\";\nimport {_t} from \"@web/core/l10n/translation\";\nimport {registry} from \"@web/core/registry\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class PartnerList extends Component {\n    setup() {\n        super.setup();\n        this.voip = useService(\"voip_oca\");\n        onMounted(() => this.voip.searchPartners());\n    }\n\n    onClick(partner) {\n        this.voip.open({partner});\n    }\n}\nPartnerList.props = {records: {type: Array}};\nPartnerList.template = \"voip_oca.PartnerList\";\n\nregistry.category(\"voip_elements\").add(\"partner_list\", {\n    component: PartnerList,\n    order: 30,\n    title: _t(\"Contacts\"),\n    input: \"partners\",\n    search: (voip, value) => voip.searchPartners(value),\n    call: (voip) => {\n        if (voip.partners) {\n            voip.open({partner: voip.partners[0]});\n        }\n    },\n});\n"
  },
  {
    "path": "voip_oca/static/src/components/partner_list/partner_list.scss",
    "content": ".o_voip_partner_item {\n    border-bottom: 1px solid var(--border-color, #d8dadd) !important;\n    align-items: center;\n    .image_40 {\n        width: 40px;\n        height: 40px;\n        border-radius: 0.25rem;\n        margin-right: 10px;\n    }\n}\n"
  },
  {
    "path": "voip_oca/static/src/components/partner_list/partner_list.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.PartnerList\">\n        <t t-foreach=\"props.records\" t-as=\"partner\" t-key=\"partner.id\">\n            <div\n                class=\"o_voip_partner_item d-flex cursor-pointer p-3\"\n                t-on-click=\"() => this.onClick(partner)\"\n            >\n                <img class=\"image_40\" t-att-src=\"voip.imagePartner(partner.id)\" />\n                <span class=\"fw-bolder\" t-esc=\"partner.displayName\" />\n            </div>\n        </t>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/phone_field/phone_field.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {PhoneField} from \"@web/views/fields/phone/phone_field\";\nimport {patch} from \"@web/core/utils/patch\";\nimport {useService} from \"@web/core/utils/hooks\";\n\npatch(PhoneField.prototype, {\n    setup() {\n        super.setup();\n        this.agent = useService(\"voip_agent_oca\");\n    },\n    onPhoneClick(ev) {\n        if (!this.agent.agent) {\n            return;\n        }\n        ev.preventDefault();\n        ev.stopPropagation();\n        this.agent.call({number: this.props.record.data[this.props.name]});\n    },\n});\n"
  },
  {
    "path": "voip_oca/static/src/components/phone_field/phone_field.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip.PhoneField\" t-inherit=\"web.PhoneField\" t-inherit-mode=\"extension\">\n        <xpath expr=\"//a[hasclass('o_form_uri')]\" position=\"attributes\">\n            <attribute name=\"t-on-click\">onPhoneClick</attribute>\n        </xpath>\n    </t>\n    <t\n        t-name=\"voip.FormPhoneField\"\n        t-inherit=\"web.FormPhoneField\"\n        t-inherit-mode=\"extension\"\n    >\n        <xpath expr=\"//a[hasclass('o_form_uri')]\" position=\"attributes\">\n            <attribute name=\"t-on-click\">onPhoneClick</attribute>\n        </xpath>\n        <xpath expr=\"//a[hasclass('o_phone_form_link')]\" position=\"attributes\">\n            <attribute name=\"t-on-click\">onPhoneClick</attribute>\n        </xpath>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/softphone/softphone.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\n\nimport {Component, onWillStart, useRef, useState} from \"@odoo/owl\";\nimport {Call} from \"@voip_oca/components/call/call.esm\";\nimport {Numpad} from \"@voip_oca/components/numpad/numpad.esm\";\nimport {Partner} from \"@voip_oca/components/partner/partner.esm\";\nimport {registry} from \"@web/core/registry\";\nimport {useDebounced} from \"@web/core/utils/timing\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class VoipOCASoftphone extends Component {\n    setup() {\n        this.voip = useState(useService(\"voip_oca\"));\n        this.agent = useService(\"voip_agent_oca\");\n        this.searchInput = useRef(\"searchInput\");\n        this.onSearchInput = useDebounced(() => {\n            this._searchInput(this.searchInput.el.value);\n        }, 300);\n        onWillStart(() => this._searchInput());\n    }\n    get showInput() {\n        return Boolean(\n            registry.category(\"voip_elements\").get(this.voip.selectedTab).input\n        );\n    }\n    get tabElements() {\n        return registry\n            .category(\"voip_elements\")\n            .getEntries()\n            .sort((a, b) => a[1].order - b[1].order);\n    }\n    get childComponent() {\n        const element = registry.category(\"voip_elements\").get(this.voip.selectedTab);\n        if (element) {\n            return element.component;\n        }\n        return false;\n    }\n    get childComponentProps() {\n        const props = {};\n        const element = registry.category(\"voip_elements\").get(this.voip.selectedTab);\n        if (element.input) {\n            props.records = this.voip[element.input];\n        }\n        return props;\n    }\n    async _searchInput(value) {\n        const element = registry.category(\"voip_elements\").get(this.voip.selectedTab);\n        if (element && element.search) {\n            await element.search(this.voip, value);\n        }\n    }\n    /** Action */\n    onClickBar() {\n        this.voip.handleFold();\n    }\n    onCall() {\n        if (this.voip.numpadTab && this.voip.numpad.value) {\n            return this.agent.call({number: this.voip.numpad.value});\n        }\n        if (this.voip.call) {\n            return this.agent.call({number: this.voip.call.phoneNumber});\n        }\n        if (this.voip.partner) {\n            return this.agent.call({partner: this.voip.number});\n        }\n        const element = registry.category(\"voip_elements\").get(this.voip.selectedTab);\n        return element.call(this.voip);\n    }\n    onSelectTab(tag) {\n        this.voip.selectedTab = tag;\n        this._searchInput();\n    }\n    onClosePhone(ev) {\n        ev.preventDefault();\n        ev.stopPropagation();\n        this.voip.handleVoip();\n    }\n    onOpenNumpad() {\n        this.voip.numpadTab = !this.voip.numpadTab;\n    }\n}\n\nVoipOCASoftphone.components = {Call, Numpad, Partner};\nVoipOCASoftphone.props = {};\nVoipOCASoftphone.template = \"voip_oca.VoipOCASoftphone\";\n\nregistry.category(\"main_components\").add(\"voip_oca.VoipOCASoftphone\", {\n    Component: VoipOCASoftphone,\n});\n"
  },
  {
    "path": "voip_oca/static/src/components/softphone/softphone.scss",
    "content": ".o_voip_softphone {\n    width: 300px;\n    height: auto;\n    max-height: 70%;\n    z-index: 99;\n\n    .o_voip_softphone_header {\n        background-color: $o-community-color !important;\n        .o_voip_status_icon {\n            color: $o-info;\n            &.o_voip_connected {\n                color: $o-success !important;\n            }\n            &.o_voip_disconnected {\n                color: $o-danger !important;\n            }\n            &.o_voip_connecting {\n                color: $o-warning !important;\n            }\n        }\n    }\n\n    .o_voip_softphone_content {\n        display: flex;\n        flex-direction: column;\n        flex-grow: 1;\n        overflow-y: auto;\n        .nav-tabs {\n            justify-content: space-evenly;\n            .nav-item {\n                flex: 1;\n            }\n        }\n    }\n    .o_voip_softphone_detail {\n        display: flex;\n        flex-direction: column;\n        flex-grow: 1;\n        overflow-y: auto;\n        min-height: 300px;\n        max-height: calc(60vh - 200px);\n    }\n    .o_voip_softphone_footer {\n        border-top: 1px solid var(--border-color, #d8dadd) !important;\n    }\n}\n"
  },
  {
    "path": "voip_oca/static/src/components/softphone/softphone.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.VoipOCASoftphone\">\n        <div\n            t-attf-class=\"o_voip_softphone position-absolute d-flex flex-column bottom-0 ms-2 bg-white shadow\"\n            t-if=\"voip.isOpened\"\n        >\n            <div\n                class=\"o_voip_softphone_header d-flex justify-content-between align-items-center rounded-top-3 cursor-pointer text-white\"\n                t-on-click=\"onClickBar\"\n            >\n                <div>\n                    <span\n                        t-attf-class=\"o_voip_status_icon fa fa-circle ms-3 me-1 o_voip_#{voip.status}\"\n                    />\n                    <span class=\"oi oi-large oi-voip mx-1\" />\n                    <span class=\"mx-1\">VoIP</span>\n                </div>\n                <div>\n                    <button\n                        class=\"btn btn-small text-white border-0 shadow-none\"\n                        type=\"button\"\n                        t-on-click=\"onClosePhone\"\n                    >\n                        <i class=\"fa fa-close\" />\n                    </button>\n                </div>\n            </div>\n            <div t-if=\"!voip.isFolded\" class=\"o_voip_softphone_content\">\n                <div t-if=\"voip.inCall\">\n                    <Call />\n                </div>\n                <t t-else=\"\">\n                    <div t-if=\"voip.numpadTab\">\n                        <Numpad onCall.bind=\"onCall\" />\n                    </div>\n                    <div t-if=\"voip.partner and !voip.numpadTab\">\n                        <Partner t-props=\"voip.partnerProps\" />\n                    </div>\n                    <div\n                        t-if=\"!voip.partner and !voip.numpadTab\"\n                        class=\"o_voip_softphone_detail\"\n                    >\n                        <div class=\"d-flex\" t-if=\"showInput\">\n                            <input\n                                class=\"form-control border-0 shadow-none\"\n                                placeholder=\"Search\"\n                                t-model.trim=\"voip.searchValue\"\n                                t-ref=\"searchInput\"\n                                t-on-input=\"onSearchInput\"\n                            />\n                            <button class=\"oi oi-search btn\" />\n                        </div>\n\n                        <ul class=\"nav nav-tabs text-center\">\n                            <li\n                                class=\"nav-item fs-6\"\n                                t-foreach=\"tabElements\"\n                                t-as=\"tab\"\n                                t-key=\"tab[0]\"\n                                t-if=\"!voip.numpadTab and !voip.partner\"\n                            >\n                                <a\n                                    t-attf-class=\"nav-link #{voip.selectedTab == tab[0] ? 'active' : ''}\"\n                                    t-att-name=\"tab[0]\"\n                                    aria-current=\"page\"\n                                    href=\"#\"\n                                    t-esc=\"tab[1].title\"\n                                    t-on-click=\"() =>this.onSelectTab(tab[0])\"\n                                />\n                            </li>\n                        </ul>\n                        <t\n                            t-component=\"childComponent\"\n                            t-props=\"childComponentProps\"\n                            t-if=\"childComponent\"\n                        />\n                    </div>\n                    <div\n                        class=\"o_voip_softphone_footer d-flex justify-content-around align-items-center p-3\"\n                    >\n                        <button\n                            class=\"btn shadow-none\"\n                            title=\"Open Numpad\"\n                            t-on-click=\"() => this.onOpenNumpad()\"\n                        >\n                            <i class=\"fa fa-fw fa-lg fa-keyboard-o\" />\n                        </button>\n                        <button\n                            class=\"btn shadow-none\"\n                            title=\"Call\"\n                            t-on-click=\"() => this.onCall()\"\n                        >\n                            <i class=\"fa fa-fw fa-lg fa-phone\" />\n                        </button>\n                    </div>\n                </t>\n            </div>\n        </div>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/transfer/transfer.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\n\nimport {Component, onMounted, useRef, useState} from \"@odoo/owl\";\n\nexport class Transfer extends Component {\n    setup() {\n        this.inputRef = useRef(\"input\");\n        this.state = useState({value: \"\"});\n        onMounted(() => this.inputRef.el.focus());\n    }\n    onKeydown(ev) {\n        if (ev.key === \"Escape\") {\n            this.props.close();\n        }\n        if (ev.key === \"Enter\") {\n            this.transfer();\n        }\n    }\n    transfer() {\n        this.props.onTransfer(this.state.value);\n        this.props.close();\n    }\n}\nTransfer.template = \"voip_oca.Transfer\";\nTransfer.props = {\n    onTransfer: {type: Function},\n    close: {type: Function},\n};\n"
  },
  {
    "path": "voip_oca/static/src/components/transfer/transfer.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.Transfer\">\n        <div>\n            <h3 class=\"popover-header d-flex\">\n                Transfer to\n                <span class=\"flex-grow-1\" />\n                <button\n                class=\"btn-close btn-sm\"\n                data-hotkey=\"x\"\n                t-on-click=\"props.close\"\n            />\n            </h3>\n            <div class=\"d-flex p-2\">\n                <input\n                    class=\"form-control\"\n                    type=\"text\"\n                    placeholder=\"Enter number\"\n                    t-model=\"state.value\"\n                    t-ref=\"input\"\n                    t-on-keydown=\"onKeydown\"\n                />\n                <button\n                    class=\"btn btn-primary ms-2\"\n                    data-hotkey=\"q\"\n                    t-on-click=\"transfer\"\n                >Transfer</button>\n            </div>\n        </div>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/components/voip_oca_systray/voip_oca_systray.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {Component, useState} from \"@odoo/owl\";\nimport {registry} from \"@web/core/registry\";\nimport {useService} from \"@web/core/utils/hooks\";\n\nexport class VoipOCASystray extends Component {\n    setup() {\n        this.voip_oca = useState(useService(\"voip_oca\"));\n    }\n    onClick() {\n        this.voip_oca.handleVoip();\n    }\n}\nVoipOCASystray.props = {};\nVoipOCASystray.template = \"voip_oca.VoipOCASystray\";\nregistry.category(\"systray\").add(\"voip_systray_oca\", {Component: VoipOCASystray});\n"
  },
  {
    "path": "voip_oca/static/src/components/voip_oca_systray/voip_oca_systray.scss",
    "content": ".o_nav_entry {\n    &:hover {\n        background-color: rgba(0, 0, 0, 0.075);\n    }\n    &.o_voip_disconnected {\n        background-color: $o-danger !important;\n    }\n    &.o_voip_connecting {\n        background-color: $o-warning !important;\n    }\n}\n"
  },
  {
    "path": "voip_oca/static/src/components/voip_oca_systray/voip_oca_systray.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<templates xml:space=\"preserve\">\n    <t t-name=\"voip_oca.VoipOCASystray\">\n        <div>\n            <button\n                t-attf-class=\"o_nav_entry o_voip_#{ voip_oca.status }\"\n                title=\"Softphone\"\n                t-on-click=\"onClick\"\n                t-if=\"voip_oca.pbx_id\"\n            >\n                <i class=\"oi oi-large oi-voip\" />\n            </button>\n        </div>\n    </t>\n</templates>\n"
  },
  {
    "path": "voip_oca/static/src/core/phone/@types/model.d.ts",
    "content": "declare module \"models\" {\n  import {Call as CallClass} from \"@voip_oca/core/phone/call_model\";\n\n  export interface Call extends CallClass {}\n  export interface Thread {\n    recipients: Follower[];\n  }\n\n  export interface Models {\n    Call: Call;\n  }\n}\n"
  },
  {
    "path": "voip_oca/static/src/core/phone/call_model.esm.js",
    "content": "/* @odoo-module */\n\nimport {Record} from \"@mail/core/common/record\";\nimport {deserializeDateTime} from \"@web/core/l10n/dates\";\nimport {durationStr} from \"../../utils/utils.esm\";\n\n/**\n * @typedef Data\n * @property {[number, string]} partner_id\n * @property {[number, string]} user_id\n * @property {[number, string]} create_uid\n * @property {[number, string]} write_uid\n * @property {String} phone_number\n * @property {'incoming'|'outgoing'} type_call\n * @property {'aborted', 'calling', 'missed', 'ongoing', 'rejected', 'terminated'} state\n * @property {String} activity_name\n * @property {String} end_date\n * @property {String} start_date\n * @property {String} create_date\n * @property {String} write_date\n */\n\nexport class Call extends Record {\n    static id = \"id\";\n    /** @type {Object.<number, Call>} */\n    static records = {};\n    /**\n     * @param {Data} data\n     * @returns {Call}\n     * */\n    static get(data) {\n        return super.get(data);\n    }\n    /**\n     * @returns {Call|Call[]}\n     */\n    static insert() {\n        return super.insert(...arguments);\n    }\n    /**\n     * Deserialize the data and update the record.\n     * @param {Data} data\n     */\n    update(data) {\n        super.update(...arguments);\n        if (data.createDate) {\n            this.createDate = deserializeDateTime(data.createDate);\n        }\n        if (data.startDate) {\n            this.startDate = deserializeDateTime(data.startDate);\n        }\n        if (data.endDate) {\n            this.endDate = deserializeDateTime(data.endDate);\n        }\n    }\n    /**\n     * Date of the call to show\n     * @returns {Date}\n     */\n    get date() {\n        if (this.startDate) {\n            return this.startDate;\n        }\n        return this.createDate;\n    }\n    /**\n     * Date of the call to show\n     * @returns {String}\n     */\n    get dateStr() {\n        return this.date.toLocaleString(luxon.DateTime.DATETIME_SHORT);\n    }\n    get iconTypeCall() {\n        if (this.typeCall === \"incoming\") {\n            return \"fa fa-arrow-down\";\n        }\n        return \"fa fa-arrow-up\";\n    }\n    /**\n     * Duration of the call in seconds.\n     * @returns {Number}\n     */\n    get duration() {\n        if (!this.startDate || !this.endDate) {\n            return 0;\n        }\n        return (this.endDate - this.startDate) / 1000;\n    }\n    /**\n     * String translation of the duration of the call.\n     * @returns {String}\n     */\n    get durationStr() {\n        return durationStr(this.duration);\n    }\n}\n\nCall.register();\n"
  },
  {
    "path": "voip_oca/static/src/services/voip_agent_service.esm.js",
    "content": "/* global SIP */\n/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n    This service will contain all the logic necessary for the integration\n    with the SIP.\n*/\nimport {_t} from \"@web/core/l10n/translation\";\nimport {loadBundle} from \"@web/core/assets\";\nimport {reactive} from \"@odoo/owl\";\nimport {registry} from \"@web/core/registry\";\n\nexport class VoipAgent {\n    constructor(env, services) {\n        this.toneAudio = new window.Audio();\n        this.callAudio = new window.Audio();\n        this.voip = services.voip_oca;\n        this.multiTab = services.multi_tab;\n        this.orm = services.orm;\n        this.notification = services.notification;\n        this.session = false;\n        this.isMuted = false;\n        this.isHolded = false;\n        this.store = services[\"mail.store\"];\n        this.connectAgent();\n        return reactive(this);\n    }\n    get hasRtcSupport() {\n        return Boolean(\n            navigator.mediaDevices &&\n                navigator.mediaDevices.getUserMedia &&\n                window.MediaStream\n        );\n    }\n    get agentConfig() {\n        return {\n            authorizationPassword: this.voip.pbx_password,\n            authorizationUsername: this.voip.pbx_username,\n            delegate: {\n                onCallHangup: () => {\n                    this.voip.inCall = false;\n                },\n                onInvite: this.onInvite.bind(this),\n                onDisconnect: this._onDisconnect.bind(this),\n            },\n            logBuiltinEnabled: odoo.debug !== \"\",\n            logLevel: odoo.debug === \"\" ? \"error\" : \"debug\",\n            transportOptions: {\n                server: this.voip.pbx_ws,\n            },\n            uri: SIP.UserAgent.makeURI(\n                `sip:${this.voip.pbx_username}@${this.voip.pbx_domain}`\n            ),\n            userAgentString: `OCA SIP.js/${window.SIP.version}`,\n        };\n    }\n    async connectAgent() {\n        if (this.voip.mode !== \"prod\") {\n            console.info(\"Voip agent is not available in non-production mode\");\n            return;\n        }\n        this.voip.status = \"connecting\";\n        if (!this.hasRtcSupport) {\n            console.info(\"Voip agent is not available in this browser\");\n            return;\n        }\n        if (!this.voip.pbx_ws || !this.voip.pbx_username || !this.voip.pbx_password) {\n            console.info(\"Some PBX information is missing. Check your configuration\");\n            return;\n        }\n        /*\n            We want to avoid errors on the navigator.\n            We will only load the libraries if needed\n        */\n        try {\n            await loadBundle(\"voip_oca.agent_assets\");\n        } catch (error) {\n            console.error(error);\n            this.notification.add(\n                _t(\"Failed to load the SIP.js library:\\n\\n%(error)s\", {\n                    error: error.message,\n                })\n            );\n            return;\n        }\n        try {\n            this.agent = new SIP.UserAgent(this.agentConfig);\n            await this.agent.start();\n            this.registerer = new SIP.Registerer(this.agent);\n            this.registerer.stateChange.addListener(\n                this._onRegistererStateChange.bind(this)\n            );\n            this.registerer.register({\n                requestDelegate: {\n                    onReject: this._onRegistererRejected.bind(this),\n                },\n            });\n            this.voip.status = \"connected\";\n        } catch (error) {\n            console.error(error);\n            this.voip.status = \"disconnected\";\n            this.notification.add(\n                _t(\n                    \"An error occurred during the instantiation of the User Agent:\\n\\n%(error)s\",\n                    {\n                        error: error.message,\n                    }\n                )\n            );\n            return;\n        }\n    }\n    async reconnectAgent(attempt = 0) {\n        // TODO: Show the failure in the widget somehow....\n        if (attempt >= 5) {\n            this.notification.add(\n                _t(\"Failed to reconnect the User Agent. Please reload the page.\")\n            );\n            this.voip.status = \"disconnected\";\n            return;\n        }\n        if (this.reconnectingAgent) {\n            return;\n        }\n        this.reconnectingAgent = true;\n        try {\n            await this.agent.reconnect();\n            this.registerer.register();\n\n            this.voip.status = \"connected\";\n        } catch {\n            // Reconnect immediately if the connection fails, then 5 seconds, then 25, 125, 625\n            setTimeout(() => this.reconnectAgent(attempt + 1), 5 ** attempt * 1000);\n        } finally {\n            this.reconnectingAgent = false;\n        }\n    }\n    playTone(tone) {\n        this.toneAudio.currentTime = 0;\n        this.toneAudio.loop = true;\n        this.toneAudio.src = this.voip.tones[tone];\n        this.toneAudio.play();\n    }\n    stopTone() {\n        this.toneAudio.pause();\n    }\n    /* On call actions */\n    async onInvite(session) {\n        if (this.session) {\n            // We are busy here\n            session.reject({statusCode: 486});\n        }\n        await this.createCall({\n            phone_number: session.remoteIdentity.uri.user,\n            type_call: \"incoming\",\n            state: \"calling\",\n        });\n        this.voip.inCall = true;\n        this.voip.isOpened = true;\n        this.voip.isFolded = false;\n        session.stateChange.addListener(this._onSessionStateChange.bind(this));\n        /* TODO: Modify the VOIP Widget */\n        if (this.multiTab.isOnMainTab()) {\n            // We will only play the calltone if we are on the main tab\n            this.playTone(\"calltone\");\n            // TODO; Maybe we could send a notification???\n        }\n        session.delegate = {\n            onBye: this._onHanghup.bind(this),\n            onCancel: this._onCancelInvitation.bind(this),\n        };\n        this.session = session;\n        this.isMuted = false;\n        this.isHolded = false;\n    }\n    _onDisconnect(error) {\n        if (!error) {\n            return;\n        }\n        console.error(error);\n        this.notification.add(\n            _t(\"An error occurred during the connection:\\n\\n%(error)s\", {\n                error: error.message,\n            })\n        );\n\n        this.voip.status = \"connecting\";\n        this.reconnectAgent();\n    }\n    _onSessionStateChange(newState) {\n        switch (newState) {\n            case SIP.SessionState.Initial:\n            case SIP.SessionState.Terminating:\n            case SIP.SessionState.Establishing:\n                break;\n            case SIP.SessionState.Terminated:\n                // We need to stop the tone if it was not established\n                this.stopTone();\n                break;\n            case SIP.SessionState.Established:\n                this.stopTone();\n                this.setCallAudio();\n                this.session.sessionDescriptionHandler.remoteMediaStream.onaddtrack =\n                    this.setCallAudio.bind(this);\n                break;\n            default:\n                throw new Error(`Unknown session state: \"${newState}\".`);\n        }\n    }\n    setCallAudio() {\n        /* We need to set the call audio of the session */\n        const stream = new MediaStream();\n        for (const receiver of this.session.sessionDescriptionHandler.peerConnection.getReceivers()) {\n            if (receiver.track) {\n                stream.addTrack(receiver.track);\n            }\n        }\n        this.callAudio.srcObject = stream;\n        this.callAudio.play();\n    }\n    updateCallAudio() {\n        if (this.session?.sessionDescriptionHandler) {\n            this.session.sessionDescriptionHandler.enableReceiverTracks(this.isHolded);\n            this.session.sessionDescriptionHandler.enableSenderTracks(\n                !this.isHolded && !this.isMuted\n            );\n        }\n    }\n    async createCall(options) {\n        const call = await this.orm.call(\"voip.call\", \"create_call\", [\n            {\n                pbx_id: this.voip.pbx_id,\n                ...options,\n            },\n        ]);\n\n        this.voip.call = this.store.Call.insert(call);\n        if (call.partner) {\n            this.voip.partner = this.store.Persona.insert({...call.partner});\n        }\n    }\n    async call({number, partner}) {\n        console.log(arguments);\n        this.voip.isOpened = true;\n        this.voip.isFolded = false;\n        var phone_number = number;\n        if (!number && partner) {\n            phone_number = partner.mobileNumber || partner.landlineNumber;\n        }\n        this.playTone(\"dialtone\");\n        await this.createCall({\n            partner_id: partner && partner.id,\n            phone_number: phone_number,\n            type_call: \"outgoing\",\n            state: \"calling\",\n        });\n        this.voip.inCall = true;\n        if (this.voip.mode === \"prod\") {\n            const destination_number = SIP.UserAgent.makeURI(\n                `sip:${phone_number.replace(/\\D/g, \"\")}@${this.voip.pbx_domain}`\n            );\n            this.session = new SIP.Inviter(this.agent, destination_number);\n            this.session.delegate = {\n                onBye: this._onHanghup.bind(this),\n            };\n            this.isMuted = false;\n            this.isHolded = false;\n            this.session.stateChange.addListener(this._onSessionStateChange.bind(this));\n            this.session\n                .invite({\n                    requestDelegate: {\n                        onAccept: this._onInviteAccepted.bind(this),\n                        onReject: this._onInviteRejected.bind(this),\n                    },\n                })\n                .catch((error) => {\n                    // This might happen, for example, if we close the call too early.\n                    this.notification.add(\n                        _t(\"Failed to establish the call:\\n\\n%(error)s\", {\n                            error: error.message,\n                        })\n                    );\n                });\n        }\n    }\n    transfer(number) {\n        if (this.voip.mode !== \"prod\") {\n            this._onHanghup();\n            return;\n        }\n        this.session.refer(\n            SIP.UserAgent.makeURI(`sip:${number}@${this.voip.pbx_domain}`),\n            {\n                requestDelegate: {\n                    onAccept: this._onTransferAccepted.bind(this),\n                },\n            }\n        );\n    }\n    _onTransferAccepted() {\n        this.session.bye();\n        this._onHanghup();\n    }\n    _onInviteAccepted() {\n        if (!this.session) {\n            return;\n        }\n        this.stopTone();\n        this.voip.acceptCall();\n    }\n    _onInviteRejected(response) {\n        if (!this.session) {\n            return;\n        }\n        this.stopTone();\n        this.notification.add(\n            _t(\"Call rejected. Reason:\\n\\n%(reason)s\", {\n                reason: response.message.reasonPhrase,\n            })\n        );\n        this.voip.rejectCall();\n        this.session = null;\n    }\n    async _onCancelInvitation() {\n        this.stopTone();\n        this.voip.rejectCall();\n        this.session = null;\n    }\n    async _onHanghup() {\n        this.stopTone();\n        this.callAudio.srcObject = null;\n        this.callAudio.pause();\n        this.voip.call.update(\n            await this.orm.call(\"voip.call\", \"terminate_call\", [[this.voip.call.id]])\n        );\n        this.voip.inCall = false;\n        this.session = false;\n    }\n    async hangup() {\n        if (this.session) {\n            switch (this.session.state) {\n                case SIP.SessionState.Initial:\n                    if (this.voip.call.typeCall === \"outgoing\") {\n                        this.session.cancel();\n                    } else {\n                        this.session.reject();\n                    }\n                    break;\n                case SIP.SessionState.Establishing:\n                    this.session.cancel();\n                    break;\n                case SIP.SessionState.Established:\n                    this.session.bye();\n                    break;\n            }\n        }\n        this._onHanghup();\n    }\n    async mute() {\n        this.isMuted = !this.isMuted;\n        this.updateCallAudio();\n    }\n    async hold() {\n        this.isHolded = !this.isHolded;\n        try {\n            await this.session.invite({\n                requestDelegate: {\n                    onReject() {\n                        this.isHolded = !this.isHolded;\n                    },\n                },\n                sessionDescriptionHandlerOptions: {hold: this.isHolded},\n            });\n        } catch (error) {\n            console.error(error);\n            this.notification.add(\n                _t(\"Failed to put the call on hold/unhold:\\n\\n%(error)s\", {\n                    error: error.message.reasonPhrase,\n                })\n            );\n        }\n        this.updateCallAudio();\n    }\n    async accept() {\n        if (this.session) {\n            this.session.accept();\n        }\n        this.voip.acceptCall();\n    }\n    /* Registerer functions */\n    async _onRegistererRejected(response) {\n        this.notification.add(\n            _t(\n                \"An error occurred during the registration of the User Agent:\\n\\n%(error)s\",\n                {\n                    error: response.message.reasonPhrase,\n                }\n            )\n        );\n    }\n    _onRegistererStateChange(state) {\n        this.registererState = state;\n    }\n}\n\nexport const voipAgentOCAService = {\n    dependencies: [\"voip_oca\", \"multi_tab\", \"notification\", \"orm\", \"mail.store\"],\n    async start() {\n        return new VoipAgent(...arguments);\n    },\n};\n\nregistry.category(\"services\").add(\"voip_agent_oca\", voipAgentOCAService);\n"
  },
  {
    "path": "voip_oca/static/src/services/voip_oca_service.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n    This service will contain all the items necessary for the views\n    of the voip widgets.\n*/\nimport {matchString} from \"../utils/utils.esm\";\nimport {reactive} from \"@odoo/owl\";\nimport {registry} from \"@web/core/registry\";\nimport {session} from \"@web/session\";\nimport {url} from \"@web/core/utils/urls\";\nimport {user} from \"@web/core/user\";\n\nexport class VoipOCA {\n    constructor(env, services) {\n        /* Store voip data in the service, not the session */\n        Object.assign(this, session.voip);\n        delete session.voip;\n        this.status = \"disconnected\";\n        this.selectedTab = \"activity_list\";\n        this.uid = user.userId;\n        this.store = services[\"mail.store\"];\n        this.numpadTab = false;\n        this.orm = services.orm;\n        this.isOpened = false;\n        this.isFolded = false;\n        this.partner = false;\n        this.activity = false;\n        this.call = false;\n        this.inCall = false;\n        this.searchValue = \"\";\n        this.numpad = {\n            isOpen: false,\n            value: \"\",\n            selection: {\n                start: 0,\n                end: 0,\n                direction: \"none\",\n            },\n        };\n        this.user = env.services.user;\n        // We will make this service reactive,\n        // this way we will hanble the changes on the component\n        return reactive(this);\n    }\n    /* Widget Buttons */\n    handleVoip() {\n        if (!this.isOpened) {\n            this.isFolded = false;\n        }\n        this.isOpened = !this.isOpened;\n    }\n    handleFold() {\n        this.isFolded = !this.isFolded;\n    }\n    async open({partner = false, activity = false, call = false}) {\n        let partner_id = partner && partner.id;\n        if (activity) {\n            partner_id = activity.main_partner_id && activity.main_partner_id[0];\n        } else if (call) {\n            partner_id = call.partner && call.partner.id;\n        }\n        this.activity = activity || {};\n        this.call = call || {};\n        this.partner = await this.orm.call(\"res.partner\", \"format_partner\", [\n            [partner_id],\n        ]);\n    }\n    async acceptCall() {\n        this.call.update(\n            await this.orm.call(\"voip.call\", \"accept_call\", [[this.call.id]])\n        );\n    }\n    async rejectCall() {\n        this.call.update(\n            await this.orm.call(\"voip.call\", \"reject_call\", [[this.call.id]])\n        );\n        this.inCall = false;\n        this.call = false;\n    }\n    /* Elements */\n\n    get partners() {\n        return Object.values(this.store.Persona.records).filter(\n            (partner) =>\n                partner.hasPhoneNumber &&\n                (!this.searchValue ||\n                    [\n                        partner.name,\n                        partner.displayName,\n                        partner.mobileNumber,\n                        partner.landlineNumber,\n                    ].some((x) => matchString(x, this.searchValue)))\n        );\n    }\n    get activities() {\n        return Object.values(this.store.Activity.records).filter(\n            (activity) =>\n                (!this.searchValue ||\n                    [activity.summary, activity.resName, activity.main_partner].some(\n                        (x) => matchString(x, this.searchValue)\n                    )) &&\n                new Date(activity.date_deadline) <= new Date() &&\n                activity.activity_category === \"phonecall\" &&\n                activity.user_id[0] === this.uid\n        );\n    }\n\n    get calls() {\n        return Object.values(this.store.Call.records)\n            .filter(\n                (call) =>\n                    !this.searchValue ||\n                    [call.phoneNumber, call.displayName].some((x) =>\n                        matchString(x, this.searchValue)\n                    )\n            )\n            .sort((a, b) => b.date - a.date);\n    }\n    get partnerProps() {\n        return {\n            partner: this.partner || {},\n            activity: this.activity || {},\n            call: this.call || {},\n        };\n    }\n\n    /* Search functions */\n    async searchPartners(_search = \"\", offset = 0, limit = 13) {\n        const partners = await this.orm.call(\"res.partner\", \"voip_get_contacts\", [], {\n            offset,\n            limit,\n            _search,\n        });\n        for (const partner of partners) {\n            this.store.Persona.insert({...partner, type: \"partner\"});\n        }\n    }\n    async searchActivities(_search = \"\", offset = 0, limit = 13) {\n        const activities = await this.orm.call(\n            \"mail.activity\",\n            \"get_call_activities\",\n            [],\n            {\n                offset,\n                limit,\n                _search,\n            }\n        );\n        if (!activities[\"mail.activity\"]) {\n            return;\n        }\n        for (const activity of activities[\"mail.activity\"]) {\n            this.store.Activity.insert({...activity});\n        }\n    }\n    async searchCalls(_search = \"\", offset = 0, limit = 13) {\n        const calls = await this.orm.call(\"voip.call\", \"get_recent_calls\", [], {\n            offset,\n            limit,\n            _search,\n        });\n        for (const call of calls) {\n            this.store.Call.insert({...call});\n        }\n    }\n    /* Image functions */\n    imagePartner(partner_id) {\n        return url(\"/web/image\", {\n            model: \"res.partner\",\n            id: partner_id,\n            field: \"avatar_128\",\n        });\n    }\n}\n\nexport const voipOCAService = {\n    dependencies: [\"mail.store\", \"orm\"],\n    async start() {\n        return new VoipOCA(...arguments);\n    },\n};\n\nregistry.category(\"services\").add(\"voip_oca\", voipOCAService);\n"
  },
  {
    "path": "voip_oca/static/src/utils/utils.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\n\nimport {_t} from \"@web/core/l10n/translation\";\n\nexport function normalize(str) {\n    return str\n        .toLowerCase()\n        .replaceAll(/\\p{Diacritic}/gu, \"\")\n        .normalize(\"NFD\");\n}\n\nexport function matchString(targetString, substring) {\n    if (!targetString) {\n        return false;\n    }\n    return normalize(targetString).includes(normalize(substring));\n}\n\nexport function durationStr(duration) {\n    if (!duration) {\n        return \"\";\n    }\n    const minutes = Math.floor(duration / 60);\n    const seconds = duration % 60;\n    if (!minutes) {\n        switch (seconds) {\n            case 0:\n                return _t(\"less than a second\");\n            case 1:\n                return _t(\"1 second\");\n            default:\n                return _t(\"%(seconds)s seconds\", {seconds});\n        }\n    }\n    if (!seconds) {\n        switch (minutes) {\n            case 1:\n                return _t(\"1 minute\");\n            case 2:\n                return _t(\"2 minutes\");\n            default:\n                return _t(\"%(minutes)s minutes\", {minutes});\n        }\n    }\n    return _t(\"%(minutes)s min %(seconds)s sec\", {minutes, seconds});\n}\n"
  },
  {
    "path": "voip_oca/static/tests/components/ActivityTab.esm.test.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {click, start, startServer} from \"@mail/../tests/mail_test_helpers\";\nimport {expect, test} from \"@odoo/hoot\";\nimport {animationFrame} from \"@odoo/hoot-dom\";\nimport {defineVoipModels} from \"../voip_test_helpers.esm\";\nimport {patchWithCleanup} from \"@web/../tests/web_test_helpers\";\nimport {session} from \"@web/session\";\n\n// As we use mail as a dependancy, we need to declare models.\ndefineVoipModels();\n\ntest(\"Check Activity Tab\", async () => {\n    const pyEnv = await startServer();\n    const partnerId = pyEnv[\"res.partner\"].create({\n        name: \"Test Partner\",\n        display_name: \"Test Partner\",\n        phone: \"123456789\",\n    });\n    const activityTypeId = pyEnv[\"mail.activity.type\"].create({\n        name: \"Call\",\n        category: \"phonecall\",\n    });\n    pyEnv[\"mail.activity\"].create({\n        res_id: partnerId,\n        res_model: \"res.partner\",\n        user_id: pyEnv.user.id,\n        main_partner_id: partnerId,\n        main_partner: \"Test Partner\",\n        activity_category: \"phonecall\",\n        activity_type_id: activityTypeId.id,\n    });\n    patchWithCleanup(session, {\n        ...session,\n        voip: {pbx_id: 1},\n    });\n    await start();\n    expect(\".o_menu_systray .o_nav_entry[title='Softphone']\").toHaveCount(1);\n    click(\".o_menu_systray .o_nav_entry[title='Softphone']\");\n    await animationFrame();\n    expect(\".o_voip_softphone\").toHaveCount(1);\n    click(\".o_voip_softphone li a[name='activity_list']\");\n    await animationFrame();\n    expect(\".o_voip_softphone .o_voip_activity_item\").toHaveCount(1);\n    click(\".o_voip_softphone .o_voip_activity_item\", {text: \"Test Partner\"});\n    await animationFrame();\n    expect(\".o_voip_softphone .o_voip_partner_header\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_partner_actions\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_partner_activity\").toHaveCount(1);\n});\n"
  },
  {
    "path": "voip_oca/static/tests/components/CallTab.esm.test.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {click, start, startServer} from \"@mail/../tests/mail_test_helpers\";\nimport {expect, test} from \"@odoo/hoot\";\nimport {animationFrame} from \"@odoo/hoot-dom\";\nimport {defineVoipModels} from \"../voip_test_helpers.esm\";\nimport {patchWithCleanup} from \"@web/../tests/web_test_helpers\";\nimport {session} from \"@web/session\";\n\n// As we use mail as a dependancy, we need to declare models.\ndefineVoipModels();\n\ntest(\"Check Call Tab\", async () => {\n    const pyEnv = await startServer();\n    const [partnerId1, partnerId2] = pyEnv[\"res.partner\"].create([\n        {\n            name: \"Test Partner\",\n            mobile: \"+34 666 666 666\",\n        },\n        {\n            name: \"Other Test Partner\",\n            phone: \"777 777\",\n        },\n    ]);\n    pyEnv[\"voip.call\"].create([\n        {\n            name: \"Test Partner\",\n            phone_number: \"+34 666 666 666\",\n            state: \"terminated\",\n            pbx_id: 1,\n            partner_id: partnerId1,\n            user_id: pyEnv.user.id,\n            start_date: \"2016-12-11 05:15:00\",\n            end_date: \"2016-12-11 05:30:00\",\n            create_date: \"2016-12-11 05:15:00\",\n        },\n        {\n            name: \"Other Test Partner\",\n            phone_number: \"777 777\",\n            state: \"terminated\",\n            pbx_id: 1,\n            partner_id: partnerId2,\n            user_id: pyEnv.user.id,\n            start_date: \"2016-12-11 05:15:00\",\n            end_date: \"2016-12-11 05:30:00\",\n            create_date: \"2016-12-11 05:15:00\",\n        },\n    ]);\n    patchWithCleanup(session, {\n        ...session,\n        voip: {pbx_id: 1},\n    });\n    await start();\n    expect(\".o_menu_systray .o_nav_entry[title='Softphone']\").toHaveCount(1);\n    click(\".o_menu_systray .o_nav_entry[title='Softphone']\");\n    await animationFrame();\n    expect(\".o_voip_softphone\").toHaveCount(1);\n    click(\".o_voip_softphone li a[name='call_list']\");\n    await animationFrame();\n    expect(\".o_voip_softphone .o_voip_call_item\").toHaveCount(2);\n    click(\".o_voip_softphone .o_voip_call_item\", {text: \"Test Partner\"});\n    await animationFrame();\n    expect(\".o_voip_softphone .o_voip_partner_header\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_partner_actions\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_partner_activity\").toHaveCount(0);\n});\n"
  },
  {
    "path": "voip_oca/static/tests/components/NumpadTab.esm.test.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {click, start} from \"@mail/../tests/mail_test_helpers\";\nimport {expect, test} from \"@odoo/hoot\";\nimport {animationFrame} from \"@odoo/hoot-dom\";\n\nimport {defineVoipModels} from \"../voip_test_helpers.esm\";\nimport {patchWithCleanup} from \"@web/../tests/web_test_helpers\";\nimport {session} from \"@web/session\";\n\n// As we use mail as a dependancy, we need to declare models.\ndefineVoipModels();\n\ntest(\"Check Numpad Tab\", async () => {\n    patchWithCleanup(session, {\n        ...session,\n        voip: {pbx_id: 1},\n    });\n    await start();\n    expect(\".o_menu_systray .o_nav_entry[title='Softphone']\").toHaveCount(1);\n    click(\".o_menu_systray .o_nav_entry[title='Softphone']\");\n    await animationFrame();\n    expect(\".o_voip_softphone\").toHaveCount(1);\n    click(\".o_voip_softphone .o_voip_softphone_footer button[title='Open Numpad']\");\n    await animationFrame();\n    expect(\".o_voip_softphone .o_numpad_input\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_numpad_input\").toHaveValue(\"\");\n    expect(\".o_voip_softphone .o_numpad_button\").toHaveCount(12);\n    click(\".o_voip_softphone .o_numpad_button\", {text: \"1\"});\n    await animationFrame();\n    expect(\".o_voip_softphone .o_numpad_input\").toHaveValue(\"1\");\n    click(\".o_voip_softphone .o_numpad_button\", {text: \"2\"});\n    await animationFrame();\n    expect(\".o_voip_softphone .o_numpad_input\").toHaveValue(\"12\");\n    click(\".o_voip_softphone .o_numpad_delete\");\n    await animationFrame();\n    expect(\".o_voip_softphone .o_numpad_input\").toHaveValue(\"1\");\n});\n"
  },
  {
    "path": "voip_oca/static/tests/components/PartnerTab.esm.test.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {click, start, startServer} from \"@mail/../tests/mail_test_helpers\";\nimport {expect, test} from \"@odoo/hoot\";\nimport {animationFrame} from \"@odoo/hoot-dom\";\nimport {defineVoipModels} from \"../voip_test_helpers.esm\";\nimport {patchWithCleanup} from \"@web/../tests/web_test_helpers\";\nimport {session} from \"@web/session\";\n\n// As we use mail as a dependancy, we need to declare models.\ndefineVoipModels();\n\ntest(\"Check Partner Tab\", async () => {\n    const pyEnv = await startServer();\n    pyEnv[\"res.partner\"].create({\n        name: \"Test Partner\",\n        display_name: \"Test Partner\",\n        mobile: \"123456789\",\n    });\n    pyEnv[\"res.partner\"].create({\n        name: \"Test Partner 2\",\n        display_name: \"Test Partner\",\n        mobile: \"123456789\",\n    });\n    patchWithCleanup(session, {\n        ...session,\n        voip: {pbx_id: 1},\n    });\n    await start();\n    expect(\".o_menu_systray .o_nav_entry[title='Softphone']\").toHaveCount(1);\n    click(\".o_menu_systray .o_nav_entry[title='Softphone']\");\n    await animationFrame();\n    expect(\".o_voip_softphone\").toHaveCount(1);\n    click(\".o_voip_softphone li a[name='partner_list']\");\n    await animationFrame();\n    expect(\".o_voip_softphone .o_voip_partner_item\").toHaveCount(2);\n    click(\".o_voip_softphone .o_voip_partner_item\", {text: \"Test Partner\"});\n    await animationFrame();\n    expect(\".o_voip_softphone .o_voip_partner_header\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_partner_actions\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_partner_activity\").toHaveCount(0);\n});\n"
  },
  {
    "path": "voip_oca/static/tests/components/Softphone.esm.test.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {click, start} from \"@mail/../tests/mail_test_helpers\";\nimport {expect, test} from \"@odoo/hoot\";\nimport {animationFrame} from \"@odoo/hoot-dom\";\nimport {defineVoipModels} from \"../voip_test_helpers.esm\";\nimport {patchWithCleanup} from \"@web/../tests/web_test_helpers\";\nimport {session} from \"@web/session\";\n\n// As we use mail as a dependancy, we need to declare models.\ndefineVoipModels();\n\ntest(\"Check Not Systray\", async () => {\n    patchWithCleanup(session, {\n        ...session,\n        voip: {pbx_id: false},\n    });\n    await start();\n    expect(\".o_voip_softphone\").toHaveCount(0);\n    expect(\".o_menu_systray .o_nav_entry[title='Softphone']\").toHaveCount(0);\n});\ntest(\"Check Systray\", async () => {\n    patchWithCleanup(session, {\n        ...session,\n        voip: {pbx_id: 1},\n    });\n    await start();\n    expect(\".o_voip_softphone\").toHaveCount(0);\n    expect(\".o_menu_systray .o_nav_entry[title='Softphone']\").toHaveCount(1);\n    click(\".o_menu_systray .o_nav_entry[title='Softphone']\");\n    await animationFrame();\n    expect(\".o_voip_softphone\").toHaveCount(1);\n    click(\".o_menu_systray .o_nav_entry[title='Softphone']\");\n    await animationFrame();\n    expect(\".o_voip_softphone\").toHaveCount(0);\n});\ntest(\"Check Softphone\", async () => {\n    patchWithCleanup(session, {\n        ...session,\n        voip: {pbx_id: 1},\n    });\n    await start();\n\n    expect(\".o_menu_systray .o_nav_entry[title='Softphone']\").toHaveCount(1);\n    click(\".o_menu_systray .o_nav_entry[title='Softphone']\");\n    await animationFrame();\n    expect(\".o_voip_softphone\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_softphone_content\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_softphone_header\").toHaveCount(1);\n    click(\".o_voip_softphone .o_voip_softphone_header\");\n    await animationFrame();\n    expect(\".o_voip_softphone\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_softphone_header\").toHaveCount(1);\n    expect(\".o_voip_softphone .o_voip_softphone_content\").toHaveCount(0);\n});\n"
  },
  {
    "path": "voip_oca/static/tests/mock_server/mock_models/mail_activity.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {fields} from \"@web/../tests/web_test_helpers\";\nimport {mailModels} from \"@mail/../tests/mail_test_helpers\";\n\nexport class MailActivity extends mailModels.MailActivity {\n    main_partner_id = fields.Many2one({\n        relation: \"res.partner\",\n        string: \"Main Partner\",\n    });\n    main_partner = fields.Char();\n    async get_call_activities() {\n        const items = this.search([[\"activity_category\", \"=\", \"phonecall\"]]);\n        return items.activity_format();\n    }\n}\n"
  },
  {
    "path": "voip_oca/static/tests/mock_server/mock_models/res_partner.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {mailModels} from \"@mail/../tests/mail_test_helpers\";\n\nexport class ResPartner extends mailModels.ResPartner {\n    format_partner() {\n        return {\n            id: this[0].id,\n            type: \"partner\",\n            displayName: this[0].display_name,\n            email: this[0].email,\n            landlineNumber: this[0].phone,\n            mobileNumber: this[0].mobile,\n            name: this[0].name,\n        };\n    }\n    voip_get_contacts() {\n        return this.search([\"|\", [\"phone\", \"!=\", false], [\"mobile\", \"!=\", false]]).map(\n            (contact) => {\n                return this.browse(contact).format_partner();\n            }\n        );\n    }\n}\n"
  },
  {
    "path": "voip_oca/static/tests/mock_server/mock_models/voip_call.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {fields, models} from \"@web/../tests/web_test_helpers\";\n\nexport class VoipOcaCall extends models.ServerModel {\n    _name = \"voip.call\";\n\n    phone_number = fields.Char();\n    name = fields.Char();\n    type_call = fields.Selection({\n        selection: [\n            [\"incoming\", \"Incoming\"],\n            [\"outgoing\", \"Outgoing\"],\n        ],\n        default: \"incoming\",\n    });\n    state = fields.Selection({\n        selection: [\n            [\"draft\", \"Draft\"],\n            [\"in_progress\", \"In Progress\"],\n            [\"done\", \"Done\"],\n            [\"cancelled\", \"Cancelled\"],\n        ],\n        default: \"draft\",\n    });\n    duration = fields.Integer({\n        string: \"Duration\",\n        default: 0,\n    });\n    pbx_id = fields.Many2one({\n        relation: \"voip.pbx\",\n        required: true,\n    });\n    partner_id = fields.Many2one({\n        relation: \"res.partner\",\n    });\n    user_id = fields.Many2one({\n        relation: \"res.users\",\n        required: true,\n    });\n    start_date = fields.Datetime();\n    end_date = fields.Datetime();\n\n    get_recent_calls() {\n        return this.search([[\"user_id\", \"=\", this.env.user.id]]).map((item) =>\n            this.browse(item).format_call()\n        );\n    }\n    format_call() {\n        return {\n            id: this[0].id,\n            creationDate: this[0].create_date,\n            typeCall: this[0].type_call,\n            displayName: this[0].display_name,\n            endDate: this[0].end_date,\n            partner:\n                this[0].partner_id &&\n                this.env[\"res.partner\"].browse(this[0].partner_id).format_partner(),\n            phoneNumber: this[0].phone_number,\n            startDate: this[0].start_date,\n            createDate: this[0].create_date,\n            state: this[0].state,\n        };\n    }\n}\n"
  },
  {
    "path": "voip_oca/static/tests/mock_server/mock_models/voip_pbx.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {fields, models} from \"@web/../tests/web_test_helpers\";\n\nexport class VoipOcaPbx extends models.ServerModel {\n    _name = \"voip.pbx\";\n\n    name = fields.Char();\n    domain = fields.Char();\n    ws_server = fields.Char();\n    mode = fields.Selection({\n        selection: [\n            [\"test\", \"Test\"],\n            [\"production\", \"Production\"],\n        ],\n        default: \"test\",\n    });\n\n    _records = [\n        {\n            id: 1,\n            name: \"Test PBX\",\n            domain: \"pbx.domain\",\n            ws_server: \"wss://pbx.domain\",\n            mode: \"test\",\n        },\n    ];\n}\n"
  },
  {
    "path": "voip_oca/static/tests/voip_test_helpers.esm.js",
    "content": "/*\n    Copyright 2025 Dixmit\n    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n*/\nimport {MailActivity} from \"./mock_server/mock_models/mail_activity.esm\";\nimport {ResPartner} from \"./mock_server/mock_models/res_partner.esm\";\nimport {VoipOcaCall} from \"./mock_server/mock_models/voip_call.esm\";\nimport {VoipOcaPbx} from \"./mock_server/mock_models/voip_pbx.esm\";\n\nimport {defineModels} from \"@web/../tests/web_test_helpers\";\nimport {mailModels} from \"@mail/../tests/mail_test_helpers\";\n\nexport const voipModels = {\n    MailActivity,\n    ResPartner,\n    VoipOcaPbx,\n    VoipOcaCall,\n};\n\nexport function defineVoipModels() {\n    return defineModels({...mailModels, ...voipModels});\n}\n"
  },
  {
    "path": "voip_oca/tests/__init__.py",
    "content": "from . import test_frontend\nfrom . import test_backend\nfrom . import test_js\n"
  },
  {
    "path": "voip_oca/tests/test_backend.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo.tests.common import TransactionCase\n\n\nclass TestVoipOca(TransactionCase):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        cls.pbx = cls.env[\"voip.pbx\"].create(\n            {\n                \"name\": \"Test PBX\",\n                \"mode\": \"prod\",\n                \"domain\": \"odoo-community.com\",\n                \"ws_server\": \"wss://odoo-community.com\",\n            }\n        )\n        cls.partner_01 = cls.env[\"res.partner\"].create(\n            {\n                \"name\": \"Test Partner 01\",\n                \"phone\": \"1234567890\",\n            }\n        )\n        cls.partner_02 = cls.env[\"res.partner\"].create(\n            {\n                \"name\": \"Test Partner 01\",\n                \"mobile\": \"0987654321\",\n            }\n        )\n        cls.activity_type = cls.env[\"mail.activity.type\"].create(\n            {\n                \"name\": \"Call\",\n                \"category\": \"phonecall\",\n            }\n        )\n        cls.activity_01 = cls.env[\"mail.activity\"].create(\n            {\n                \"summary\": \"Activity 01\",\n                \"activity_type_id\": cls.activity_type.id,\n                \"res_id\": cls.partner_01.id,\n                \"res_model_id\": cls.env.ref(\"base.model_res_partner\").id,\n                \"date_deadline\": \"2020-01-01\",\n                \"user_id\": cls.env.uid,\n            }\n        )\n        cls.activity_02 = cls.env[\"mail.activity\"].create(\n            {\n                \"summary\": \"Activity 02\",\n                \"activity_type_id\": cls.activity_type.id,\n                \"res_id\": cls.partner_02.id,\n                \"res_model_id\": cls.env.ref(\"base.model_res_partner\").id,\n                \"date_deadline\": \"2020-01-01\",\n                \"user_id\": cls.env.uid,\n            }\n        )\n        cls.call_01 = cls.env[\"voip.call\"].create(\n            {\n                \"phone_number\": \"Call 01\",\n                \"partner_id\": cls.partner_01.id,\n                \"type_call\": \"incoming\",\n                \"state\": \"ongoing\",\n                \"pbx_id\": cls.pbx.id,\n                \"start_date\": \"2020-01-01 00:00:00\",\n            }\n        )\n        cls.call_02 = cls.env[\"voip.call\"].create(\n            {\n                \"phone_number\": \"Call 02\",\n                \"type_call\": \"outgoing\",\n                \"state\": \"terminated\",\n                \"pbx_id\": cls.pbx.id,\n                \"start_date\": \"2020-01-01 00:00:00\",\n                \"end_date\": \"2020-01-01 00:01:20\",\n            }\n        )\n\n    def test_partner_search(self):\n        results = self.env[\"res.partner\"].voip_get_contacts(\"1234567890\", 0, 1000)\n        self.assertIn(self.partner_01.id, [result[\"id\"] for result in results])\n        self.assertNotIn(self.partner_02.id, [result[\"id\"] for result in results])\n        results = self.env[\"res.partner\"].voip_get_contacts(\"0987654321\", 0, 1000)\n        self.assertNotIn(self.partner_01.id, [result[\"id\"] for result in results])\n        self.assertIn(self.partner_02.id, [result[\"id\"] for result in results])\n\n    def test_activity_partner(self):\n        self.assertEqual(self.activity_01.main_partner_id, self.partner_01)\n        self.assertEqual(self.activity_01.main_partner, self.partner_01.name)\n        self.assertEqual(self.activity_02.main_partner_id, self.partner_02)\n        self.assertEqual(self.activity_02.main_partner, self.partner_02.name)\n\n    def test_activity_search(self):\n        results = self.env[\"mail.activity\"].get_call_activities(\"Activity 01\", 0, 1000)[\n            \"mail.activity\"\n        ]\n        self.assertIn(self.activity_01.id, [result[\"id\"] for result in results])\n        self.assertNotIn(self.activity_02.id, [result[\"id\"] for result in results])\n        results = self.env[\"mail.activity\"].get_call_activities(\"Activity 02\", 0, 1000)[\n            \"mail.activity\"\n        ]\n        self.assertNotIn(self.activity_01.id, [result[\"id\"] for result in results])\n        self.assertIn(self.activity_02.id, [result[\"id\"] for result in results])\n\n    def test_call_search(self):\n        results = self.env[\"voip.call\"].get_recent_calls(\"Call 01\", 0, 1000)\n        self.assertIn(self.call_01.id, [result[\"id\"] for result in results])\n        self.assertNotIn(self.call_02.id, [result[\"id\"] for result in results])\n        results = self.env[\"voip.call\"].get_recent_calls(\"Call 02\", 0, 1000)\n        self.assertNotIn(self.call_01.id, [result[\"id\"] for result in results])\n        self.assertIn(self.call_02.id, [result[\"id\"] for result in results])\n\n    def test_call_process_ok(self):\n        call_data = self.env[\"voip.call\"].create_call(\n            {\n                \"phone_number\": \"1234567890\",\n                \"type_call\": \"incoming\",\n                \"pbx_id\": self.pbx.id,\n            }\n        )\n        call = self.env[\"voip.call\"].browse(call_data[\"id\"])\n        self.assertEqual(call.partner_id, self.partner_01)\n        self.assertEqual(call.state, \"calling\")\n        self.assertFalse(call.start_date)\n        self.assertFalse(call.end_date)\n        call.accept_call()\n        self.assertEqual(call.state, \"ongoing\")\n        self.assertTrue(call.start_date)\n        self.assertFalse(call.end_date)\n        call.terminate_call()\n        self.assertEqual(call.state, \"terminated\")\n        self.assertTrue(call.end_date)\n\n    def test_call_process_rejected(self):\n        call_data = self.env[\"voip.call\"].create_call(\n            {\n                \"phone_number\": \"1234567890\",\n                \"type_call\": \"incoming\",\n                \"pbx_id\": self.pbx.id,\n            }\n        )\n        call = self.env[\"voip.call\"].browse(call_data[\"id\"])\n        self.assertEqual(call.partner_id, self.partner_01)\n        self.assertEqual(call.state, \"calling\")\n        self.assertFalse(call.start_date)\n        self.assertFalse(call.end_date)\n        call.reject_call()\n        self.assertEqual(call.state, \"rejected\")\n        self.assertTrue(call.end_date)\n        self.assertFalse(call.start_date)\n"
  },
  {
    "path": "voip_oca/tests/test_frontend.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\nimport json\nfrom uuid import uuid4\n\nfrom odoo.tests import common\n\n\n@common.tagged(\"post_install\", \"-at_install\")\nclass TestFrontend(common.HttpCase):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n\n        cls.pbx = cls.env[\"voip.pbx\"].create(\n            {\n                \"name\": \"Test PBX\",\n                \"mode\": \"prod\",\n                \"domain\": \"odoo-community.com\",\n                \"ws_server\": \"wss://odoo-community.com\",\n            }\n        )\n        cls.user_password = \"info\"\n        cls.user = common.new_test_user(\n            cls.env,\n            \"session\",\n            email=\"session@in.fo\",\n            password=cls.user_password,\n            tz=\"UTC\",\n        )\n        cls.user.write(\n            {\n                \"voip_pbx_id\": cls.pbx.id,\n                \"voip_username\": False,\n                \"voip_password\": False,\n            }\n        )\n        cls.payload = json.dumps(dict(jsonrpc=\"2.0\", method=\"call\", id=str(uuid4())))\n        cls.headers = {\n            \"Content-Type\": \"application/json\",\n        }\n\n    def test_session_unconfigured(self):\n        self.authenticate(self.user.login, self.user_password)\n        response = self.url_open(\n            \"/web/session/get_session_info\", data=self.payload, headers=self.headers\n        )\n        self.assertEqual(response.status_code, 200)\n        session_info = response.json()[\"result\"]\n        self.assertEqual(session_info[\"voip\"][\"pbx_id\"], self.pbx.id)\n        self.assertEqual(session_info[\"voip\"][\"mode\"], \"test\")\n\n    def test_session_configured(self):\n        self.user.write(\n            {\n                \"voip_username\": \"test\",\n                \"voip_password\": \"test\",\n            }\n        )\n        self.authenticate(self.user.login, self.user_password)\n        response = self.url_open(\n            \"/web/session/get_session_info\", data=self.payload, headers=self.headers\n        )\n        self.assertEqual(response.status_code, 200)\n        session_info = response.json()[\"result\"]\n        self.assertEqual(session_info[\"voip\"][\"pbx_id\"], self.pbx.id)\n        self.assertEqual(session_info[\"voip\"][\"mode\"], \"prod\")\n"
  },
  {
    "path": "voip_oca/tests/test_js.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\nimport odoo\n\nfrom odoo.addons.web.tests.test_js import WebSuite\n\n\n@odoo.tests.tagged(\"post_install\", \"-at_install\")\nclass TestAutomationOCA(WebSuite):\n    \"\"\"Test Automation OCA\"\"\"\n\n    def get_hoot_filters(self):\n        self._test_params = [(\"+\", \"@voip_oca\")]\n        return super().get_hoot_filters()\n\n    def test_voip_oca(self):\n        self.test_unit_desktop()\n"
  },
  {
    "path": "voip_oca/views/menus.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <menuitem\n        name=\"Voip/Calls\"\n        id=\"voip_call_menu_action\"\n        parent=\"mail.mail_menu_technical\"\n        action=\"voip_oca.voip_call_act_window_list\"\n    />\n</odoo>\n"
  },
  {
    "path": "voip_oca/views/res_users.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <record model=\"ir.ui.view\" id=\"view_users_form\">\n        <field name=\"model\">res.users</field>\n        <field name=\"inherit_id\" ref=\"base.view_users_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <xpath expr=\"//notebook\" position=\"inside\">\n                <page name=\"voip\" string=\"VOIP\">\n                    <group>\n                        <field name=\"voip_pbx_id\" string=\"PBX\" />\n                        <field name=\"voip_username\" string=\"Username\" />\n                        <field name=\"voip_password\" password=\"True\" string=\"Password\" />\n                    </group>\n                </page>\n            </xpath>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"view_users_form_simple_modif\">\n        <field name=\"model\">res.users</field>\n        <field name=\"inherit_id\" ref=\"base.view_users_form_simple_modif\" />\n        <field name=\"arch\" type=\"xml\">\n            <xpath expr=\"//notebook\" position=\"inside\">\n                <page name=\"voip\" string=\"VOIP\">\n                    <group>\n                        <field name=\"voip_pbx_id\" widget=\"selection\" string=\"PBX\" />\n                        <field name=\"voip_username\" string=\"Username\" />\n                        <field name=\"voip_password\" password=\"True\" string=\"Password\" />\n                    </group>\n                </page>\n            </xpath>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "voip_oca/views/voip_call.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <record id=\"voip_call_list_view\" model=\"ir.ui.view\">\n        <field name=\"name\">voip.call.list</field>\n        <field name=\"model\">voip.call</field>\n        <field name=\"arch\" type=\"xml\">\n            <list editable=\"top\">\n                <field name=\"display_name\" />\n                <field name=\"phone_number\" />\n                <field name=\"type_call\" />\n                <field name=\"state\" />\n                <field name=\"start_date\" />\n                <field name=\"end_date\" />\n                <field name=\"user_id\" />\n                <field name=\"partner_id\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"voip_call_act_window_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Calls</field>\n        <field name=\"type\">ir.actions.act_window</field>\n        <field name=\"res_model\">voip.call</field>\n        <field name=\"view_mode\">list</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "voip_oca/views/voip_pbx.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2025 Dixmit\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <record model=\"ir.ui.view\" id=\"voip_pbx_form_view\">\n        <field name=\"model\">voip.pbx</field>\n        <field name=\"arch\" type=\"xml\">\n            <form>\n                <header />\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"domain\" />\n                        <field name=\"ws_server\" />\n                        <field name=\"mode\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"voip_pbx_search_view\">\n        <field name=\"model\">voip.pbx</field>\n        <field name=\"arch\" type=\"xml\">\n            <search>\n                <field name=\"name\" />\n                <field name=\"mode\" />\n            </search>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"voip_pbx_list_view\">\n        <field name=\"model\">voip.pbx</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"mode\" />\n            </list>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"voip_pbx_act_window\">\n        <field name=\"name\">PBX Servers</field>\n        <field name=\"res_model\">voip.pbx</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"domain\">[]</field>\n        <field name=\"context\">{}</field>\n    </record>\n\n    <record model=\"ir.ui.menu\" id=\"voip_pbx_menu\">\n        <field name=\"name\">PBX Servers</field>\n        <field name=\"parent_id\" ref=\"mail.mail_menu_technical\" />\n        <field name=\"action\" ref=\"voip_pbx_act_window\" />\n        <field name=\"sequence\" eval=\"16\" />\n    </record>\n</odoo>\n"
  }
]