[
  {
    "path": ".copier-answers.yml",
    "content": "# Do NOT update manually; changes here will be overwritten by Copier\n_commit: v1.34\n_src_path: git+https://github.com/OCA/oca-addons-repo-template\nadditional_ruff_rules: []\nci: GitHub\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: management-system\nrepo_name: management-system\nrepo_slug: management-system\nrepo_website: https://github.com/OCA/management-system\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      - 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      - 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  - 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/management-system\"]\n      - id: oca-gen-addon-readme\n        args:\n          - --addons-dir=.\n          - --branch=18.0\n          - --org-name=OCA\n          - --repo-name=management-system\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    assignment-from-none,\n    attribute-deprecated,\n    class-camelcase,\n    dangerous-default-value,\n    dangerous-view-replace-wo-priority,\n    development-status-allowed,\n    duplicate-id-csv,\n    duplicate-key,\n    duplicate-xml-fields,\n    duplicate-xml-record-id,\n    eval-referenced,\n    eval-used,\n    incoherent-interpreter-exec-perm,\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    openerp-exception-warning,\n    pointless-statement,\n    pointless-string-statement,\n    print-used,\n    redundant-keyword-arg,\n    redundant-modulename-xml,\n    reimported,\n    relative-import,\n    return-in-init,\n    rst-syntax-error,\n    sql-injection,\n    too-few-format-args,\n    translation-field,\n    translation-required,\n    unreachable,\n    use-vim-comment,\n    wrong-tabs-instead-of-spaces,\n    xml-syntax-error,\n    attribute-string-redundant,\n    character-not-valid-in-resource-link,\n    consider-merging-classes-inherited,\n    context-overridden,\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    except-pass,\n    file-not-used,\n    invalid-commit,\n    manifest-maintainers-list,\n    missing-newline-extrafiles,\n    missing-readme,\n    missing-return,\n    odoo-addons-relative-import,\n    old-api7-method-defined,\n    po-msgstr-variables,\n    po-syntax-error,\n    renamed-field-parameter,\n    resource-not-exist,\n    str-format-used,\n    test-folder-imported,\n    translation-contains-variable,\n    translation-positional-used,\n    unnecessary-utf8-coding-comment,\n    website-manifest-key-not-valid-uri,\n    xml-attribute-translatable,\n    xml-deprecated-qweb-directive,\n    xml-deprecated-tree-attribute,\n    external-request-timeout,\n    # messages that do not cause the lint step to fail\n    consider-merging-classes-inherited,\n    create-user-wo-reset-password,\n    dangerous-filter-wo-user,\n    deprecated-module,\n    file-not-used,\n    invalid-commit,\n    missing-manifest-dependency,\n    missing-newline-extrafiles,\n    missing-readme,\n    no-utf8-coding-comment,\n    odoo-addons-relative-import,\n    old-api7-method-defined,\n    redefined-builtin,\n    too-complex,\n    unnecessary-utf8-coding-comment,\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    assignment-from-none,\n    attribute-deprecated,\n    class-camelcase,\n    dangerous-default-value,\n    dangerous-view-replace-wo-priority,\n    development-status-allowed,\n    duplicate-id-csv,\n    duplicate-key,\n    duplicate-xml-fields,\n    duplicate-xml-record-id,\n    eval-referenced,\n    eval-used,\n    incoherent-interpreter-exec-perm,\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    openerp-exception-warning,\n    pointless-statement,\n    pointless-string-statement,\n    print-used,\n    redundant-keyword-arg,\n    redundant-modulename-xml,\n    reimported,\n    relative-import,\n    return-in-init,\n    rst-syntax-error,\n    sql-injection,\n    too-few-format-args,\n    translation-field,\n    translation-required,\n    unreachable,\n    use-vim-comment,\n    wrong-tabs-instead-of-spaces,\n    xml-syntax-error,\n    attribute-string-redundant,\n    character-not-valid-in-resource-link,\n    consider-merging-classes-inherited,\n    context-overridden,\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    except-pass,\n    file-not-used,\n    invalid-commit,\n    manifest-maintainers-list,\n    missing-newline-extrafiles,\n    missing-readme,\n    missing-return,\n    odoo-addons-relative-import,\n    old-api7-method-defined,\n    po-msgstr-variables,\n    po-syntax-error,\n    renamed-field-parameter,\n    resource-not-exist,\n    str-format-used,\n    test-folder-imported,\n    translation-contains-variable,\n    translation-positional-used,\n    unnecessary-utf8-coding-comment,\n    website-manifest-key-not-valid-uri,\n    xml-attribute-translatable,\n    xml-deprecated-qweb-directive,\n    xml-deprecated-tree-attribute,\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[![Runboat](https://img.shields.io/badge/runboat-Try%20me-875A7B.png)](https://runboat.odoo-community.org/builds?repo=OCA/management-system&target_branch=18.0)\n[![Pre-commit Status](https://github.com/OCA/management-system/actions/workflows/pre-commit.yml/badge.svg?branch=18.0)](https://github.com/OCA/management-system/actions/workflows/pre-commit.yml?query=branch%3A18.0)\n[![Build Status](https://github.com/OCA/management-system/actions/workflows/test.yml/badge.svg?branch=18.0)](https://github.com/OCA/management-system/actions/workflows/test.yml?query=branch%3A18.0)\n[![codecov](https://codecov.io/gh/OCA/management-system/branch/18.0/graph/badge.svg)](https://codecov.io/gh/OCA/management-system)\n[![Translation Status](https://translation.odoo-community.org/widgets/management-system-18-0/-/svg-badge.svg)](https://translation.odoo-community.org/engage/management-system-18-0/?utm_source=widget)\n\n<!-- /!\\ do not modify above this line -->\n\n# management-system\n\nmanagement-system\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[document_page_environment_manual](document_page_environment_manual/) | 18.0.1.0.1 |  | Document Management - Wiki - Environment Manual\n[document_page_environmental_aspect](document_page_environmental_aspect/) | 18.0.1.0.1 |  | Environmental Aspects\n[document_page_health_safety_manual](document_page_health_safety_manual/) | 18.0.1.0.1 |  | Health and Safety Manual\n[document_page_procedure](document_page_procedure/) | 18.0.1.0.1 |  | Document Management - Wiki - Procedures\n[document_page_quality_manual](document_page_quality_manual/) | 18.0.1.0.1 |  | Quality Manual\n[document_page_work_instruction](document_page_work_instruction/) | 18.0.1.0.1 |  | Document Management - Wiki - Work Instructions\n[mgmtsystem](mgmtsystem/) | 18.0.1.2.0 |  | Support for management systems, such as ISO compliance.\n[mgmtsystem_action](mgmtsystem_action/) | 18.0.1.0.2 |  | Management System - Action\n[mgmtsystem_action_efficacy](mgmtsystem_action_efficacy/) | 18.0.1.0.0 |  | Add information on the application of the Action.\n[mgmtsystem_action_template](mgmtsystem_action_template/) | 18.0.1.0.0 |  | Add Template management for Actions.\n[mgmtsystem_audit](mgmtsystem_audit/) | 18.0.1.1.0 |  | Management System - Audit\n[mgmtsystem_claim](mgmtsystem_claim/) | 18.0.1.0.0 |  | Management System - Claim\n[mgmtsystem_hazard](mgmtsystem_hazard/) | 18.0.1.1.0 |  | Hazard\n[mgmtsystem_hazard_risk](mgmtsystem_hazard_risk/) | 18.0.1.2.0 |  | Hazard Risk\n[mgmtsystem_info_security_manual](mgmtsystem_info_security_manual/) | 18.0.1.0.0 |  | Information Security Management System Manual\n[mgmtsystem_manual](mgmtsystem_manual/) | 18.0.1.0.1 |  | Management System - Manual\n[mgmtsystem_nonconformity](mgmtsystem_nonconformity/) | 18.0.1.3.0 |  | Management System - Nonconformity\n[mgmtsystem_nonconformity_hazard](mgmtsystem_nonconformity_hazard/) | 18.0.1.0.0 |  | Management System - Nonconformity Hazard\n[mgmtsystem_nonconformity_hr](mgmtsystem_nonconformity_hr/) | 18.0.1.0.0 |  | Bridge module between hr and mgmsystem and\n[mgmtsystem_nonconformity_maintenance_equipment](mgmtsystem_nonconformity_maintenance_equipment/) | 18.0.1.0.0 |  | Management System - Nonconformity Maintenance Equipment\n[mgmtsystem_nonconformity_mrp](mgmtsystem_nonconformity_mrp/) | 18.0.1.0.0 |  | Bridge module between mrp and mgmsystem\n[mgmtsystem_nonconformity_product](mgmtsystem_nonconformity_product/) | 18.0.1.0.0 |  | Bridge module between Product and Management System.\n[mgmtsystem_nonconformity_repair](mgmtsystem_nonconformity_repair/) | 18.0.1.0.0 |  | Bridge module between Repair and Non Conformities\n[mgmtsystem_nonconformity_type](mgmtsystem_nonconformity_type/) | 18.0.1.1.0 |  | Add Nonconformity classification for the root context.\n[mgmtsystem_objective](mgmtsystem_objective/) | 18.0.1.0.1 |  | Define objectives on your management system\n[mgmtsystem_partner](mgmtsystem_partner/) | 18.0.1.0.0 |  | Add Management System reference on Partner's Contacts.\n[mgmtsystem_quality](mgmtsystem_quality/) | 18.0.1.0.1 | <a href='https://github.com/max3903'><img src='https://github.com/max3903.png' width='32' height='32' style='border-radius:50%;' alt='max3903'/></a> | Manage your quality management system\n[mgmtsystem_review](mgmtsystem_review/) | 18.0.2.0.1 |  | Management System - Review\n[mgmtsystem_review_objective](mgmtsystem_review_objective/) | 18.0.1.0.1 |  | Integrate reviews and objectives\n[mgmtsystem_review_survey](mgmtsystem_review_survey/) | 18.0.2.0.0 |  | Management System - Review Survey\n[mgmtsystem_survey](mgmtsystem_survey/) | 18.0.1.0.0 | <a href='https://github.com/max3903'><img src='https://github.com/max3903.png' width='32' height='32' style='border-radius:50%;' alt='max3903'/></a> | Management System - Survey\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": "checklog-odoo.cfg",
    "content": "[checklog-odoo]\nignore=\n    WARNING.* 0 failed, 0 error\\(s\\).*\n"
  },
  {
    "path": "document_page_environment_manual/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===============================================\nDocument Management - Wiki - Environment Manual\n===============================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:65a025b3e40762b14a95c08467a52c97af793decddb8cf897d279b3bc2a3ab74\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/document_page_environment_manual\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_environment_manual\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module adds a menu Environment Manual and a wiki document page\ncategory.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nTo use this module, you need to:\n\n- go to Management Systems > Documentation > Manuals\n- Create a new page and select the environment category.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_environment_manual%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Odoo SA <info@odoo.com>\n- Savoir-faire Linux <support@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- `Guadaltech <https://www.guadaltech.es>`__:\n\n  - Fernando La Chica <fernando.lachica@guadaltech.es>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/document_page_environment_manual>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "document_page_environment_manual/__init__.py",
    "content": "# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n"
  },
  {
    "path": "document_page_environment_manual/__manifest__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\n{\n    \"name\": \"Document Management - Wiki - Environment Manual\",\n    \"version\": \"18.0.1.0.1\",\n    \"author\": \"Savoir-faire Linux,Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Generic Modules/Others\",\n    \"depends\": [\"mgmtsystem_manual\"],\n    \"data\": [\"data/document_page_environment_manual.xml\"],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "document_page_environment_manual/data/document_page_environment_manual.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"document_page_environment_manual\" model=\"document.page\">\n        <field name=\"name\">Environment Manual</field>\n        <field name=\"type\">category</field>\n        <field name=\"company_id\" eval=\"False\" />\n        <field name=\"template\">\n            <![CDATA[\n<h1>Application Domain</h1>\n\n<h2>General</h2>\n\n<h2>Application Perimeter</h2>\n\n<h1>Standards References</h1>\n\n<h1>Terms and Definitions</h1>\n\n<h2>Confidentiality</h2>\n\n<h1>Environment Management System</h1>\n\n<h2>General Requirements</h2>\n\n<h2>Environmental Policy</h2>\n\n<h2>Planning</h2>\n\n<h3>Environmental Aspects</h3>\n\n<h3>Legal and Other Requirements</h3>\n\n<h3>Objectives, Targets and Programs</h3>\n\n<h2>Implementation and Operation</h2>\n\n<h3>Resources, Roles, Responsibilities and Authority</h3>\n\n<h3>Training, Awareness and Competence</h3>\n\n<h3>Communication</h3>\n\n<h3>Documentation</h3>\n\n<h3>Documentation Control</h3>\n\n<h3>Operational Control</h3>\n\n<h3>Emergency Preparedness and Response</h3>\n\n<h2>Control</h2>\n\n<h3>Monitoring and Measurement</h3>\n\n<h3>Evaluation of Compliance</h3>\n\n<h3>Non­conformity, Corrective Action and Preventive Action</h3>\n\n<h3>Control of Records</h3>\n\n<h3>Internal Audit</h3>\n\n<h2>Management Review</h2>\n]]>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "document_page_environment_manual/i18n/de.po",
    "content": "# German translation for openerp-mgmtsystem\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2012-09-17 11:38+0000\\n\"\n\"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\\n\"\n\"Language-Team: German <de@li.org>\\n\"\n\"Language: de\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"Document Management - Wiki - Environment Manual\"\n#~ msgstr \"Dokumentenmanagement-Wiki - Umwelthandbuch\"\n\n#~ msgid \"\"\n#~ \"Environment Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Vorlage für ein Umwelthandbuch\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "document_page_environment_manual/i18n/document_page_environment_manual.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\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"
  },
  {
    "path": "document_page_environment_manual/i18n/fr.po",
    "content": "# French translation for openerp-mgmtsystem\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2012-09-09 04:50+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: French <fr@li.org>\\n\"\n\"Language: fr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"Document Management - Wiki - Environment Manual\"\n#~ msgstr \"Gestion des Documents - Wiki - Manuel environnemental\"\n\n#~ msgid \"\"\n#~ \"Environment Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Modèle de manuel environnemental\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "document_page_environment_manual/i18n/it.po",
    "content": ""
  },
  {
    "path": "document_page_environment_manual/i18n/nb.po",
    "content": "# Norwegian Bokmal translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2014-01-22 17:53+0000\\n\"\n\"Last-Translator: Torvald Baade Bringsvor <torvald@bringsvor.com>\\n\"\n\"Language-Team: Norwegian Bokmal <nb@li.org>\\n\"\n\"Language: nb\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"Document Management - Wiki - Environment Manual\"\n#~ msgstr \"Dokumenthåndtering - Wiki - Miljømanual\"\n\n#~ msgid \"\"\n#~ \"Environment Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Miljømanual Mal\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "document_page_environment_manual/i18n/pt_BR.po",
    "content": "# Brazilian Portuguese translation for openerp-mgmtsystem\n# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2013-07-18 14:05+0000\\n\"\n\"Last-Translator: Claudio de Araujo Santos <claudioaraujosantos@gmail.com>\\n\"\n\"Language-Team: Brazilian Portuguese <pt_BR@li.org>\\n\"\n\"Language: pt_BR\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"Document Management - Wiki - Environment Manual\"\n#~ msgstr \"Gerenciamento de Documento - Wiki - Manual\"\n\n#~ msgid \"\"\n#~ \"Environment Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Manual do Meio Ambiente\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "document_page_environment_manual/i18n/sl.po",
    "content": "# Translation of OpenERP Server.\n# This file contains the translation of the following modules:\n# \t* document_page_environment_manual\n#\n# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: OpenERP Server 6.1-dev\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2015-05-04 17:15+0100\\n\"\n\"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\\n\"\n\"Language-Team: Slovenian <translate@matmoz.si>\\n\"\n\"Language: sl\\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\"X-Generator: Lokalize 2.0\\n\"\n\n#~ msgid \"Document Management - Wiki - Environment Manual\"\n#~ msgstr \"Upravljanje dokumentov - Wiki - Okoljski vodič\"\n\n#~ msgid \"\"\n#~ \"Environment Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Predloga za okoljski vodič\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "document_page_environment_manual/i18n/sv.po",
    "content": "# Swedish translation for openerp-mgmtsystem\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2012-12-03 16:04+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Swedish <sv@li.org>\\n\"\n\"Language: sv\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"Document Management - Wiki - Environment Manual\"\n#~ msgstr \"Dokumenthantering - Wiki - Miljö Manual\"\n\n#~ msgid \"\"\n#~ \"Environment Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Miljö Manual Mall\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "document_page_environment_manual/i18n/vi.po",
    "content": ""
  },
  {
    "path": "document_page_environment_manual/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "document_page_environment_manual/readme/CONTRIBUTORS.md",
    "content": "- Odoo SA \\<<info@odoo.com>\\>\n- Savoir-faire Linux \\<<support@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- [Guadaltech](https://www.guadaltech.es):\n  - Fernando La Chica \\<<fernando.lachica@guadaltech.es>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "document_page_environment_manual/readme/DESCRIPTION.md",
    "content": "This module adds a menu Environment Manual and a wiki document page\ncategory.\n"
  },
  {
    "path": "document_page_environment_manual/readme/USAGE.md",
    "content": "To use this module, you need to:\n\n- go to Management Systems \\> Documentation \\> Manuals\n- Create a new page and select the environment category.\n"
  },
  {
    "path": "document_page_environment_manual/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=\"document-management-wiki-environment-manual\">\n<h1>Document Management - Wiki - Environment Manual</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:65a025b3e40762b14a95c08467a52c97af793decddb8cf897d279b3bc2a3ab74\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/management-system/tree/18.0/document_page_environment_manual\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_environment_manual\"><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/management-system&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 adds a menu Environment Manual and a wiki document page\ncategory.</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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-6\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h2>\n<p>To use this module, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Documentation &gt; Manuals</li>\n<li>Create a new page and select the environment category.</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_environment_manual%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-3\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Odoo SA &lt;<a class=\"reference external\" href=\"mailto:info&#64;odoo.com\">info&#64;odoo.com</a>&gt;</li>\n<li>Savoir-faire Linux &lt;<a class=\"reference external\" href=\"mailto:support&#64;savoirfairelinux.com\">support&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.guadaltech.es\">Guadaltech</a>:<ul>\n<li>Fernando La Chica &lt;<a class=\"reference external\" href=\"mailto:fernando.lachica&#64;guadaltech.es\">fernando.lachica&#64;guadaltech.es</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/document_page_environment_manual\">OCA/management-system</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": "document_page_environmental_aspect/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=====================\nEnvironmental Aspects\n=====================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:a3c297ce3ca3b8248f45e2115228affaf8d2438bdddceef5692ecf8907ee0c3d\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/document_page_environmental_aspect\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_environmental_aspect\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module extends the functionality of the Environment Management\nSystem and adds a template for environmental aspects.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo configure this module, you need to:\n\n- go to Management Systems > Configuration > Categories\n- select the Environmental Aspect category and customize it\n\nUsage\n=====\n\nTo create environmental aspects, you need to:\n\n- go to Management Systems > Documentation > Environmental Aspects\n- click on Create and select the Environmental Aspect category\n- enter your content\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_environmental_aspect%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Savoir-faire Linux <support@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- `Guadaltech <https://www.guadaltech.es>`__:\n\n  - Fernando La Chica <fernando.lachica@guadaltech.es>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/document_page_environmental_aspect>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "document_page_environmental_aspect/__init__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\n"
  },
  {
    "path": "document_page_environmental_aspect/__manifest__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n#    License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\n{\n    \"name\": \"Environmental Aspects\",\n    \"version\": \"18.0.1.0.1\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Generic Modules/Others\",\n    \"depends\": [\"document_page\", \"mgmtsystem\"],\n    \"data\": [\"data/document_page.xml\", \"views/document_page.xml\"],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "document_page_environmental_aspect/data/document_page.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"document_page_group_environmental_aspect\" model=\"document.page\">\n        <field name=\"name\">Environmental Aspect</field>\n        <field name=\"type\">category</field>\n        <field name=\"company_id\" eval=\"False\" />\n        <field name=\"template\">\n        <![CDATA[\n<h1>Activity</h1>\n\n<h1>Environmental Aspect</h1>\n\n<h1>Environmental Impact</h1>\n\n<h1>Laws and Regulations</h1>\n\n<h1>Operational Control</h1>\n\n<h1>Responsibilities</h1>\n\n<h1>Objectives</h1>\n\n<h1>Programs</h1>\n        ]]>\n      </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_environmental_aspect\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\n# Rudolf Schnapka <rs@techno-flex.de>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-07 01:44+0000\\n\"\n\"PO-Revision-Date: 2016-03-11 15:53+0000\\n\"\n\"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\\n\"\n\"Language-Team: German (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/de/)\\n\"\n\"Language: de\\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: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Umweltaspekte\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Umweltaspekte Ihres Management-Systems.\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/document_page_environmental_aspect.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_environmental_aspect\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: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_environmental_aspect\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 14:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspectos medioambientales\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Aspectos medioambientales de su sistema de gestión.\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/es_CL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_environmental_aspect\n#\n# Translators:\n# GABRIELA STEGEN <gabrstegen@gmx.net>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-09-14 21:32+0000\\n\"\n\"Last-Translator: GABRIELA STEGEN <gabrstegen@gmx.net>\\n\"\n\"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/es_CL/)\\n\"\n\"Language: es_CL\\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: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspectos medio ambientales\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Aspectos medio ambientales de tu sistema de administración\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_environmental_aspect\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-05-29 11:34+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"جوانب زیست‌محیطی\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"جوانب زیست‌محیطی سیستم مدیریت کیفیت شما\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_environmental_aspect\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\n# Maxime Chambreuil <maxime.chambreuil@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-05-26 18:45+0000\\n\"\n\"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\\n\"\n\"Language-Team: French (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/fr/)\\n\"\n\"Language: fr\\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: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspects environnementaux\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Aspects environnementaux de votre système de gestion.\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_environmental_aspect\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2022-11-03 13:44+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 4.14.1\\n\"\n\n#. module: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspetti ambientali\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Aspetti ambientali per il tuo sistema di gestione.\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/nb.po",
    "content": "# Norwegian Bokmal translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2014-01-22 17:54+0000\\n\"\n\"Last-Translator: Torvald Baade Bringsvor <torvald@bringsvor.com>\\n\"\n\"Language-Team: Norwegian Bokmal <nb@li.org>\\n\"\n\"Language: nb\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\n#, fuzzy\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"\"\n\"Mal for miljøaspekter, brukbar for miljøstyringssystem\\n\"\n\"    \"\n\n#~ msgid \"Document Management - Wiki - Environmental Aspects\"\n#~ msgstr \"Dokumenthåndtering - Wiki - Miljøaspekter\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_environmental_aspect\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 13.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2021-11-26 15:36+0000\\n\"\n\"Last-Translator: Daniel Reis <dgreis@sapo.pt>\\n\"\n\"Language-Team: none\\n\"\n\"Language: 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\"X-Generator: Weblate 4.3.2\\n\"\n\n#. module: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspetos ambientais\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Aspetos ambientais do seu sistema de gestão.\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_environmental_aspect\n#\n# Translators:\n# danimaribeiro <danimaribeiro@gmail.com>, 2015\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-07-20 19:10+0000\\n\"\n\"Last-Translator: danimaribeiro <danimaribeiro@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-\"\n\"management-system-8-0/language/pt_BR/)\\n\"\n\"Language: pt_BR\\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: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspectos do ambiente\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Aspectos do ambiente de seu sistema de gestão\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_environmental_aspect\n#\n# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 8.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-05-08 05:57+0000\\n\"\n\"PO-Revision-Date: 2015-05-08 07:58+0100\\n\"\n\"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\\n\"\n\"Language-Team: Slovenian <translate@matmoz.si>\\n\"\n\"Language: sl\\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\"X-Generator: Lokalize 2.0\\n\"\n\n#. module: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Okoljski vidiki\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Okoljski vidiki sistema upravljanja\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/sv.po",
    "content": "# Swedish translation for openerp-mgmtsystem\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2024-06-19 16:36+0000\\n\"\n\"Last-Translator: jakobkrabbe <jakob@syscare.se>\\n\"\n\"Language-Team: Swedish <sv@li.org>\\n\"\n\"Language: sv\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 4.17\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\n#. module: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"Miljöaspekter\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"Miljöaspekter av ditt ledningssystem.\"\n\n#~ msgid \"Document Management - Wiki - Environmental Aspects\"\n#~ msgstr \"Dokumenthantering - Wiki - Miljöaspekter\"\n"
  },
  {
    "path": "document_page_environmental_aspect/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2014-03-05 05:53+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: document_page_environmental_aspect\n#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects\n#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: document_page_environmental_aspect\n#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects\nmsgid \"Environmental aspects of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_environmental_aspect/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "document_page_environmental_aspect/readme/CONFIGURE.md",
    "content": "To configure this module, you need to:\n\n- go to Management Systems \\> Configuration \\> Categories\n- select the Environmental Aspect category and customize it\n"
  },
  {
    "path": "document_page_environmental_aspect/readme/CONTRIBUTORS.md",
    "content": "- Savoir-faire Linux \\<<support@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- [Guadaltech](https://www.guadaltech.es):\n  - Fernando La Chica \\<<fernando.lachica@guadaltech.es>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "document_page_environmental_aspect/readme/DESCRIPTION.md",
    "content": "This module extends the functionality of the Environment Management\nSystem and adds a template for environmental aspects.\n"
  },
  {
    "path": "document_page_environmental_aspect/readme/USAGE.md",
    "content": "To create environmental aspects, you need to:\n\n- go to Management Systems \\> Documentation \\> Environmental Aspects\n- click on Create and select the Environmental Aspect category\n- enter your content\n"
  },
  {
    "path": "document_page_environmental_aspect/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=\"environmental-aspects\">\n<h1>Environmental Aspects</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:a3c297ce3ca3b8248f45e2115228affaf8d2438bdddceef5692ecf8907ee0c3d\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/management-system/tree/18.0/document_page_environmental_aspect\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_environmental_aspect\"><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/management-system&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 extends the functionality of the Environment Management\nSystem and adds a template for environmental aspects.</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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-2\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-3\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-4\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-5\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-6\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-7\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>To configure this module, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Configuration &gt; Categories</li>\n<li>select the Environmental Aspect category and customize it</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Usage</a></h2>\n<p>To create environmental aspects, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Documentation &gt; Environmental Aspects</li>\n<li>click on Create and select the Environmental Aspect category</li>\n<li>enter your content</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_environmental_aspect%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-4\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux &lt;<a class=\"reference external\" href=\"mailto:support&#64;savoirfairelinux.com\">support&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.guadaltech.es\">Guadaltech</a>:<ul>\n<li>Fernando La Chica &lt;<a class=\"reference external\" href=\"mailto:fernando.lachica&#64;guadaltech.es\">fernando.lachica&#64;guadaltech.es</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/document_page_environmental_aspect\">OCA/management-system</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": "document_page_environmental_aspect/views/document_page.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <record model=\"ir.actions.act_window\" id=\"action_environmental_aspects\">\n        <field name=\"name\">Environmental Aspects</field>\n        <field name=\"res_model\">document.page</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"help\">Environmental aspects of your management system.</field>\n        <field\n            name=\"domain\"\n            eval=\"[('parent_id','=',ref('document_page_group_environmental_aspect'))]\"\n        />\n        <field\n            name=\"context\"\n            eval=\"{'default_parent_id': ref('document_page_group_environmental_aspect')}\"\n        />\n    </record>\n    <record id=\"action_environmental_aspects_tree\" model=\"ir.actions.act_window.view\">\n        <field name=\"sequence\" eval=\"0\" />\n        <field name=\"view_mode\">list</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_tree\" />\n        <field name=\"act_window_id\" ref=\"action_environmental_aspects\" />\n    </record>\n    <record id=\"action_environmental_aspects_form\" model=\"ir.actions.act_window.view\">\n        <field name=\"sequence\" eval=\"5\" />\n        <field name=\"view_mode\">form</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_form\" />\n        <field name=\"act_window_id\" ref=\"action_environmental_aspects\" />\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_manuals_environmental_aspects\"\n        name=\"Environmental Aspects\"\n        action=\"action_environmental_aspects\"\n        parent=\"mgmtsystem.menu_mgmtsystem_manuals\"\n        sequence=\"20\"\n        groups=\"base.group_user\"\n    />\n</odoo>\n"
  },
  {
    "path": "document_page_health_safety_manual/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========================\nHealth and Safety Manual\n========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:f22b6e7cf8c51529d73bd5a999288b5ee018b7c6ba895c012d6d9d8f28918323\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/document_page_health_safety_manual\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_health_safety_manual\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module provides an Health and Safety Manual template.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nTo enter your information security manual, you need to:\n\n- go to Management Systems > Documentation > Manuals\n- click on Create and select the Health and Safety Manual category\n- enter your content\n\nKnown issues / Roadmap\n======================\n\n- Report any issue or ideas to\n  https://github.com/OCA/management-system/issues\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_health_safety_manual%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Loïc Faure-Lacroix <loic.lacroix@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- `Guadaltech <https://www.guadaltech.es>`__:\n\n  - Fernando La Chica <fernando.lachica@guadaltech.es>\n\n- `Binhex <https://binhex.cloud//com>`__:\n\n  - David Luis Mora <d.luis@binhex.cloud>\n\n- `Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>`__\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/document_page_health_safety_manual>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "document_page_health_safety_manual/__init__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\n"
  },
  {
    "path": "document_page_health_safety_manual/__manifest__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n#\n#    This program is free software: you can redistribute it and/or modify\n#    it under the terms of the GNU General Public License as\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 General Public License for more details.\n#\n#    You should have received a copy of the GNU General Public License\n#    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n#\n##############################################################################\n{\n    \"name\": \"Health and Safety Manual\",\n    \"version\": \"18.0.1.0.1\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Generic Modules/Others\",\n    \"depends\": [\"mgmtsystem_manual\"],\n    \"data\": [\"data/document_page.xml\"],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "document_page_health_safety_manual/data/document_page.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <record id=\"document_page_health_safety_manual\" model=\"document.page\">\n        <field name=\"name\">Health and Safety Manual</field>\n        <field name=\"type\">category</field>\n        <field name=\"company_id\" eval=\"False\" />\n        <field name=\"template\">\nTODO: Add the structure of the health and safety manual from the OHSAS 18001 standard.\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "document_page_health_safety_manual/i18n/document_page_health_safety_manual.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\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"
  },
  {
    "path": "document_page_health_safety_manual/i18n/it.po",
    "content": ""
  },
  {
    "path": "document_page_health_safety_manual/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "document_page_health_safety_manual/readme/CONTRIBUTORS.md",
    "content": "- Loïc Faure-Lacroix \\<<loic.lacroix@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- [Guadaltech](https://www.guadaltech.es):\n  - Fernando La Chica \\<<fernando.lachica@guadaltech.es>\\>\n- [Binhex](https://binhex.cloud//com):\n  - David Luis Mora \\<<d.luis@binhex.cloud>\\>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\n"
  },
  {
    "path": "document_page_health_safety_manual/readme/DESCRIPTION.md",
    "content": "This module provides an Health and Safety Manual template.\n"
  },
  {
    "path": "document_page_health_safety_manual/readme/ROADMAP.md",
    "content": "- Report any issue or ideas to\n  <https://github.com/OCA/management-system/issues>\n"
  },
  {
    "path": "document_page_health_safety_manual/readme/USAGE.md",
    "content": "To enter your information security manual, you need to:\n\n- go to Management Systems \\> Documentation \\> Manuals\n- click on Create and select the Health and Safety Manual category\n- enter your content\n"
  },
  {
    "path": "document_page_health_safety_manual/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=\"health-and-safety-manual\">\n<h1>Health and Safety Manual</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:f22b6e7cf8c51529d73bd5a999288b5ee018b7c6ba895c012d6d9d8f28918323\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/management-system/tree/18.0/document_page_health_safety_manual\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_health_safety_manual\"><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/management-system&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 an Health and Safety Manual template.</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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#known-issues-roadmap\" id=\"toc-entry-2\">Known issues / Roadmap</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-3\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-4\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-5\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-6\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-7\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h2>\n<p>To enter your information security manual, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Documentation &gt; Manuals</li>\n<li>click on Create and select the Health and Safety Manual category</li>\n<li>enter your content</li>\n</ul>\n</div>\n<div class=\"section\" id=\"known-issues-roadmap\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Known issues / Roadmap</a></h2>\n<ul class=\"simple\">\n<li>Report any issue or ideas to\n<a class=\"reference external\" href=\"https://github.com/OCA/management-system/issues\">https://github.com/OCA/management-system/issues</a></li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_health_safety_manual%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-4\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Loïc Faure-Lacroix &lt;<a class=\"reference external\" href=\"mailto:loic.lacroix&#64;savoirfairelinux.com\">loic.lacroix&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.guadaltech.es\">Guadaltech</a>:<ul>\n<li>Fernando La Chica &lt;<a class=\"reference external\" href=\"mailto:fernando.lachica&#64;guadaltech.es\">fernando.lachica&#64;guadaltech.es</a>&gt;</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://binhex.cloud//com\">Binhex</a>:<ul>\n<li>David Luis Mora &lt;<a class=\"reference external\" href=\"mailto:d.luis&#64;binhex.cloud\">d.luis&#64;binhex.cloud</a>&gt;</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://www.heliconia.io\">Heliconia Solutions Pvt. Ltd.</a></li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/document_page_health_safety_manual\">OCA/management-system</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": "document_page_procedure/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=======================================\nDocument Management - Wiki - Procedures\n=======================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:78629f0af440f47b7abcec68b86f5ca4d8f5dab33645f871cfe42629bc357e2e\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/document_page_procedure\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_procedure\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module provides a Procedure template.\n\n- Go to Management Systems > Documentation > Procedures\n- Create a new Procedure\n- Fill in the title and the content\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo configure your template of procedures:\n\n- Go to Knowledge > Pages > Categories\n- Select the Procedure category\n- Customize the content\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_procedure%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Savoir-faire Linux <support@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- Eugen Don <eugen.don@don-systems.de>\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\nTrobz\n\n- Dung Tran <dungtd@trobz.com>\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n- Tuan Nguyen <tuanna@trobz.com>\n\nOther credits\n-------------\n\nThe migration of this module has been financially supported by:\n\n- Camptocamp\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/document_page_procedure>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "document_page_procedure/__init__.py",
    "content": ""
  },
  {
    "path": "document_page_procedure/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Document Management - Wiki - Procedures\",\n    \"version\": \"18.0.1.0.1\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"document_page\", \"mgmtsystem\"],\n    \"data\": [\"data/document_page_procedure.xml\", \"views/document_page_procedure.xml\"],\n    \"demo\": [\"demo/document_page_procedure.xml\"],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "document_page_procedure/checklog-odoo.cfg",
    "content": "[checklog-odoo]\nignore=\nWARNING.0 failed, 0 error\\(s\\).\n"
  },
  {
    "path": "document_page_procedure/data/document_page_procedure.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"document_page_group_procedure\" model=\"document.page\">\n        <field name=\"name\">Procedure</field>\n        <field name=\"type\">category</field>\n        <field name=\"company_id\" eval=\"False\" />\n        <field name=\"template\">\n<![CDATA[\n<h1>Objective</h1>\n\n<h1>Application Domain</h1>\n\n<h1>Terms and Definitions</h1>\n\n<h1>Responsibilities</h1>\n\n<h1>Process</h1>\n]]>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "document_page_procedure/demo/document_page_procedure.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <record id=\"document_page_procedure\" model=\"document.page\">\n        <field name=\"name\">Procedure</field>\n        <field name=\"parent_id\" ref=\"document_page_group_procedure\" />\n        <field name=\"type\">content</field>\n        <field name=\"content\">\n<![CDATA[\n<h1>Objective</h1>\n\n<h1>Application Domain</h1>\n\n<h1>Terms and Definitions</h1>\n\n<h1>Responsibilities</h1>\n\n<h1>Process</h1>\n]]>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "document_page_procedure/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Vorgänge\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Prozeduren Ihres Management-Systems.\"\n"
  },
  {
    "path": "document_page_procedure/i18n/document_page_procedure.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_procedure\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_procedure/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_procedure\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 8.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-07-28 14:32+0000\\n\"\n\"PO-Revision-Date: 2015-07-28 14:32+0000\\n\"\n\"Last-Translator: Glen Sojo <glen.sojo@clearcorp.co.cr>\\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedimientos\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procedimientos de su sistema de gestión.\"\n"
  },
  {
    "path": "document_page_procedure/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:18+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:18+0000\\n\"\n\"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.\"\n\"com>, 2018\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedimientos\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procedimientos de tu sistema de gestión.\"\n"
  },
  {
    "path": "document_page_procedure/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_procedure\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 17.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-08-28 13:06+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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.6.2\\n\"\n\n#. module: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"رویه‌ها\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"رویه‌های سیستم مدیریت شما.\"\n"
  },
  {
    "path": "document_page_procedure/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\n# Maxime Chambreuil <maxime.chambreuil@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-05-26 18:38+0000\\n\"\n\"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\\n\"\n\"Language-Team: French (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/fr/)\\n\"\n\"Language: fr\\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procédures\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procédures du système de gestion\"\n"
  },
  {
    "path": "document_page_procedure/i18n/hr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-02-10 07:38+0000\\n\"\n\"PO-Revision-Date: 2018-02-10 07:38+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2018\\n\"\n\"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\\n\"\n\"Language: hr\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procedure vašeg sustava kvalitete\"\n"
  },
  {
    "path": "document_page_procedure/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-01 20:06+0000\\n\"\n\"PO-Revision-Date: 2017-05-01 20:06+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procedure vašeg sustava upravljanja\"\n"
  },
  {
    "path": "document_page_procedure/i18n/hu.po",
    "content": "# Hungarian translation for openerp-mgmtsystem\n# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2013-07-22 07:15+0000\\n\"\n\"Last-Translator: krnkris <Unknown>\\n\"\n\"Language-Team: Hungarian <hu@li.org>\\n\"\n\"Language: hu\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"Procedure Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Folyamat sablon\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Procedures\"\n#~ msgstr \"Dokumentum menedzsment - Wiki - Folyamatok\"\n"
  },
  {
    "path": "document_page_procedure/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_procedure\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 11.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2019-03-02 17:11+0000\\n\"\n\"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>\\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 3.4\\n\"\n\n#. module: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procedure del sistema di gestione.\"\n"
  },
  {
    "path": "document_page_procedure/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-30 02:50+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/nb/)\\n\"\n\"Language: nb\\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Prosedyrer\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_procedure/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 04:23+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 04:23+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/\"\n\"teams/23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedures\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procedures van uw managementsysteem. \"\n"
  },
  {
    "path": "document_page_procedure/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-30 02:50+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/pt/)\\n\"\n\"Language: 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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedimentos\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_procedure/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# danimaribeiro <danimaribeiro@gmail.com>, 2015\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-07-20 19:10+0000\\n\"\n\"Last-Translator: danimaribeiro <danimaribeiro@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-\"\n\"management-system-8-0/language/pt_BR/)\\n\"\n\"Language: pt_BR\\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedimentos\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procedimentos do seu sistema de gestão.\"\n"
  },
  {
    "path": "document_page_procedure/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_procedure\n#\n# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 8.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-05-08 05:55+0000\\n\"\n\"PO-Revision-Date: 2015-05-08 07:56+0100\\n\"\n\"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\\n\"\n\"Language-Team: Slovenian <translate@matmoz.si>\\n\"\n\"Language: sl\\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\"X-Generator: Lokalize 2.0\\n\"\n\n#. module: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"Procedure sistema upravljanja\"\n"
  },
  {
    "path": "document_page_procedure/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_procedure\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-30 02:50+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Swedish (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/sv/)\\n\"\n\"Language: sv\\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: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"Rutiner\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_procedure/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2014-03-04 11:56+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: document_page_procedure\n#: model:ir.actions.act_window,name:document_page_procedure.action_procedures\n#: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: document_page_procedure\n#: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures\nmsgid \"Procedures of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_procedure/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "document_page_procedure/readme/CONFIGURE.md",
    "content": "To configure your template of procedures:\n- Go to Knowledge \\> Pages \\> Categories\n- Select the Procedure category\n- Customize the content\n"
  },
  {
    "path": "document_page_procedure/readme/CONTRIBUTORS.md",
    "content": "- Savoir-faire Linux \\<<support@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n\nTrobz\n\n- Dung Tran \\<<dungtd@trobz.com>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n- Tuan Nguyen \\<<tuanna@trobz.com>\\>"
  },
  {
    "path": "document_page_procedure/readme/CREDITS.md",
    "content": "The migration of this module has been financially supported by:\n\n- Camptocamp\n"
  },
  {
    "path": "document_page_procedure/readme/DESCRIPTION.md",
    "content": "This module provides a Procedure template.\n- Go to Management Systems \\> Documentation \\> Procedures\n- Create a new Procedure\n- Fill in the title and the content\n"
  },
  {
    "path": "document_page_procedure/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=\"document-management-wiki-procedures\">\n<h1>Document Management - Wiki - Procedures</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:78629f0af440f47b7abcec68b86f5ca4d8f5dab33645f871cfe42629bc357e2e\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/management-system/tree/18.0/document_page_procedure\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_procedure\"><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/management-system&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 a Procedure template.</p>\n<ul class=\"simple\">\n<li>Go to Management Systems &gt; Documentation &gt; Procedures</li>\n<li>Create a new Procedure</li>\n<li>Fill in the title and the content</li>\n</ul>\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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-6\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-7\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>To configure your template of procedures:</p>\n<ul class=\"simple\">\n<li>Go to Knowledge &gt; Pages &gt; Categories</li>\n<li>Select the Procedure category</li>\n<li>Customize the content</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_procedure%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-3\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux &lt;<a class=\"reference external\" href=\"mailto:support&#64;savoirfairelinux.com\">support&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n</ul>\n<p>Trobz</p>\n<ul class=\"simple\">\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n<li>Tuan Nguyen &lt;<a class=\"reference external\" href=\"mailto:tuanna&#64;trobz.com\">tuanna&#64;trobz.com</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Other credits</a></h3>\n<p>The migration of this module has been financially supported by:</p>\n<ul class=\"simple\">\n<li>Camptocamp</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/document_page_procedure\">OCA/management-system</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": "document_page_procedure/views/document_page_procedure.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <record model=\"ir.actions.act_window\" id=\"action_procedures\">\n        <field name=\"name\">Procedures</field>\n        <field name=\"res_model\">document.page</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"help\">Procedures of your management system.</field>\n        <field\n            name=\"domain\"\n            eval=\"[('parent_id','=',ref('document_page_group_procedure'))]\"\n        />\n        <field\n            name=\"context\"\n            eval=\"{'default_parent_id': ref('document_page_group_procedure')}\"\n        />\n    </record>\n    <record id=\"action_procedures_tree\" model=\"ir.actions.act_window.view\">\n        <field name=\"sequence\" eval=\"0\" />\n        <field name=\"view_mode\">list</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_tree\" />\n        <field name=\"act_window_id\" ref=\"action_procedures\" />\n    </record>\n    <record id=\"action_procedures_form\" model=\"ir.actions.act_window.view\">\n        <field name=\"sequence\" eval=\"5\" />\n        <field name=\"view_mode\">form</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_form\" />\n        <field name=\"act_window_id\" ref=\"action_procedures\" />\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_manuals_procedures\"\n        name=\"Procedures\"\n        action=\"action_procedures\"\n        parent=\"mgmtsystem.menu_mgmtsystem_manuals\"\n        sequence=\"10\"\n        groups=\"base.group_user\"\n    />\n</odoo>\n"
  },
  {
    "path": "document_page_quality_manual/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==============\nQuality Manual\n==============\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:c2fdd2a642b2eb225b944a4cf41fa6d30ea9380c70545d51354c718dd82c6508\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/document_page_quality_manual\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_quality_manual\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module provides a quality manual template. The template has the\nsame structure as the ISO 9001 standard.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo edit the quality manual template:\n\n- Go to Management Systems > Configuration > Categories\n- Select the Quality Manual category\n- Edit the content\n\nUsage\n=====\n\nTo enter your quality manual:\n\n- Go to Management Systems > Documentation > Manuals\n- Create a new page\n- Enter a title\n- Select the Quality Manual category\n- Fill in the content\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_quality_manual%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* OpenERP SA\n\nContributors\n------------\n\n- Odoo SA <info@odoo.com>\n\n- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>\n\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n\n- Eugen Don <eugen.don@don-systems.de>\n\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\n- `Trobz <https://www.trobz.com>`__:\n\n  - Dung Tran <dungtd@trobz.com>\n  - Khoi (Kien Kim) <khoikk@trobz.com>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n\nOther credits\n-------------\n\nThe migration of this module from 17.0 to 18.0 was financially supported\nby:\n\n- Camptocamp\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/document_page_quality_manual>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "document_page_quality_manual/__init__.py",
    "content": "# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n"
  },
  {
    "path": "document_page_quality_manual/__manifest__.py",
    "content": "# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Quality Manual\",\n    \"version\": \"18.0.1.0.1\",\n    \"category\": \"Management System\",\n    \"author\": \"OpenERP SA, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"depends\": [\"mgmtsystem_manual\"],\n    \"data\": [\"data/document_page.xml\"],\n    \"installable\": True,\n    \"auto_install\": False,\n    \"images\": [\"static/description/quality_manual_form.png\"],\n}\n"
  },
  {
    "path": "document_page_quality_manual/data/document_page.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"document_page_quality_manual\" model=\"document.page\">\n        <field name=\"name\">Quality Manual</field>\n        <field name=\"type\">category</field>\n        <field name=\"company_id\" eval=\"False\" />\n        <field name=\"template\">\n            <![CDATA[\n<h1>Foreword</h1>\n\n<h1>Introduction</h1>\n\n<h1>Scope</h1>\n\n<h1>Normative references</h1>\n\n<h1>Terms and Definitions</h1>\n\n<h1>Context of the organization</h1>\n\n<h2>Understanding the organization and its context</h2>\n\n<h2>Understanding the needs and expectations of interested parties</h2>\n\n<h2>Determining the scope of the quality management system</h2>\n\n<h2>Quality management system and its processes</h2>\n\n<h1>Leadership</h1>\n\n<h2>Leadership and commitment</h2>\n\n<h3>General</h3>\n\n<h3>Customer focus</h3>\n\n<h2>Policy</h2>\n\n<h3>Establishing the quality policy</h3>\n\n<h3>Communicating the quality policy</h3>\n\n<h2>Organizational roles, responsibilities and authorities</h2>\n\n<h1>Planning</h1>\n\n<h2>Actions to address risks and opportunities</h2>\n\n<h2>Quality objectives and planning to achieve them</h2>\n\n<h2>Planning of changes</h2>\n\n<h1>Support</h1>\n\n<h2>Resources</h2>\n\n<h3>General</h3>\n\n<h3>People</h3>\n\n<h3>Infrastructure</h3>\n\n<h3>Environment for the operation of processes</h3>\n\n<h3>Monitoring and measuring resources</h3>\n\n<h4>General</h4>\n\n<h4>Measurement traceability</h4>\n\n<h3>Organizational knowledge</h3>\n\n<h2>Competence</h2>\n\n<h2>Awareness</h2>\n\n<h2>Communication</h2>\n\n<h2>Documented information</h2>\n\n<h3>General</h3>\n\n<h3>Creating and updating</h3>\n\n<h3>Control of documented information</h3>\n\n<h1>Operation</h1>\n\n<h2>Operational planning and control</h2>\n\n<h2>Requirements for products and services</h2>\n\n<h3>Customer communication</h3>\n\n<h3>Determining the requirements for products and services</h3>\n\n<h3>Review of the requirements for products and services</h3>\n\n<h3>Changes to requirements for products and services</h3>\n\n<h2>Design and development of products and services</h2>\n\n<h3>General</h3>\n\n<h3>Design and development planning</h3>\n\n<h3>Design and development inputs</h3>\n\n<h3>Design and development controls</h3>\n\n<h3>Design and development outputs</h3>\n\n<h3>Design and development changes</h3>\n\n<h2>Control of externally provided processes, products and services</h2>\n\n<h3>General</h3>\n\n<h3>Type and extent of control</h3>\n\n<h3>Information for external providers</h3>\n\n<h2>Production and service provision</h2>\n\n<h3>Control of production and service provision</h3>\n\n<h3>Identification and traceability</h3>\n\n<h3>Property belonging to customers and external providers</h3>\n\n<h3>Preservation</h3>\n\n<h3>Post-delivery activities</h3>\n\n<h3>Control of changes</h3>\n\n<h2>Release of products and services</h2>\n\n<h2>Control of nonconforming outputs</h2>\n\n<h1>Performance evaluation</h1>\n\n<h2>Monitoring, measurement, analysis and evaluation</h2>\n\n<h3>General</h3>\n\n<h3>Customer satisfaction</h3>\n\n<h3>Analysis and evaluation</h3>\n\n<h2>Internal audit</h2>\n\n<h2>Management review</h2>\n\n<h3>General</h3>\n\n<h3>Management review inputs</h3>\n\n<h3>Management review outputs</h3>\n\n<h1>Improvement</h1>\n\n<h2>General</h2>\n\n<h2>Nonconformity and corrective action</h2>\n\n<h2>Continuous improvement</h2>\n]]>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "document_page_quality_manual/i18n/ar.po",
    "content": "# Arabic translation for openobject-addons\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Arabic <ar@li.org>\\n\"\n\"Language: ar\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"قالب كتيب الجودة\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"مرجع إدارة الوثائق - كتيب الجودة\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/bg.po",
    "content": "# Bulgarian translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Dimitar Markov <dimitar.markov@gmail.com>\\n\"\n\"Language-Team: Bulgarian <bg@li.org>\\n\"\n\"Language: bg\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Шаблон за Наръчник по качество\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Управление на документи - Wiki - Наръчник по качество\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/ca.po",
    "content": "# Catalan translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Catalan <ca@li.org>\\n\"\n\"Language: ca\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Plantilla manual de qualitat\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestió documental - Wiki - Manual de qualitat\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/cs.po",
    "content": "# Czech translation for openobject-addons\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Czech <cs@li.org>\\n\"\n\"Language: cs\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Šablona příručky kvality\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Správa dokumentů - Wiki - Příručka kvality\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/da.po",
    "content": "# Danish translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Martin Pihl <martinpihl@gmail.com>\\n\"\n\"Language-Team: Danish <da@li.org>\\n\"\n\"Language: da\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Skabelon til kvalitetsmanual\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Dokument administration - Wiki - Kvalitetsmanual\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/de.po",
    "content": "# Translation of OpenERP Server.\n# This file contains the translation of the following modules:\n# \t* document_page_quality_manual\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: OpenERP Server 6.0dev\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-consulting.\"\n\"net>\\n\"\n\"Language-Team: German <de@li.org>\\n\"\n\"Language: de\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Qualität Handbuch Vorlage\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Dokument Management - Wiki - Qualitätssicherungs Handbuch\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/document_page_quality_manual.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\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"
  },
  {
    "path": "document_page_quality_manual/i18n/es.po",
    "content": "# Spanish translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Borja López Soilán (NeoPolus) <borjalopezsoilan@gmail.com>\\n\"\n\"Language-Team: Spanish <es@li.org>\\n\"\n\"Language: es\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Plantilla manual de calidad\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestió documental - Wiki - Manual de calidad\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/es_CR.po",
    "content": "# Spanish (Costa Rica) translation for openobject-addons\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-02-18 22:03+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Spanish (Costa Rica) <es_CR@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2012-08-28 10:07+0000\\n\"\n\"X-Generator: Launchpad (build 15864)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Plantilla manual de calidad\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestió documental - Wiki - Manual de calidad\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/es_MX.po",
    "content": "# Spanish translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2010-12-28 09:12+0000\\n\"\n\"Last-Translator: Borja López Soilán (NeoPolus) <borjalopezsoilan@gmail.com>\\n\"\n\"Language-Team: Spanish <es@li.org>\\n\"\n\"Language: es\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2011-09-05 05:50+0000\\n\"\n\"X-Generator: Launchpad (build 13830)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Plantilla manual de calidad\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestió documental - Wiki - Manual de calidad\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/es_VE.po",
    "content": "# Spanish translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2010-12-28 09:12+0000\\n\"\n\"Last-Translator: Borja López Soilán (NeoPolus) <borjalopezsoilan@gmail.com>\\n\"\n\"Language-Team: Spanish <es@li.org>\\n\"\n\"Language: es\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2011-09-05 05:50+0000\\n\"\n\"X-Generator: Launchpad (build 13830)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Plantilla manual de calidad\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestió documental - Wiki - Manual de calidad\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/fa.po",
    "content": ""
  },
  {
    "path": "document_page_quality_manual/i18n/fi.po",
    "content": "# Finnish translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Finnish <fi@li.org>\\n\"\n\"Language: fi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Laatukäsikirjan pohja\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Dokumenttienhallinta - Wiki - Laatukäsikirja\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/fr.po",
    "content": "# Translation of OpenERP Server.\n# This file contains the translation of the following modules:\n# \t* document_page_quality_manual\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: OpenERP Server 6.0dev\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\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: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Modèle de manuel qualité\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestion documentaire - Wiki - Manuel Qualité\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/gl.po",
    "content": "# Galician translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Galician <gl@li.org>\\n\"\n\"Language: gl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Modelo manual de calidade\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Xestión documental - Wiki - Manual de calidade\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/hr.po",
    "content": "# Croatian translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Croatian <hr@li.org>\\n\"\n\"Language: hr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Predložak priručnika kvalitete\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Upravljanje dokumentima - Wiki - Priručnik kvalitete\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/hu.po",
    "content": "# Translation of OpenERP Server.\n# This file contains the translation of the following modules:\n#    * document_page_quality_manual\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: OpenERP Server 6.0dev\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Krisztian Eyssen <krisz@eyssen.hu>\\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: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Minőségi kézikönyv sablon\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Dokumentum menedzsment - Wiki - Minőségi kézikönyv\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/it.po",
    "content": "# Italian translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Italian <it@li.org>\\n\"\n\"Language: it\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Modello manuale di Qualità\\n\"\n#~ \"    \\n\"\n#~ \"modulo: wiky_quality_manual\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"modulo: document_page_quality_manual\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/ja.po",
    "content": "# Japanese translation for openobject-addons\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Japanese <ja@li.org>\\n\"\n\"Language: ja\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"品質マニュアルのテンプレート\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"ドキュメント管理 - Wiki - 品質マニュアル\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/lv.po",
    "content": "# Latvian translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Latvian <lv@li.org>\\n\"\n\"Language: lv\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Kvalitātes Rokasgrāmatas Veidne\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Dokumentu Pārvaldība - Wiki - Kvalitātes Rokasgrāmata\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/mn.po",
    "content": "# Mongolian translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: ub121 <ubs121@gmail.com>\\n\"\n\"Language-Team: Mongolian <mn@li.org>\\n\"\n\"Language: mn\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Чанарын удирдамжийн загвар\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Баримтын удирдлага - Вики - Чанарын удирдамж\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/nb.po",
    "content": "# Norwegian Bokmal translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2014-01-22 17:44+0000\\n\"\n\"Last-Translator: Torvald Baade Bringsvor <torvald@bringsvor.com>\\n\"\n\"Language-Team: Norwegian Bokmal <nb@li.org>\\n\"\n\"Language: nb\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Kvalitetsmanual mal\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Dokumenthåndtering - Wiki - Kvalitetsmanual\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/nl.po",
    "content": "# Dutch translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Dutch <nl@li.org>\\n\"\n\"Language: nl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Kwaliteitshandboek sjabloon\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Documentbeheer - Wiki - Kwaliteitshandboek\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/oc.po",
    "content": "# Occitan (post 1500) translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Occitan (post 1500) <oc@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Modèl de manual qualitat\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestion documentària - Wiki - Manual Qualitat\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/pt.po",
    "content": "# Portuguese translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Portuguese <pt@li.org>\\n\"\n\"Language: pt\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Template manual de qualidade\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestão de Documentos - Wiki - Manual Quality\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/pt_BR.po",
    "content": "# Brazilian Portuguese translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Brazilian Portuguese <pt_BR@li.org>\\n\"\n\"Language: pt_BR\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Modelo de Manual de Qualidade\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Gestão de Documento - Wiki - Manual da Qualidade\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/ro.po",
    "content": "# Romanian translation for openobject-addons\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: ERPSystems.ro <Unknown>\\n\"\n\"Language-Team: Romanian <ro@li.org>\\n\"\n\"Language: ro\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Sablon Manual al Calitatii\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Managementul Documentelor - Wiki - Manualul calitatii\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/ru.po",
    "content": "# Russian translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Russian <ru@li.org>\\n\"\n\"Language: ru\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Шаблон руководства по качеству\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Управление документами - Вики - Руководство по качеству\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/sk.po",
    "content": "# Slovak translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Slovak <sk@li.org>\\n\"\n\"Language: sk\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"šablóna príručky kvality\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Správa dokumentov  - Wiki - príručka kvality\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/sl.po",
    "content": "# Slovenian translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Slovenian <sl@li.org>\\n\"\n\"Language: sl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Predloga priročnika zagotavljanja kakovosti.\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Upravljanje dokumentov - Wiki - Priročnik zagotavljanja kakovosti\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/sr@latin.po",
    "content": "# Serbian Latin translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Serbian Latin <sr@latin@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Model kvalitetnog priručnika\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Uređivanje dokumenata - Wiki - Kvalitetni priručnik\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/sv.po",
    "content": "# Swedish translation for openobject-addons\n# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>\\n\"\n\"Language-Team: Swedish <sv@li.org>\\n\"\n\"Language: sv\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Kvalitetsmanual mall\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Dokumenthantering - Wiki - Kvalitetsmanual\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/tr.po",
    "content": "# Turkish translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Turkish <tr@li.org>\\n\"\n\"Language: tr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"Kalite El Kitabı Şablonu\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"Döküman Yönetimi - Wiki - Kalite El Kitabı\"\n"
  },
  {
    "path": "document_page_quality_manual/i18n/vi.po",
    "content": ""
  },
  {
    "path": "document_page_quality_manual/i18n/zh_CN.po",
    "content": "# Chinese (Simplified) translation for openobject-addons\n# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011\n# This file is distributed under the same license as the openobject-addons package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openobject-addons\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-01-11 11:16+0000\\n\"\n\"PO-Revision-Date: 2012-10-31 00:48+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: Chinese (Simplified) <zh_CN@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \"\"\n#~ \"Quality Manual Template\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"质量手册模板\\n\"\n#~ \"    \"\n\n#~ msgid \"Document Management - Wiki - Quality Manual\"\n#~ msgstr \"文档管理 - wiki 质量手册\"\n"
  },
  {
    "path": "document_page_quality_manual/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "document_page_quality_manual/readme/CONFIGURE.md",
    "content": "To edit the quality manual template:\n\n- Go to Management Systems \\> Configuration \\> Categories\n- Select the Quality Manual category\n- Edit the content\n"
  },
  {
    "path": "document_page_quality_manual/readme/CONTRIBUTORS.md",
    "content": "- Odoo SA \\<<info@odoo.com>\\>\n- Maxime Chambreuil \\<<maxime.chambreuil@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n\n- [Trobz](https://www.trobz.com):\n  - Dung Tran \\<<dungtd@trobz.com>\\>\n  - Khoi (Kien Kim) \\<<khoikk@trobz.com>\\>\n\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n"
  },
  {
    "path": "document_page_quality_manual/readme/CREDITS.md",
    "content": "The migration of this module from 17.0 to 18.0 was financially supported by:\n\n- Camptocamp\n"
  },
  {
    "path": "document_page_quality_manual/readme/DESCRIPTION.md",
    "content": "This module provides a quality manual template. The template has the\nsame structure as the ISO 9001 standard.\n"
  },
  {
    "path": "document_page_quality_manual/readme/USAGE.md",
    "content": "To enter your quality manual:\n\n- Go to Management Systems \\> Documentation \\> Manuals\n- Create a new page\n- Enter a title\n- Select the Quality Manual category\n- Fill in the content\n"
  },
  {
    "path": "document_page_quality_manual/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=\"quality-manual\">\n<h1>Quality Manual</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:c2fdd2a642b2eb225b944a4cf41fa6d30ea9380c70545d51354c718dd82c6508\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/management-system/tree/18.0/document_page_quality_manual\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_quality_manual\"><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/management-system&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 a quality manual template. The template has the\nsame structure as the ISO 9001 standard.</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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-2\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-3\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-4\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-5\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-6\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-7\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>To edit the quality manual template:</p>\n<ul class=\"simple\">\n<li>Go to Management Systems &gt; Configuration &gt; Categories</li>\n<li>Select the Quality Manual category</li>\n<li>Edit the content</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Usage</a></h2>\n<p>To enter your quality manual:</p>\n<ul class=\"simple\">\n<li>Go to Management Systems &gt; Documentation &gt; Manuals</li>\n<li>Create a new page</li>\n<li>Enter a title</li>\n<li>Select the Quality Manual category</li>\n<li>Fill in the content</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_quality_manual%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-4\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Authors</a></h3>\n<ul class=\"simple\">\n<li>OpenERP SA</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Odoo SA &lt;<a class=\"reference external\" href=\"mailto:info&#64;odoo.com\">info&#64;odoo.com</a>&gt;</li>\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:maxime.chambreuil&#64;savoirfairelinux.com\">maxime.chambreuil&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://www.trobz.com\">Trobz</a>:<ul>\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Khoi (Kien Kim) &lt;<a class=\"reference external\" href=\"mailto:khoikk&#64;trobz.com\">khoikk&#64;trobz.com</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">Other credits</a></h3>\n<p>The migration of this module from 17.0 to 18.0 was financially supported\nby:</p>\n<ul class=\"simple\">\n<li>Camptocamp</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-8\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/document_page_quality_manual\">OCA/management-system</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": "document_page_work_instruction/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==============================================\nDocument Management - Wiki - Work Instructions\n==============================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:cdbdda2551e5071e48fda78770ee671a20a6bec93d5ad64c766afab6a3f891c0\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/document_page_work_instruction\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_work_instruction\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module provides Work Instructions Template.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo enter your work instruction template, you need to:\n\n- go to Management Systems > Documentation > Work Instructions\n- select the Work Instructions category and edit the template\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_work_instruction%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Savoir-faire Linux <support@savoirfairelinux.com>\n\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n\n- Eugen Don <eugen.don@don-systems.de>\n\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\n- `Trobz <https://www.trobz.com>`__:\n\n  - Dung Tran <dungtd@trobz.com>\n  - Khoi (Kien Kim) <khoikk@trobz.com>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n\nOther credits\n-------------\n\nThe migration of this module from 16.0 to 18.0 was financially supported\nby:\n\n- Camptocamp\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/document_page_work_instruction>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "document_page_work_instruction/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n"
  },
  {
    "path": "document_page_work_instruction/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Document Management - Wiki - Work Instructions\",\n    \"version\": \"18.0.1.0.1\",\n    \"author\": \"Savoir-faire Linux,Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"document_page\", \"mgmtsystem\"],\n    \"data\": [\"data/document_page.xml\", \"views/document_page_work_instructions.xml\"],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "document_page_work_instruction/data/document_page.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"document_page_group_work_instructions\" model=\"document.page\">\n        <field name=\"name\">Work Instructions</field>\n        <field name=\"type\">category</field>\n        <field name=\"company_id\" eval=\"False\" />\n        <field name=\"template\">\n        <![CDATA[\n<h1>Step 1</h1>\n\n<h1>Step 2</h1>\n\n<h1>Step 3</h1>\n        ]]>\n      </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "document_page_work_instruction/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# Rudolf Schnapka <rs@techno-flex.de>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-07 01:45+0000\\n\"\n\"PO-Revision-Date: 2016-03-11 15:53+0000\\n\"\n\"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\\n\"\n\"Language-Team: German (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/de/)\\n\"\n\"Language: de\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Arbeitsanweisungen\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Arbeitsanweisungen Ihres Management-Systems.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/document_page_work_instruction.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_work_instruction\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Spanish (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/es/)\\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\n#. module: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Instrucciones De Trabajo\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Instrucciones de trabajo de su sistema de gestión.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:18+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:18+0000\\n\"\n\"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.\"\n\"com>, 2018\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Instructivo\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Instructivo de tu sistema de gestión.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_work_instruction\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-05-29 15:34+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"دستورالعمل‌های کاری\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"دستورالعمل‌های کاری سیستم مدیریت شما.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: French (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/fr/)\\n\"\n\"Language: fr\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Instructions de travail\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Instructions de travail de votre système de gestion.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-01 20:06+0000\\n\"\n\"PO-Revision-Date: 2017-05-01 20:06+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n\"\n\"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Radne upute\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Radne upute za vaš sustav upravljanja\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_work_instruction\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 11.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2019-03-02 19:52+0000\\n\"\n\"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>\\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 3.4\\n\"\n\n#. module: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Istruzioni di lavoro\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Istruzioni di lavoro per il sistema di gestione.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/nb/)\\n\"\n\"Language: nb\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Arbeidsinstrukser\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Arbeidsinstrukser for styringssystemet.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 04:23+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 04:23+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/\"\n\"teams/23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Werkinstructies\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Werkinstructies van uw managementsysteem\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/nn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Norwegian Nynorsk (http://www.transifex.com/oca/OCA-\"\n\"management-system-9-0/language/nn/)\\n\"\n\"Language: nn\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Arbeidsinstruksar\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Arbeidsinstruksar for styringssystemet.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/no.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Norwegian (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/no/)\\n\"\n\"Language: no\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Arbeidsinstrukser\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Arbeidsinstrukser til styringssystemet.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-\"\n\"management-system-9-0/language/pt_BR/)\\n\"\n\"Language: pt_BR\\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: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Instruções de trabalho\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Instruções de trabalho do seu Sistema de Gestão.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * document_page_work_instruction\n#\n# Translators:\n# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/sl/)\\n\"\n\"Language: sl\\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=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n\"\n\"%100==4 ? 2 : 3);\\n\"\n\n#. module: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Delovni napotki\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Delovni napotki za sistem upravljanja.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* document_page_work_instruction\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-09-02 10:06+0000\\n\"\n\"Last-Translator: jakobkrabbe <jakob@syscare.se>\\n\"\n\"Language-Team: none\\n\"\n\"Language: sv\\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.6.2\\n\"\n\n#. module: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"Arbetsinstruktioner\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"Arbetsinstruktioner för ditt ledningssystem.\"\n"
  },
  {
    "path": "document_page_work_instruction/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2013-07-27 21:21+0000\\n\"\n\"PO-Revision-Date: 2014-03-04 11:52+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:30+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: document_page_work_instruction\n#: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action\n#: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#. module: document_page_work_instruction\n#: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action\nmsgid \"Work instructions of your management system.\"\nmsgstr \"\"\n"
  },
  {
    "path": "document_page_work_instruction/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "document_page_work_instruction/readme/CONFIGURE.md",
    "content": "To enter your work instruction template, you need to:\n\n- go to Management Systems \\> Documentation \\> Work Instructions\n- select the Work Instructions category and edit the template\n"
  },
  {
    "path": "document_page_work_instruction/readme/CONTRIBUTORS.md",
    "content": "- Savoir-faire Linux \\<<support@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n\n- [Trobz](https://www.trobz.com):\n  - Dung Tran \\<<dungtd@trobz.com>\\>\n  - Khoi (Kien Kim) \\<<khoikk@trobz.com>\\>\n\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n"
  },
  {
    "path": "document_page_work_instruction/readme/CREDITS.md",
    "content": "The migration of this module from 16.0 to 18.0 was financially supported by:\n\n- Camptocamp\n"
  },
  {
    "path": "document_page_work_instruction/readme/DESCRIPTION.md",
    "content": "This module provides Work Instructions Template.\n"
  },
  {
    "path": "document_page_work_instruction/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=\"document-management-wiki-work-instructions\">\n<h1>Document Management - Wiki - Work Instructions</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:cdbdda2551e5071e48fda78770ee671a20a6bec93d5ad64c766afab6a3f891c0\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/management-system/tree/18.0/document_page_work_instruction\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-document_page_work_instruction\"><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/management-system&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 Work Instructions Template.</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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-6\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-7\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>To enter your work instruction template, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Documentation &gt; Work Instructions</li>\n<li>select the Work Instructions category and edit the template</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20document_page_work_instruction%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-3\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux &lt;<a class=\"reference external\" href=\"mailto:support&#64;savoirfairelinux.com\">support&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://www.trobz.com\">Trobz</a>:<ul>\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Khoi (Kien Kim) &lt;<a class=\"reference external\" href=\"mailto:khoikk&#64;trobz.com\">khoikk&#64;trobz.com</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Other credits</a></h3>\n<p>The migration of this module from 16.0 to 18.0 was financially supported\nby:</p>\n<ul class=\"simple\">\n<li>Camptocamp</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/document_page_work_instruction\">OCA/management-system</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": "document_page_work_instruction/views/document_page_work_instructions.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <record id=\"work_instructions_action\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Work Instructions</field>\n        <field name=\"res_model\">document.page</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"help\">Work instructions of your management system.</field>\n        <field\n            name=\"domain\"\n            eval=\"[('parent_id','=',ref('document_page_group_work_instructions'))]\"\n        />\n        <field\n            name=\"context\"\n            eval=\"{'default_parent_id': ref('document_page_group_work_instructions')}\"\n        />\n    </record>\n    <record id=\"work_instructions_action_tree\" model=\"ir.actions.act_window.view\">\n        <field name=\"sequence\" eval=\"0\" />\n        <field name=\"view_mode\">list</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_tree\" />\n        <field name=\"act_window_id\" ref=\"work_instructions_action\" />\n    </record>\n    <record id=\"work_instructions_action_form\" model=\"ir.actions.act_window.view\">\n        <field name=\"sequence\" eval=\"5\" />\n        <field name=\"view_mode\">form</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_form\" />\n        <field name=\"act_window_id\" ref=\"work_instructions_action\" />\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_manuals_work_instructions\"\n        name=\"Work Instructions\"\n        action=\"work_instructions_action\"\n        parent=\"mgmtsystem.menu_mgmtsystem_manuals\"\n        sequence=\"90\"\n        groups=\"base.group_user\"\n    />\n</odoo>\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": "mgmtsystem/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=================\nManagement System\n=================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:486c4414894eacfe55da0f32286e632a5cc25bf213b61d38ddb251fd2411e4be\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module is the basis of any management system applications:\n\n- audit reports\n- nonconformities\n- immediate actions\n- preventive actions\n- corrective actions\n- improvement opportunities\n\nVideos and presentations from past OCA Days:\n\n- 2022: `Using the Management Systems to drive your ISO norm\n  compliance <https://www.youtube.com/watch?v=w2nf_O9TajM>`__\n- 2015: `Manage your ISO 27001-certified ISMS with\n  Odoo <https://es.slideshare.net/slideshow/manage-your-information-security-management-system-with-odoo/49101147>`__\n- 2013: `ISO & Standards Management with\n  OpenERP <https://es.slideshare.net/slideshow/iso-anmanagement-systemswithopenerpen/23915296>`__\n- 2012: `OpenERP Management System\n  Modules <https://es.slideshare.net/slideshow/openerp-management-system-modules/13058968#2>`__\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\n**Manage systems**\n\nGo to \"Management System\" app -> Configuration -> Systems\n\n**Manage applications**\n\nGo to \"Management System\" app -> Configuration -> Settings\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Savoir-faire Linux <support@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- Eugen Don <eugen.don@don-systems.de>\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n- Iván Todorovich <ivan.todorovich@gmail.com>\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\n- `Trobz <https://trobz.com>`__:\n\n  - Dung Tran <dungtd@trobz.com>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n\nOther credits\n-------------\n\nThe migration of this module from 13.0 to 14.0 was financially supported\nby Camptocamp.\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System\",\n    \"version\": \"18.0.1.2.0\",\n    \"summary\": \"Support for management systems, such as ISO compliance.\",\n    \"author\": \"Savoir-faire Linux,Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"base\"],\n    \"data\": [\n        \"security/mgmtsystem_security.xml\",\n        \"security/ir.model.access.csv\",\n        \"views/menus.xml\",\n        \"views/mgmtsystem_system.xml\",\n        \"views/res_config.xml\",\n    ],\n    \"application\": True,\n}\n"
  },
  {
    "path": "mgmtsystem/i18n/am.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Amharic (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/am/)\\n\"\n\"Language: am\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/ca.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Catalan (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/ca/)\\n\"\n\"Language: ca\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat per\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Creat el\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Darrera Actualització per\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Darrera Actualització el\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancel·la\"\n"
  },
  {
    "path": "mgmtsystem/i18n/cs.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Czech (http://www.transifex.com/oca/OCA-management-system-9-0/\"\n\"language/cs/)\\n\"\n\"Language: cs\\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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Zrušit\"\n"
  },
  {
    "path": "mgmtsystem/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2019-09-24 17:24+0000\\n\"\n\"Last-Translator: Manuel Stahl <manuel.stahl@awesome-technologies.de>\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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 3.8\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"Maßnahmen\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"Anwendungen\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Zustimmender Benutzer\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Prüfer\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Prüfungen\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"Forderungen\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Unternehmen\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Einstellungen\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Konfiguration\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Erstellt von\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Erstellt am\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Anzeigename\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"Dokumentenseite Freigabe\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"Dokumentation\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"Umweltmanagement\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\n#, fuzzy\nmsgid \"Environment Manual Template\"\nmsgstr \"Umwelt-Betrachtungen\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"Umwelt-Betrachtungen\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"Befürchtete Geschehen\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"Gefahren\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\n#, fuzzy\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\"Vorlage des Gesundheits- und Sicherkeitshandbuches basiert auf den Vorgaben \"\n\"gem. OHSAS 18001\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Hygiene & Safety\"\nmsgstr \"Hygiene & Sicherheit (OHSAS 18001)\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Information Security\"\nmsgstr \"Informationssicherheit (ISO 27001)\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\n#, fuzzy\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\"Vorlage des Sicherheitshandbuchs zur Informationsverarbeitung basiert auf \"\n\"den Vorgaben gem. ISO 27001\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zuletzt aktualisiert von\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zuletzt aktualisiert am\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\"Verwalte Managementsysteme, Handbücher, KPI's, Mängelprüfungen, Handlungen, \"\n\"Rückmeldungen, Audits, Reviews.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Management-System\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"Managementsysteme\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Vorgesetzter\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Handbücher\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"Moduladministrator, in der Lage Einstellungen zu ändern.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"Modul-Anwender mit zusätzlichen Berechtigungen für Freigaben.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\"Modul-Anwender mit auditorspezifischen Berechtigungen, wie z. B. \"\n\"Effektivitäts-Reviews.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"Modul-Anwender mit allgemeiner Nurlese-Berechtigung.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"Modul-Anwender mit Lese- und Schreibzugriffs-Berechtigung.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Nichteinhaltungen\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Vorgänge\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\"Stelle Kategorie für Umwelt-Management bereit.\\n\"\n\"- Das Modul mgmtsystem_environmental_aspect wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\"Stelle Risikomanagement bereit.\\n\"\n\"- Das Modul mgmtsystem_security_event wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\"Stelle Gefahren-Management bereit.\\n\"\n\"- Das Modul mgmtsystems_hazard wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#, fuzzy\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\"Stellt Kategorie Prozeduren bereit.\\n\"\n\"- Das Modul mgmtsystem_procedure wird installiert.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\"Stellt Handbuch für Gesundheits- und Arbeitssicherheit bereit.\\n\"\n\"- Das Modul mgmtsystem_health_safety_manual wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\n#, fuzzy\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\"Stellt Handbuchvorlage zum Qualitätsmanagement bereit.\\n\"\n\"- Das Modul mgmtsystem_quality_manual wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\"Stellt Mittel zur Aktions- und Verbesserungsplanung bereit bereit.\\n\"\n\"- Das Modul mgmtsystem_action wird installiert.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\"Stellt Handbuchvorlage zum Umweltmanagement bereit.\\n\"\n\"- Das Modul mgmtsystem_environment_manual wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\"Stellt Handbuchvorlage zur Sicherheit in der Informationsverarbeitung \"\n\"bereit.\\n\"\n\"- Das Modul mgmtsystem_security_manual wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\"Stellt Hilfsmittel zum Auditieren bereit.\\n\"\n\"- Das Modul mgmtsystem_audit wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\"Stellt Hilfsmittel zum Forderungsmanagement bereit.\\n\"\n\"- Das Modul mgmtsystem_claim wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\"Stellt Dokumentengenehmigung und Verlauf bereit.\\n\"\n\"- Das Modul mgmtsystem_procedure wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\"Stellt Hilfsmittel zum Umweltmanagement bereit.\\n\"\n\"- Das Modul mgmtsystem_environment wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\"Stellt Hilfsmittel Gesundheits- und Arbeitssicherheit bereit.\\n\"\n\"- Das Modul mgmtsystem_health_safety wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\"Stellt Hilfsmittel für Sicherheit in der Informationsverarbeitung bereit.\\n\"\n\"- Das Modul mgmtsystem_information_security wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\"Stellt Hilfsmittel zum Mängelmanagement bereit.\\n\"\n\"- Das Modul mgmtsystem_nonconformity wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#, fuzzy\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\"Stellt Kategorie Prozeduren bereit.\\n\"\n\"- Das Modul mgmtsystem_procedure wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\"Stellt Hilfsmittel zum Qualitätsmanagement bereit.\\n\"\n\"- Das Modul mgmtsystem_quality wird installiert.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\"Stellt Hilfsmittel für Revies bereit.\\n\"\n\"- Das Modul mgmtsystem_review wird installiert.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"Qualitätsmanagementhandbuch Vorlage\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\n#, fuzzy\nmsgid \"Quality Tools\"\nmsgstr \"Qualität\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"Berichte\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"Bewertungen\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"Einstellungen\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Systeme\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Benutzer\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"Betrachter\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Manage audits and verification lists\"\n#~ msgstr \"Verwalte Prüfungen und Verifikationslisten\"\n\n#~ msgid \"Manage customer claims as nonconformities\"\n#~ msgstr \"Verwalte Kundenbeanstandungen als Nichteinhaltungen\"\n\n#~ msgid \"\"\n#~ \"Manage immediate, corrective, and preventive actions and improvement \"\n#~ \"opportunities\"\n#~ msgstr \"\"\n#~ \"Verwalte Handlungen (Sofort, Berichtigend, Vorbeugend) und \"\n#~ \"Verbesserungsmöglichkeiten      \"\n\n#~ msgid \"Manage nonconformities analysis, planning and resolution\"\n#~ msgstr \"Verwalte Nichteinhaltungen (Analyse, Planung und Lösung)\"\n\n#~ msgid \"Provide Environment management tools (ISO 14001)\"\n#~ msgstr \"Stelle Umwelt-Management bereit (ISO 14001)\"\n\n#~ msgid \"Provide Health &amp; Safety management tools (OHSAS 18001)\"\n#~ msgstr \"Stelle Gesundheits- und Sicherheitsmanagement bereit (OHSAS 18001)\"\n\n#~ msgid \"Provide Information Security management tools (ISO 27001)\"\n#~ msgstr \"Stelle Informationssicherheitsmanagement bereit (ISO 27001)\"\n\n#~ msgid \"Provide Quality management tools (ISO 9001)\"\n#~ msgstr \"Stelle Qualitätsmanagement bereit (ISO 9001)\"\n\n#~ msgid \"Provide a Feared Event documentation category and template\"\n#~ msgstr \"\"\n#~ \"Stelle eine Dokumentation und Vorlage für Gefürchtetes Ereignis bereit\"\n\n#~ msgid \"Provide a Hazards documentation category and template\"\n#~ msgstr \"Stelle eine Dokumentation und Vorlage für Risiken bereit\"\n\n#~ msgid \"\"\n#~ \"Provide a Health &amp; Safety Manual template based on the OHSAS 18001 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Stelle eine Vorlage für ein Gesundheits- und Sicherheitshandbuch \"\n#~ \"basierend auf den Vorgaben gem. OHSAS 18001 bereit\"\n\n#~ msgid \"Provide a Procedure documentation category and template\"\n#~ msgstr \"Stelle eine Dokumentation und Vorlage für Vorgänge bereit\"\n\n#~ msgid \"\"\n#~ \"Provide a Quality Manual template based on the ISO 9001:2008 standard\"\n#~ msgstr \"\"\n#~ \"Stelle eine Vorlage des Qualitätshandbuches basierend auf den Vorgaben \"\n#~ \"gem. ISO 9001:2008 bereit\"\n\n#, fuzzy\n#~ msgid \"Provide a Work Instructions documentation category and template\"\n#~ msgstr \"Stelle eine Dokumentation und Vorlage für Risiken bereit\"\n\n#~ msgid \"Provide an Envioronmental Aspect documentation category and template\"\n#~ msgstr \"\"\n#~ \"Stelle eine Dokumentationskategorie und Vorlage für Umwelt-Aspekte bereit\"\n\n#~ msgid \"\"\n#~ \"Provide an Environment Manual template based on the ISO 14001:2004 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Stelle eine Vorlage des Umwelt-Handbuchs basierend auf den Vorgaben gem. \"\n#~ \"ISO 14001:2004 bereit\"\n\n#~ msgid \"Provide an Information Security Manual template based on ISO 27001\"\n#~ msgstr \"\"\n#~ \"Stelle eine Vorlage des Sicherheitshandbuchs zur Informationsverarbeitung \"\n#~ \"basierend auf den Vorgaben gem. ISO 27001 bereit\"\n\n#~ msgid \"Top management reviews\"\n#~ msgstr \"Top Management Reviews\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zuletzt aktualisiert am\"\n\n#~ msgid \"Manual\"\n#~ msgstr \"Handbuch\"\n\n#~ msgid \"Apply\"\n#~ msgstr \"Anwenden\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Abbrechen\"\n\n#~ msgid \"Configure management system\"\n#~ msgstr \"Managementsystem einstellen\"\n\n#~ msgid \"Quality (ISO 9001)\"\n#~ msgstr \"Qualität (ISO 9001)\"\n\n#~ msgid \"or\"\n#~ msgstr \"oder\"\n"
  },
  {
    "path": "mgmtsystem/i18n/el_GR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/el_GR/)\\n\"\n\"Language: el_GR\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Δημιουργήθηκε από \"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Δημιουργήθηκε στις\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"Κωδικός\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Τελευταία ενημέρωση από\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Τελευταία ενημέρωση στις\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# enjolras <yo@miguelrevilla.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-02-10 07:38+0000\\n\"\n\"PO-Revision-Date: 2023-07-07 17:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"Acciones\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"Aplicaciones\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Usuario aprobador\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Auditor/a\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Auditorías\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"Reclamaciones\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"ajustes de configuración\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Configuración\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"Aprobación de la página del documento\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"Documentación\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"Medioambiente\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"Plantilla de manual de medio ambiente\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspectos medioambientales\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"Eventos temidos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"Peligros\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"Plantilla de manual de salud y seguridad\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"Higiene y seguridad\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"Información sobre seguridad\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"Plantilla de manual de información de seguridad\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualización por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización el\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\"Administrar los sistemas de gestión, manuales, KPIs, no conformidades, \"\n\"acciones, evaluaciones, auditorías, revisiones.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Sistema de gestión\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"Sistemas de gestión\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Gestor\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Manuales\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\"Administrador del módulo , capaz de modificar los datos de configuración.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"Usuario del módulo con permiso adicional para aprobaciones.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\"Usuario del módulo con permisos adicionales para el trabajo de auditor, como \"\n\"las revisiones de efectividad.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"Usuario del módulo con acceso general de sólo lectura.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"Usuario del módulo, con lectura y escritura general.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"No conformidades\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedimientos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\"Proporcionar la categoría de Aspecto Medioambiental.\\n\"\n\"- Esto instala el módulo mgmtsystem_environmental_aspect.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\"Proporcionar Eventos Temerosos.\\n\"\n\"- Esto instala el módulo mgmtsystem_security_event.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\"Proporcionar riesgos.\\n\"\n\"- Esto instala el módulo mgmtsystem_hazard.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\"Proporcionar la categoría Instrucciones de trabajo.\\n\"\n\"- Esto instala el módulo document_page_work_instruction.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\"Proporcionar una plantilla de manual de salud y seguridad.\\n\"\n\"- Esto instala el módulo mgmtsystem_health_safety_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\"Proporcionar una plantilla de manual de calidad.\\n\"\n\"- Esto instala el módulo document_page_quality_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\"Proporcionar herramientas de acciones y oportunidades de mejora.\\n\"\n\"- Esto instala el módulo mgmtsystem_action.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\"Proporcionar una plantilla de manual de entorno.\\n\"\n\"- Esto instala el módulo mgmtsystem_environment_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\"Proporcionar un manual de seguridad de la información.\\n\"\n\"- Esto instala el módulo information_security_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\"Proporcionar herramientas de auditoría.\\n\"\n\"- Esto instala el módulo mgmtsystem_audit.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\"Proporcionar herramientas de reclamación.\\n\"\n\"- Instala el módulo mgmtsystem_claim.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\"Proporciona aprobación e historial de documentos. \\n\"\n\"- Esto instala el módulo document_page_approval.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\"Proporcionar herramientas de gestión del entorno.\\n\"\n\"- Esto instala el módulo mgmtsystem_environment.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\"Proporcionar herramientas de gestión de la salud y la seguridad.\\n\"\n\"- Esto instala el módulo mgmtsystem_health_safety.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\"Proporcionar herramientas de seguridad de la información.\\n\"\n\"- Esto instala el módulo mgmtsystem_information_security.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\"Proporcionar herramientas de disconformidad.\\n\"\n\"- Esto instala el módulo mgmtsystem_nonconformity.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\"Proporcionar la categoría de procedimientos.\\n\"\n\"- Esto instala el módulo document_page_procedure.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\"Proporcionar herramientas de gestión de la calidad.\\n\"\n\"- Instala el módulo mgmtsystem_quality.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\"Proporcionar herramientas de revisión.\\n\"\n\"- Esto instala el módulo mgmtsystem_review.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"Plantilla del Manual de Calidad\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"Herramientas de calidad\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"Informes\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"Revisiones\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"Ajustes\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Sistemas\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Usuario\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"Espectador\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"Instrucciones de trabajo\"\n\n#~ msgid \"Manage audits and verification lists\"\n#~ msgstr \"Gestión de auditorías y listas de verificación\"\n\n#~ msgid \"Manage customer claims as nonconformities\"\n#~ msgstr \"Gestionar las reclamaciones de los clientes como no conformidades\"\n\n#~ msgid \"\"\n#~ \"Manage immediate, corrective, and preventive actions and improvement \"\n#~ \"opportunities\"\n#~ msgstr \"\"\n#~ \"Gestionar las acciones inmediatas, correctivas y preventivas y las \"\n#~ \"oportunidades de mejora\"\n\n#~ msgid \"Manage nonconformities analysis, planning and resolution\"\n#~ msgstr \"\"\n#~ \"Gestionar el análisis, la planificación y la resolución de las no \"\n#~ \"conformidades\"\n\n#~ msgid \"Provide Environment management tools (ISO 14001)\"\n#~ msgstr \"Proporcionar herramientas de gestión medioambiental (ISO 14001)\"\n\n#~ msgid \"Provide Health &amp; Safety management tools (OHSAS 18001)\"\n#~ msgstr \"\"\n#~ \"Proporcionar herramientas de gestión de la salud y la seguridad (OHSAS \"\n#~ \"18001)\"\n\n#~ msgid \"Provide Information Security management tools (ISO 27001)\"\n#~ msgstr \"\"\n#~ \"Proporcionar herramientas de gestión de la seguridad de la información \"\n#~ \"(ISO 27001)\"\n\n#~ msgid \"Provide Quality management tools (ISO 9001)\"\n#~ msgstr \"Proporcionar herramientas de gestión de la calidad (ISO 9001)\"\n\n#~ msgid \"Provide a Feared Event documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y una plantilla de documentación de sucesos \"\n#~ \"temidos\"\n\n#~ msgid \"Provide a Hazards documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y una plantilla de documentación sobre peligros\"\n\n#~ msgid \"\"\n#~ \"Provide a Health &amp; Safety Manual template based on the OHSAS 18001 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Proporcionar una plantilla de Manual de Salud y Seguridad basada en la \"\n#~ \"norma OHSAS 18001\"\n\n#~ msgid \"Provide a Procedure documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y una plantilla de documentación de \"\n#~ \"procedimientos\"\n\n#~ msgid \"\"\n#~ \"Provide a Quality Manual template based on the ISO 9001:2008 standard\"\n#~ msgstr \"\"\n#~ \"Proporcionar un modelo de Manual de Calidad basado en la norma ISO \"\n#~ \"9001:2008\"\n\n#~ msgid \"Provide a Work Instructions documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y una plantilla de documentación de \"\n#~ \"instrucciones de trabajo\"\n\n#~ msgid \"Provide an Envioronmental Aspect documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y una plantilla de documentación de los \"\n#~ \"Aspectos Medioambientales\"\n\n#~ msgid \"\"\n#~ \"Provide an Environment Manual template based on the ISO 14001:2004 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Proporcionar un modelo de Manual de Medio Ambiente basado en la norma ISO \"\n#~ \"14001:2004\"\n\n#~ msgid \"Provide an Information Security Manual template based on ISO 27001\"\n#~ msgstr \"\"\n#~ \"Proporcionar una plantilla de Manual de Seguridad de la Información \"\n#~ \"basada en la norma ISO 27001\"\n\n#~ msgid \"Top management reviews\"\n#~ msgstr \"Revisiones de los altos directivos\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n\n#~ msgid \"Manual\"\n#~ msgstr \"Manual\"\n\n#~ msgid \"Apply\"\n#~ msgstr \"Aplicar\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n\n#~ msgid \"Configure management system\"\n#~ msgstr \"Configurar el sistema de gestión\"\n\n#~ msgid \"Quality (ISO 9001)\"\n#~ msgstr \"Calidad (ISO 9001)\"\n\n#~ msgid \"or\"\n#~ msgstr \"o\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es_AR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 13.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2020-07-18 18:19+0000\\n\"\n\"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: es_AR\\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 3.10\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"Acciones\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"Aplicaciones\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Usuario Aprobador\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Auditor\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Auditorías\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"Reclamaciones\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Configurar Ajustes\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Configuración\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"Aprobación de la Página del Documento\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"Documentación\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"Medioambiente\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"Plantilla del Manual de Medioambiente\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspectos medioambientales\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"Eventos Temidos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"Peligros\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"Plantilla del Manual de Higiene y Seguridad\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"Higiene y Seguridad\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"Información de Seguridad\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"Plantilla del Manual de Información de Seguridad\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualización por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización el\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\"Gestionar los sistemas de gestión, manuales, KPIs, inconformidades, \"\n\"acciones, evaluaciones, auditorías, revisiones.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Sistema de gestión\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"Sistemas de gestión\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Gestor\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Manuales\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\"Administrador del módulo , capaz de modificar los datos de configuración.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"Usuario del módulo con permiso adicional para aprobaciones.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\"Usuario del módulo con permisos adicionales para el trabajo de auditor, como \"\n\"las revisiones de efectividad.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"Usuario del módulo con acceso general de sólo lectura.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"Usuario del módulo, con lectura y escritura general.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"No conformidades\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedimientos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\"Proporcionar categoría de Aspecto Medioambiental.\\n\"\n\"- Esto instala el módulo mgmtsystem_environmental_aspect.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\"Proporcionar Eventos Temidos.\\n\"\n\"- Esto instala el módulo mgmtsystem_security_event.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\"Proporcionar Riesgos.\\n\"\n\"- Esto instala el módulo mgmtsystem_hazard.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\"Proporcionar instrucciones de trabajo categoría.\\n\"\n\"- Esto instala el módulo document_page_work_instruction.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\"Proporcionar una plantilla de manual de salud y seguridad.\\n\"\n\"- Esto instala el módulo mgmtsystem_health_safety_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\"Proporcionar una plantilla de manual de calidad.\\n\"\n\"- Esto instala el módulo document_page_quality_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\"Proporcionar acciones y herramientas de oportunidades de mejora.\\n\"\n\"- Esto instala el módulo mgmtsystem_action.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\"Proporcionar una plantilla de manual de entorno.\\n\"\n\"- Esto instala el módulo mgmtsystem_environment_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\"Proporcionar un manual de seguridad de la información.\\n\"\n\"- Esto instala el módulo information_security_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\"Proporcionar herramientas de auditoría.\\n\"\n\"- Esto instala el módulo mgmtsystem_audit.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\"Proporcionar herramientas de reclamo.\\n\"\n\"- Esto instala el módulo mgmtsystem_claim.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\"Proporcionar aprobación de documentos e historial.\\n\"\n\"- Esto instala el módulo document_page_approval.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\"Proporcionar herramientas de gestión medioambiental.\\n\"\n\"- Esto instala el módulo mgmtsystem_environment.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\"Proporcionar herramientas de gestión de salud y seguridad.\\n\"\n\"- Esto instala el módulo mgmtsystem_health_safety.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\"Proporcionar herramientas de seguridad de la información.\\n\"\n\"- Esto instala el módulo mgmtsystem_information_security.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\"Proporcionar herramientas de inconformidad.\\n\"\n\"- Esto instala el módulo mgmtsystem_nonconformity.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\"Proporcione la categoría de procedimientos.\\n\"\n\"- Esto instala el módulo document_page_procedure.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\"Proporcionar herramientas de gestión de calidad.\\n\"\n\"- Esto instala el módulo mgmtsystem_quality.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\"Proporcionar herramientas de revisión.\\n\"\n\"- Esto instala el módulo mgmtsystem_review.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"Plantilla del Manual de Calidad\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\n#, fuzzy\nmsgid \"Quality Tools\"\nmsgstr \"Calidad\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"Informes\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"Revisiones\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"Ajustes\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Sistemas\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Usuario\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"Espectador\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"Instrucciones de Trabajo\"\n\n#~ msgid \"Manage audits and verification lists\"\n#~ msgstr \"Gestionar auditorías y listas de verificación\"\n\n#~ msgid \"Manage customer claims as nonconformities\"\n#~ msgstr \"Gestionar reclamos de clientes como inconformidades\"\n\n#~ msgid \"\"\n#~ \"Manage immediate, corrective, and preventive actions and improvement \"\n#~ \"opportunities\"\n#~ msgstr \"\"\n#~ \"Gestionar acciones inmediatas, correctivas y preventivas y oportunidades \"\n#~ \"de mejora\"\n\n#~ msgid \"Manage nonconformities analysis, planning and resolution\"\n#~ msgstr \"Gestionar análisis, planificación y resolución de inconformidades\"\n\n#~ msgid \"Provide Environment management tools (ISO 14001)\"\n#~ msgstr \"Proporcionar herramientas de gestión Medioambiental (ISO 14001)\"\n\n#~ msgid \"Provide Health &amp; Safety management tools (OHSAS 18001)\"\n#~ msgstr \"\"\n#~ \"Proporcionar herramientas de gestión de Salud y Seguridad (OHSAS 18001)\"\n\n#~ msgid \"Provide Information Security management tools (ISO 27001)\"\n#~ msgstr \"\"\n#~ \"Proporcionar herramientas de gestión de Seguridad de la Información (ISO \"\n#~ \"27001)\"\n\n#~ msgid \"Provide Quality management tools (ISO 9001)\"\n#~ msgstr \"Proporcionar herramientas de gestión de Calidad (ISO 9001)\"\n\n#~ msgid \"Provide a Feared Event documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y plantilla de documentación de un Evento \"\n#~ \"Temido\"\n\n#~ msgid \"Provide a Hazards documentation category and template\"\n#~ msgstr \"Proporcionar una categoría y plantilla de documentación de Riesgos\"\n\n#~ msgid \"\"\n#~ \"Provide a Health &amp; Safety Manual template based on the OHSAS 18001 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Proporcionar una plantilla de Manual de Salud y Seguridad basada en el \"\n#~ \"estándar OHSAS 18001\"\n\n#~ msgid \"Provide a Procedure documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y plantilla de documentación de procedimiento\"\n\n#~ msgid \"\"\n#~ \"Provide a Quality Manual template based on the ISO 9001:2008 standard\"\n#~ msgstr \"\"\n#~ \"Proporcionar una plantilla de Manual de Calidad basada en el estándar ISO \"\n#~ \"9001: 2008\"\n\n#~ msgid \"Provide a Work Instructions documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y plantilla de documentación de Instrucciones \"\n#~ \"de Trabajo\"\n\n#~ msgid \"Provide an Envioronmental Aspect documentation category and template\"\n#~ msgstr \"\"\n#~ \"Proporcionar una categoría y plantilla de documentación de Aspectos \"\n#~ \"Medioambientales\"\n\n#~ msgid \"\"\n#~ \"Provide an Environment Manual template based on the ISO 14001:2004 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Proporcionar una plantilla de Manual de Medioambiente basada en el \"\n#~ \"estándar ISO 14001: 2004\"\n\n#~ msgid \"Provide an Information Security Manual template based on ISO 27001\"\n#~ msgstr \"\"\n#~ \"Proporcionar una plantilla de Manual de Seguridad de la Información \"\n#~ \"basada en ISO 27001\"\n\n#~ msgid \"Top management reviews\"\n#~ msgstr \"Revisiones de la alta gerencia\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es_CL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/es_CL/)\\n\"\n\"Language: es_CL\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Environment\"\nmsgstr \"Aspectos medio ambientales\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\n#, fuzzy\nmsgid \"Environment Manual Template\"\nmsgstr \"Aspectos medio ambientales\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspectos medio ambientales\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:18+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:18+0000\\n\"\n\"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.\"\n\"com>, 2018\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Actions\"\nmsgstr \"Aplicaciones\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"Aplicaciones\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Usuario Aprobador\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Auditor\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Auditorías\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"Reclamos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Ajustes\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Sistema de Gestión\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedimientos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"Reportes\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"Ajustes\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Sistemas\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"Manage immediate, corrective, and preventive actions and improvement \"\n#~ \"opportunities\"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"Acciones (inmediata, correctiva, preventiva) y oportunidades de mejora\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"Provide a Health &amp; Safety Manual template based on the OHSAS 18001 \"\n#~ \"standard\"\n#~ msgstr \"Modelo de Manual de Calidad basado en el estándar ISO 9001:2008\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"Provide a Quality Manual template based on the ISO 9001:2008 standard\"\n#~ msgstr \"Modelo de Manual de Calidad basado en el estándar ISO 9001:2008\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"Provide an Environment Manual template based on the ISO 14001:2004 \"\n#~ \"standard\"\n#~ msgstr \"Modelo de Manual de Calidad basado en el estándar ISO 9001:2008\"\n\n#~ msgid \"Apply\"\n#~ msgstr \"Aplicar\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n\n#~ msgid \"Quality (ISO 9001)\"\n#~ msgstr \"Calidad (ISO 9001)\"\n\n#~ msgid \"or\"\n#~ msgstr \"o\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es_CR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-\"\n\"management-system-9-0/language/es_CR/)\\n\"\n\"Language: es_CR\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es_EC.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-\"\n\"management-system-9-0/language/es_EC/)\\n\"\n\"Language: es_EC\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es_MX.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/es_MX/)\\n\"\n\"Language: es_MX\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/es_VE.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-\"\n\"management-system-9-0/language/es_VE/)\\n\"\n\"Language: es_VE\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/et.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Estonian (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/et/)\\n\"\n\"Language: et\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Loobu\"\n"
  },
  {
    "path": "mgmtsystem/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 17.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-08-28 13:06+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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.6.2\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"اقدامات\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"برنامه‌ها\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"کاربر تأییدکننده\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"حسابرس\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"حسابرسی‌ها\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"مطالبات\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"شرکت\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"تنظیمات پیکربندی\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"پیکربندی\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"ایجاد شده توسط\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"ایجاد شده در\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"نام نمایشی\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"تأیید صفحه سند\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"مستندات\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"محیط\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"الگوی راهنمای محیط\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Environmental Aspects\"\nmsgstr \"جنبه‌های محیطی\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Feared Events\"\nmsgstr \"رویدادهای هراس‌آور\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"خطرات\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"الگوی راهنمای بهداشت و ایمنی\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Hygiene & Safety\"\nmsgstr \"بهداشت و ایمنی\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"شناسه\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"امنیت اطلاعات\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"الگوی راهنمای امنیت اطلاعات\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"آخرین بار به‌روزرسانی شده توسط\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"آخرین بار به‌روزرسانی شده\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\"مدیریت سیستم‌های مدیریتی، راهنماها، شاخص‌های کلیدی عملکرد (KPIs)، عدم تطابق‌ها، \"\n\"اقدامات، بازخوردها، ممیزی‌ها، و مرورها.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"سیستم مدیریت\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"سیستم‌های مدیریت\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"مدیر\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"راهنماها\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"مدیر ماژول، قادر به تغییر داده‌های پیکربندی.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"کاربر ماژول با مجوزهای اضافی برای تأییدها.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\"کاربر ماژول با مجوزهای اضافی خاص برای وظایف حسابرس، مانند بررسی‌های مؤثر بودن.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"کاربر ماژول با دسترسی فقط خواندنی عمومی.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"کاربر ماژول با دسترسی عمومی خواندن و نوشتن.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"عدم تطابق‌ها\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"فرآیندها\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\"فراهم کردن دسته‌بندی جنبه‌های محیطی.\\n\"\n\"- این ماژول mgmtsystem_environmental_aspect را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\"فراهم کردن رویدادهای مورد ترس.\\n\"\n\"- این ماژول mgmtsystem_security_event را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\"فراهم کردن خطرات.\\n\"\n\"- این ماژول mgmtsystem_hazard را نصب می‌کند .\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\"فراهم کردن دسته‌بندی دستورالعمل‌های کاری.\\n\"\n\"- این ماژول document_page_work_instruction را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\"فراهم کردن الگوی راهنمای بهداشت و ایمنی.\\n\"\n\"-این ماژول mgmtsystem_health_safety_manual را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\"فراهم کردن الگوی راهنمای کیفیت.\\n\"\n\"-این ماژول document_page_quality_manual را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای اقدامات و فرصت‌های بهبود.\\n\"\n\"-این ماژول mgmtsystem_action را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\"فراهم کردن الگوی راهنمای محیط زیست.\\n\"\n\"- این ماژول mgmtsystem_environment_manual را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\"فراهم کردن راهنمای امنیت اطلاعات.\\n\"\n\"-این ماژول information_security_manual را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای ممیزی.\\n\"\n\"- این ماژول mgmtsystem_audit را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای مدیریت ادعاها.\\n\"\n\"-این ماژول mgmtsystem_claim را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\"فراهم کردن تأیید و تاریخچه اسناد.\\n\"\n\" این ماژول document_page_approval را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای مدیریت محیط زیست.\\n\"\n\"-این ماژول mgmtsystem_environment را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای مدیریت بهداشت و ایمنی.\\n\"\n\"- این ماژول mgmtsystem_health_safety را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای امنیت اطلاعات .\\n\"\n\"-این ماژول mgmtsystem_information_security را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای عدم تطابق.\\n\"\n\"-این ماژول mgmtsystem_nonconformity را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\"فراهم کردن دسته‌بندی رویه‌ها.\\n\"\n\"-این ماژول document_page_procedure را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای مدیریت کیفیت.\\n\"\n\"-این ماژول mgmtsystem_quality را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\"فراهم کردن ابزارهای مرور.\\n\"\n\"-این ماژول mgmtsystem_review را نصب می‌کند.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"الگوی راهنمای کیفیت\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"ابزارهای کیفیت\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"گزارش‌ها\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"مرورها\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"تنظیمات\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"سیستم\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"سیستم ها\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"کاربر\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\n#, fuzzy\nmsgid \"Viewer\"\nmsgstr \"مشاهده‌گر\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"دستورالعمل‌های کاری\"\n\n#~ msgid \"Manage audits and verification lists\"\n#~ msgstr \"مدیریت ممیزی‌ها و فهرست‌های تأیید\"\n\n#~ msgid \"Manage customer claims as nonconformities\"\n#~ msgstr \"مدیریت ادعاهای مشتری به عنوان عدم تطابق‌ها\"\n\n#~ msgid \"\"\n#~ \"Manage immediate, corrective, and preventive actions and improvement \"\n#~ \"opportunities\"\n#~ msgstr \"مدیریت اقدامات فوری، اصلاحی، و پیشگیرانه و فرصت‌های بهبود\"\n\n#~ msgid \"Manage nonconformities analysis, planning and resolution\"\n#~ msgstr \"مدیریت تحلیل، برنامه‌ریزی و حل عدم تطابق‌ها\"\n\n#~ msgid \"Provide Environment management tools (ISO 14001)\"\n#~ msgstr \"فراهم کردن ابزارهای مدیریت محیط زیست (ISO 14001)\"\n\n#~ msgid \"Provide Health &amp; Safety management tools (OHSAS 18001)\"\n#~ msgstr \"فراهم کردن ابزارهای مدیریت بهداشت و ایمنی (OHSAS 18001)\"\n\n#~ msgid \"Provide Information Security management tools (ISO 27001)\"\n#~ msgstr \"فراهم کردن ابزارهای مدیریت امنیت اطلاعات (ISO 27001)\"\n\n#~ msgid \"Provide Quality management tools (ISO 9001)\"\n#~ msgstr \"فراهم کردن ابزارهای مدیریت کیفیت (ISO 9001\"\n\n#~ msgid \"Provide a Feared Event documentation category and template\"\n#~ msgstr \"فراهم کردن دسته‌بندی مستندات رویدادهای مورد ترس و الگو\"\n\n#~ msgid \"Provide a Hazards documentation category and template\"\n#~ msgstr \"فراهم کردن دسته‌بندی مستندات خطرات و الگو\"\n\n#~ msgid \"\"\n#~ \"Provide a Health &amp; Safety Manual template based on the OHSAS 18001 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"فراهم کردن الگوی راهنمای بهداشت و ایمنی بر اساس استاندارد OHSAS 18001\"\n\n#~ msgid \"Provide a Procedure documentation category and template\"\n#~ msgstr \"فراهم کردن دسته‌بندی مستندات رویه‌ها و الگو\"\n\n#~ msgid \"\"\n#~ \"Provide a Quality Manual template based on the ISO 9001:2008 standard\"\n#~ msgstr \"فراهم کردن الگوی راهنمای کیفیت بر اساس استاندارد ISO 9001:2008\"\n\n#~ msgid \"Provide a Work Instructions documentation category and template\"\n#~ msgstr \"فراهم کردن دسته‌بندی مستندات دستورالعمل‌های کاری و الگو\"\n\n#~ msgid \"Provide an Envioronmental Aspect documentation category and template\"\n#~ msgstr \"فراهم کردن دسته‌بندی مستندات جنبه‌های محیطی و الگو\"\n\n#~ msgid \"\"\n#~ \"Provide an Environment Manual template based on the ISO 14001:2004 \"\n#~ \"standard\"\n#~ msgstr \"فراهم کردن الگوی راهنمای محیط زیست بر اساس استاندارد ISO 14001:2004\"\n\n#~ msgid \"Provide an Information Security Manual template based on ISO 27001\"\n#~ msgstr \"فراهم کردن الگوی راهنمای امنیت اطلاعات بر اساس استاندارد ISO 27001\"\n\n#~ msgid \"Top management reviews\"\n#~ msgstr \"بازبینی‌های مدیریت عالی\"\n"
  },
  {
    "path": "mgmtsystem/i18n/fi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-09-15 12:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Finnish (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/fi/)\\n\"\n\"Language: fi\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Konfiguraatio\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Konfiguraatio\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Luonut\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Luotu\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Nimi\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Viimeksi päivittänyt\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Viimeksi päivitetty\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Johtamisjärjestelmä\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Viimeksi muokattu\"\n"
  },
  {
    "path": "mgmtsystem/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Approbateur\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Auditeur\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Audits\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Société\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Configuration\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Configuration\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Créée par\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Créée le \"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom à afficher\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Environment\"\nmsgstr \"Aspects environnementaux\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\n#, fuzzy\nmsgid \"Environment Manual Template\"\nmsgstr \"Aspects environnementaux\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspects environnementaux\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Mise à jour par\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Mise à jour le\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\"Gérer vos systèmes de gestion, manuels, indicateurs de performance, non-\"\n\"conformités, actions, retours d'expérience, audits, revues de direction.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Système de gestion\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"Systèmes de gestion\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Supérieur\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Manuels\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\"Administrateur du module, capable de modifier les données de configuration.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"Utilisateur du module sans les permissions d'approbation.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\"Utilisateur du module avec les permissions d'approbation sur les audits pour \"\n\"les revues d'efficacité par exemple.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"Utilisateur du module avec des accès en lecture.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"Utilisateur du module avec des accès en lecture et en écriture.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Nonconformités\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procédures\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Système\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Systèmes\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Utilisateur\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"Visionneur\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Dernière modification le\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Annuler\"\n"
  },
  {
    "path": "mgmtsystem/i18n/gl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Galician (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/gl/)\\n\"\n\"Language: gl\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"ültima actualización por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-01 20:06+0000\\n\"\n\"PO-Revision-Date: 2017-05-01 20:06+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Actions\"\nmsgstr \"Prijave\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"Prijave\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Odobrio korisnik\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Auditor\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Nadzori\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"Potraživanja\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Tvrtka\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"mgmtsystem.config.settings\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Postavke\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Kreirao\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Kreirano\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"Dokumentacija\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Environment\"\nmsgstr \"Okoliš (ISO 14001)\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"Opasnosti\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Hygiene & Safety\"\nmsgstr \"Higijena i sigurnost (OHSAS 18001)\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Information Security\"\nmsgstr \"Informacijska sigurnost (ISO 27001)\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\n#, fuzzy\nmsgid \"Information Security Manual Template\"\nmsgstr \"Informacijska sigurnost (ISO 27001)\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnje ažurirao\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažuriranje\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Susatv upravljanja\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"Sustavi upravljanja\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Upute\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"Administrator modula, može mijenjati postavke.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Nesukladnosti\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"Izvještaji\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"Postavke\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Sustav\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Sustavi\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Korisnik\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"Manage immediate, corrective, and preventive actions and improvement \"\n#~ \"opportunities\"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"    Radnje (trenutne, korektivne, preventivne) i mogućnosti unapređenja\\n\"\n#~ \"\\n\"\n#~ \"        \"\n\n#, fuzzy\n#~ msgid \"Provide Environment management tools (ISO 14001)\"\n#~ msgstr \"Okoliš (ISO 14001)\"\n\n#, fuzzy\n#~ msgid \"Provide Information Security management tools (ISO 27001)\"\n#~ msgstr \"Informacijska sigurnost (ISO 27001)\"\n\n#, fuzzy\n#~ msgid \"Provide an Information Security Manual template based on ISO 27001\"\n#~ msgstr \"Informacijska sigurnost (ISO 27001)\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnje modificirano\"\n\n#~ msgid \"Manual\"\n#~ msgstr \"Uputa\"\n\n#~ msgid \"Apply\"\n#~ msgstr \"Primjeni\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Otkaži\"\n\n#~ msgid \"Configure management system\"\n#~ msgstr \"Postvke sustava uspravljanja\"\n\n#~ msgid \"Quality (ISO 9001)\"\n#~ msgstr \"Kvaliteta (ISO 9001)\"\n\n#~ msgid \"or\"\n#~ msgstr \"ili\"\n"
  },
  {
    "path": "mgmtsystem/i18n/hu.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-06-30 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-06-29 13:04+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/hu/)\\n\"\n\"Language: hu\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Beállítások\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Beállítások\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Menedzsment rendszer\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Felhasználó\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2025-06-21 13:27+0000\\n\"\n\"Last-Translator: mymage <stefano.consolaro@mymage.it>\\n\"\n\"Language-Team: Italian (http://www.transifex.com/oca/\"\n\"OCA-management-system-9-0/language/it/)\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"Azioni\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"Applicazioni\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Utente approvazione\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Revisore\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Audit\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"Reclami\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Impostazioni configurazione\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Configurazione\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"Approvazione documento\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"Approvazione pagina documento\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"Documentazione\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"Ambiente\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"Manuale ambiente\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"Modello del manuale ambiente\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspetti ambientali\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"Eventi temuti\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"Pericoli\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"Manuale salute e sicurezza\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"Modello del manuale salute e sicurezza\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"Igiene e sicurezza\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"Sicurezza informazioni\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"Manuale sicurezza informazioni\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"Modello del manuale sicurezza informazioni\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"Gestione audit e liste verifica.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"Gestione reclami cliente e non conformità.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\"Gestione azioni immediate, correttive, preventive e opportunità di \"\n\"miglioramento.\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\"Gestione dei sistemi di gestione, manuali, KPI, non conformità, azioni, \"\n\"riscontri, audit, revisioni.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"Gestione analisi, pianificazione e soluzione non conformità.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"Gestione del flusso approvazione per controllare la documentazione.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"Gestione del sistema di gestione ambientale (ISO 14001).\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\"Gestione del sistema di gestione salute e sicurezza (ISO 45001, OHSAS 18001).\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"Gestione del sistema di gestione sicurezza informazioni (ISO 27001)\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"Gestione del sistema di gestione della qualità (ISO 9001).\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"Revisioni gestione\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Sistema di gestione\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"Sistemi di gestione\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Supervisore\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Manuali\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\"Amministratore del modulo, abilitato alla modifica dei dati di \"\n\"configurazione.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"Utente del modulo con permessi addizionali per il benestare.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\"Utente del modulo con permessi addizionali specifici per attività di \"\n\"revisore, come la verifica dell'efficacia.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"Utente del modulo con accesso generale in sola lettura.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"Utente del modulo con accesso generale in lettura e scrittura.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\"Fornisce la categoria aspetti ambientali.\\n\"\n\"- Verrà installato il modulo mgmtsystem_environmental_aspect.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\"Fornisce gli eventi temuti.\\n\"\n\"- Verrà installato il modulo mgmtsystem_security_event.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\"Fornisce i rischi.\\n\"\n\"- Verrà installato il modulo mgmtsystem_hazard.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\"Fornisce categoria istruzioni di lavoro.\\n\"\n\"- Verrà installato il modulo mgmtsystem_procedure.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\"Fornisce un modello di manuale ambientale basato sullo standard ISO \"\n\"14001:2004.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\"Fornisce una categoria di documentazione e un modello di eventi temuti.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\"Fornisce un modello di manuale salute e sicurezza in base allo standard ISO \"\n\"45001 / OHSAS 18001.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\"Fornisce un modello di manuale sicurezza delle informazioni in base allo \"\n\"standard ISO 27001.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"Fornisce una categoria di documentazione e un modello di procedura.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\"Fornisce un modello di manuale qualità basato sullo standard ISO 9001:2008.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\"Fornisce una categoria documentazione e un modello istruzioni di lavoro.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\"Fornisce un modello di manuale salute e sicurezza.\\n\"\n\"- Verrà installato il modulo mgmtsystem_health_safety_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\"Fornisce un modello del manuale qualità.\\n\"\n\"- Verrà installato il modulo mgmtsystem_quality_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\"Fornisce strumenti per le azioni e le opportunità di miglioramento.\\n\"\n\"- Verrà installato il modulo mgmtsystem_action.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\"Fornisce una categoria documentazione e un modello degli aspetti ambientali.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"Fornisce una categoria di documentazione e un modello dei rischi.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\"Fornisce un modello di manuale ambientale.\\n\"\n\"- Verrà installato il modulo mgmtsystem_environment_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\"Fornisce un manuale sicurezza delle informazioni.\\n\"\n\"- Verrà installato il modulo information_security_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\"Fornisce strumenti di audit.\\n\"\n\"- Verrà installato il modulo mgmtsystem_audit.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\"Fornisce strumenti per reclami.\\n\"\n\"- Verrà installato il modulo mgmtsystem_claim.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\"Fornisce approvazione e storico documenti.\\n\"\n\"- Verrà installato il modulo mgmtsystem_procedure.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\"Fornisce strumenti di gestione ambientale.\\n\"\n\"- Verrà installato il modulo mgmtsystem_environment.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\"Fornisce strumenti di gestione salute e sicurezza.\\n\"\n\"- Verrà installato il modulo mgmtsystem_health_safety.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\"Fornisce strumenti di sicurezza delle informazioni.\\n\"\n\"- Verrà installato il modulo mgmtsystem_information_security.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\"Fornisce strumenti delle non conformità.\\n\"\n\"- Verrà installato il modulo mgmtsystem_nonconformity.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\"Fornisce categoria procedure.\\n\"\n\"- Verrà installato il modulo mgmtsystem_procedure.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\"Fornisce strumenti di gestione qualità.\\n\"\n\"- Verrà installato il modulo mgmtsystem_quality.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\"Fornisce strumenti di revisione.\\n\"\n\"- Verrà installato il modulo mgmtsystem_review.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"Qualità\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"Manuale della qualità\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"Modello manuale della qualità\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"Strumenti qualità\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"Resoconti\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"Revisioni\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"Impostazioni\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Sistemi\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\"I seguenti moduli non sono disponibili: %(addons)s\\n\"\n\"Scopri di più sul problema Github corrispondente e valuta la possibilità di \"\n\"contribuire:\\n\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"Revisione della direzione.\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Utente\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"Visualizzatore\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"Istruzioni di lavoro\"\n\n#~ msgid \"Manage audits and verification lists\"\n#~ msgstr \"Gestione revisioni ed elenchi verifiche\"\n\n#~ msgid \"Manage customer claims as nonconformities\"\n#~ msgstr \"Gestione reclami clienti e non conformità\"\n\n#~ msgid \"\"\n#~ \"Manage immediate, corrective, and preventive actions and improvement \"\n#~ \"opportunities\"\n#~ msgstr \"\"\n#~ \"Gestione azioni immediate, correttive, preventive e opportunità di \"\n#~ \"miglioramento\"\n\n#~ msgid \"Manage nonconformities analysis, planning and resolution\"\n#~ msgstr \"Gestione analisi, pianificazione e soluzione non conformità\"\n\n#~ msgid \"Provide Environment management tools (ISO 14001)\"\n#~ msgstr \"Attiva strumenti di gestione ambientale (ISO 14001)\"\n\n#~ msgid \"Provide Health &amp; Safety management tools (OHSAS 18001)\"\n#~ msgstr \"Attiva strumenti di gestione salute e sicurezza (OHSAS 18001)\"\n\n#~ msgid \"Provide Information Security management tools (ISO 27001)\"\n#~ msgstr \"Attiva strumenti di gestione sicurezza informazioni (ISO 27001)\"\n\n#~ msgid \"Provide Quality management tools (ISO 9001)\"\n#~ msgstr \"Attiva strumenti di gestione qualità (ISO 9001)\"\n\n#~ msgid \"Provide a Feared Event documentation category and template\"\n#~ msgstr \"\"\n#~ \"Attiva una categoria di documentazione e un modello di eventi temuti\"\n\n#~ msgid \"Provide a Hazards documentation category and template\"\n#~ msgstr \"Attiva una categoria di documentazione e un modello dei rischi\"\n\n#~ msgid \"\"\n#~ \"Provide a Health &amp; Safety Manual template based on the OHSAS 18001 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Attiva un modello di manuale salute e sicurezza basato sullo standard \"\n#~ \"OHSAS 18001\"\n\n#~ msgid \"Provide a Procedure documentation category and template\"\n#~ msgstr \"Attiva una categoria di documentazione e un modello di procedura\"\n\n#~ msgid \"\"\n#~ \"Provide a Quality Manual template based on the ISO 9001:2008 standard\"\n#~ msgstr \"\"\n#~ \"Attiva un modello di manuale qualità basato sullo standard ISO 9001:2008\"\n\n#~ msgid \"Provide a Work Instructions documentation category and template\"\n#~ msgstr \"Attiva una categoria di documentazione e un modello dei rischi\"\n\n#~ msgid \"Provide an Envioronmental Aspect documentation category and template\"\n#~ msgstr \"\"\n#~ \"Attiva una categoria di documentazione e un modello degli aspetti \"\n#~ \"ambientali\"\n\n#~ msgid \"\"\n#~ \"Provide an Environment Manual template based on the ISO 14001:2004 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Attiva un modello del manuale ambientale basato sullo standard ISO \"\n#~ \"14001:2004\"\n\n#~ msgid \"Provide an Information Security Manual template based on ISO 27001\"\n#~ msgstr \"\"\n#~ \"Attiva un modello del manuale sicurezza informazioni basato sullo \"\n#~ \"standard ISO 27001\"\n\n#~ msgid \"Top management reviews\"\n#~ msgstr \"Revisione della direzione\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n\n#~ msgid \"Manual\"\n#~ msgstr \"Manuale\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Annulla\"\n"
  },
  {
    "path": "mgmtsystem/i18n/lt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/lt/)\\n\"\n\"Language: lt\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"(n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Atšaukti\"\n"
  },
  {
    "path": "mgmtsystem/i18n/lv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\\n\"\n\"Language: lv\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : \"\n\"2);\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Iestatījumi\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Iestatījumi\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Vadības sistēma\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Sistēma\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Lietotājs\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/mgmtsystem.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as\"\n\" effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/\"\n\"nb/)\\n\"\n\"Language: nb\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Revisjoner\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Konfigurasjon\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Konfigurasjon\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Styringssystem\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Leder\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Manualer\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Prosedyrer\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Bruker\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/nl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Dutch (http://www.transifex.com/oca/OCA-management-system-9-0/\"\n\"language/nl/)\\n\"\n\"Language: nl\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Te tonen naam\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst bijgewerkt op\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Annuleren\"\n"
  },
  {
    "path": "mgmtsystem/i18n/nl_BE.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/nl_BE/)\\n\"\n\"Language: nl_BE\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Annuleren\"\n"
  },
  {
    "path": "mgmtsystem/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 04:23+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 04:23+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/\"\n\"teams/23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Auditor\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Audits\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Bedrijf\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"mgmtsystem.config.settings\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Configuratie\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Aangemaakt door\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Aangemaakt op\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Weergavenaam\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"Documentatie\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Laatst bijgewerkt op\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Manager\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Handleidingen\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedures\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Systeem\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Systemen\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Gebruiker\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst aangepast op\"\n\n#~ msgid \"Manual\"\n#~ msgstr \"Handleiding\"\n"
  },
  {
    "path": "mgmtsystem/i18n/nn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Nynorsk (https://www.transifex.com/oca/teams/23907/\"\n\"nn/)\\n\"\n\"Language: nn\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Revisjonar\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Konfigurasjon\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Konfigurasjon\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Styringssystem\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Systemet\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Brukar\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/pl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Polish (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/pl/)\\n\"\n\"Language: pl\\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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 \"\n\"|| n%100>=20) ? 1 : 2);\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Anuluj\"\n"
  },
  {
    "path": "mgmtsystem/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-09-09 12:27+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/pt/)\\n\"\n\"Language: 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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Configuração\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Configuração\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Sistema de gestão\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Gestor\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Não conformidades\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedimentos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Utilizador\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatic4@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2020-08-12 19:00+0000\\n\"\n\"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/\"\n\"teams/23907/pt_BR/)\\n\"\n\"Language: pt_BR\\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 3.10\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"Ações\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"Aplicações\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Aprovando usuário\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Auditor(a)\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Auditorias\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"Reclamações\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Ajustes\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Configuração\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Exibir nome\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"Aprovação da Página do Documento\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"Documentação\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"Ambiente\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"Modelo Manual do Ambiente\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"Aspectos do ambiente\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"Eventos temidos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"Perigos\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"Modelo Manual de Saúde e Segurança\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"Higiene e Segurança\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"Identificação\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"Segurança da Informação\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"Modelo de manual de Segurança da Informação\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\"Configure sistemas de gestão, manuais, KPIs, não conformidades, ações, \"\n\"feedbacks, auditorias, revisões.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Sistema de Gestão\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"Sistemas de gestão\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Gerente\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Manuais\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"Módulo administrador, habilitado para modificar dados de configuração.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"Módulo usuario com permissões adicionais para aprovação.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\"Módulo de usuário com permissões especificas para o trabalho de auditor, \"\n\"como efetivar revisões.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"Módulo de usuário com acesso geral apenas leitura.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"Módulo usuario com acesso de leitura e escrita.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Não Conformidades\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedimentos\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\"Fornecer categoria Aspecto Ambiental.\\n\"\n\"- Isso instala o mgmtsystem_environmental_aspect módulo.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\"Fornecer Eventos temido.\\n\"\n\"- Isso instala o mgmtsystem_security_event módulo.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\"Fornecer Riscos.\\n\"\n\"- Isso instala o módulo mgmtsystem_hazard.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\"Fornecer categoria de Instruções de Trabalho.\\n\"\n\"- Isso instala o módulo document_page_work_instruction.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\"Fornecer um modelo manual de saúde e segurança.\\n\"\n\"- Isso instala o módulo mgmtsystem_health_safety_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\"Fornecer um modelo manual de qualidade.\\n\"\n\"- Isso instala o módulo document_page_quality_manual.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\"Fornecer ações e ferramentas de oportunidades de melhoria.\\n\"\n\"-Este Instala o módulo mgmtsystem_action.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\"Fornecer um modelo manual do meio ambiente.\\n\"\n\"- Isso instala o mgmtsystem_environment_manual módulo.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\"Fornecer um manual de segurança da informação.\\n\"\n\"- Isso instala o manual de segurança da informação módulo.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\"Fornecer ferramentas de auditoria.\\n\"\n\"-Este Instala o módulo mgmtsystem_audit.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\"Fornecer ferramentas de reivindicação.\\n\"\n\"-Este Instala o módulo mgmtsystem_claim.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\"Forneça aprovação e histórico do documento.\\n\"\n\"-Isto instala o módulo document_page_approval.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\"Fornecer ferramentas de gerenciamento de ambiente.\\n\"\n\"-Este Instala o módulo mgmtsystem_environment.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\"Fornecer ferramentas de gestão de saúde e segurança.\\n\"\n\"-Este Instala o módulo mgmtsystem_health_safety.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\"Fornecer ferramentas de segurança da informação.\\n\"\n\"-Este Instala o mgmtsystem_information_security módulo.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\"Fornecer ferramentas não conformidade.\\n\"\n\"-Este Instala o módulo mgmtsystem_nonconformity.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\"Fornecer categoria procedimentos.\\n\"\n\"- Isso instala o módulo document_page_procedure.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\"Fornecer ferramentas de gestão da qualidade.\\n\"\n\"-Este Instala o módulo mgmtsystem_quality..\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\"Fornecer ferramentas de revisão.\\n\"\n\"-Este Instala o módulo mgmtsystem_review.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"Modelo de Manual de Qualidade\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"Ferramentas de qualidade\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"Relatórios\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"Revisões\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"Configração\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Sistemas\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Usuário\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"Visualizador\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"Instruções de trabalho\"\n\n#~ msgid \"Manage audits and verification lists\"\n#~ msgstr \"Gerenciar auditorias e listas de verificação\"\n\n#~ msgid \"Manage customer claims as nonconformities\"\n#~ msgstr \"Gerenciar reclamações de clientes como não conformidades\"\n\n#~ msgid \"\"\n#~ \"Manage immediate, corrective, and preventive actions and improvement \"\n#~ \"opportunities\"\n#~ msgstr \"\"\n#~ \"Gerenciar ações imediatas, corretivas e preventivas e oportunidades de \"\n#~ \"melhoria\"\n\n#~ msgid \"Manage nonconformities analysis, planning and resolution\"\n#~ msgstr \"Gerenciar análise, planejamento e resolução de não conformidades\"\n\n#~ msgid \"Provide Environment management tools (ISO 14001)\"\n#~ msgstr \"Fornecer ferramentas de gerenciamento de ambiente (ISO 14001)\"\n\n#~ msgid \"Provide Health &amp; Safety management tools (OHSAS 18001)\"\n#~ msgstr \"\"\n#~ \"Fornecer Ferramentas de gerenciamento de segurança e saúde (OHSAS 18001)\"\n\n#~ msgid \"Provide Information Security management tools (ISO 27001)\"\n#~ msgstr \"\"\n#~ \"Fornecer ferramentas de gerenciamento de Segurança da Informação (ISO \"\n#~ \"27001)\"\n\n#~ msgid \"Provide Quality management tools (ISO 9001)\"\n#~ msgstr \"Fornecer ferramentas de gerenciamento de qualidade (ISO 9001)\"\n\n#~ msgid \"Provide a Feared Event documentation category and template\"\n#~ msgstr \"Forneça uma categoria e modelo de documentação de evento com medo\"\n\n#~ msgid \"Provide a Hazards documentation category and template\"\n#~ msgstr \"Forneça uma categoria e um modelo de documentação de riscos\"\n\n#~ msgid \"\"\n#~ \"Provide a Health &amp; Safety Manual template based on the OHSAS 18001 \"\n#~ \"standard\"\n#~ msgstr \"\"\n#~ \"Fornecer Modelo de manual de Saúde e Segurança baseado na norma OHSAS \"\n#~ \"18001\"\n\n#~ msgid \"Provide a Procedure documentation category and template\"\n#~ msgstr \"Fornecer uma categoria e modelo de documentação do procedimento\"\n\n#~ msgid \"\"\n#~ \"Provide a Quality Manual template based on the ISO 9001:2008 standard\"\n#~ msgstr \"Modelo de manual da Qualidade baseado na norma ISO 9001: 2008\"\n\n#~ msgid \"Provide a Work Instructions documentation category and template\"\n#~ msgstr \"\"\n#~ \"Fornece um modelo e uma categoria de documentação de Instruções de \"\n#~ \"Trabalho\"\n\n#~ msgid \"Provide an Envioronmental Aspect documentation category and template\"\n#~ msgstr \"Forneça uma categoria e modelo de documentação do Aspecto Ambiental\"\n\n#~ msgid \"\"\n#~ \"Provide an Environment Manual template based on the ISO 14001:2004 \"\n#~ \"standard\"\n#~ msgstr \"Modelo manual ambiental com base na norma ISO 14001: 2004\"\n\n#~ msgid \"Provide an Information Security Manual template based on ISO 27001\"\n#~ msgstr \"\"\n#~ \"Fornecer um Modelo de manual de Segurança da Informação baseado na norma \"\n#~ \"ISO 27001\"\n\n#~ msgid \"Top management reviews\"\n#~ msgstr \"Top avaliações de gestão\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificada pela última vez\"\n\n#~ msgid \"Manual\"\n#~ msgstr \"Manual\"\n\n#~ msgid \"Apply\"\n#~ msgstr \"Aplicar\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n\n#~ msgid \"Configure management system\"\n#~ msgstr \"Configurar sistema de gestão\"\n\n#~ msgid \"Quality (ISO 9001)\"\n#~ msgstr \"Qualidade (ISO 9001)\"\n\n#~ msgid \"or\"\n#~ msgstr \"ou\"\n"
  },
  {
    "path": "mgmtsystem/i18n/pt_PT.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-\"\n\"management-system-9-0/language/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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Cancelar\"\n"
  },
  {
    "path": "mgmtsystem/i18n/ro.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Romanian (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/ro/)\\n\"\n\"Language: ro\\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=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?\"\n\"2:1));\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Anuleaza\"\n"
  },
  {
    "path": "mgmtsystem/i18n/ru.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:38+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Russian (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/ru/)\\n\"\n\"Language: ru\\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=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || \"\n\"(n%100>=11 && n%100<=14)? 2 : 3);\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Отменена\"\n"
  },
  {
    "path": "mgmtsystem/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2026-01-22 17:17+0000\\n\"\n\"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\\n\"\n\"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\\n\"\n\"Language: sl\\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3;\\n\"\n\"X-Generator: Weblate 5.15.2\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"Uporabnik, ki odobri\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"Revizor\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Revizije\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"Družba\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Nastavitve\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Nastavitve\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikazani naziv\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\n#, fuzzy\nmsgid \"Environment\"\nmsgstr \"Okoljski vidiki\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\n#, fuzzy\nmsgid \"Environment Manual Template\"\nmsgstr \"Okoljski vidiki\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"Okoljski vidiki\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnjič posodobil\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\"Upravljanje sistemov upravljanja, priročniki, kazatelji storilnosti, \"\n\"neskladnosti, ukrepi, povratne informacije, revizije, pregledi.\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Sistem upravljanja\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"Sistemi upravljanja\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Upravitelj\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Priročniki\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"Administrator modula, ki lahko spreminja nastavitve.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"Uporabnik modula z dodatnimi dovoljenji za odobritve.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\"Uporabnik modula z dodatnim dovoljenjem za specifično revizorsko delovno \"\n\"mesto, kot npr. pregled učinkovitosti\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"Uporabnik modula s samo dostopom do branja.\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"Uporabnik modula z dostopom branja in pisanja.\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Neustreznosti\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"Sistem\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"Sistemi\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Uporabnik\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"Gledalec\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič spremenjeno\"\n"
  },
  {
    "path": "mgmtsystem/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\\n\"\n\"Language: sv\\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: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"Revisioner\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Inställningar\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Inställningar\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Ledningssystem\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"Chef\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"Manualer\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"Avvikelser\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"Rutiner\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"Användare\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/th.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-09-09 12:25+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Thai (http://www.transifex.com/oca/OCA-management-system-9-0/\"\n\"language/th/)\\n\"\n\"Language: th\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"การกำหนดค่า\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"การกำหนดค่า\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"ระบบบริหารจัดการ\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"คู่มือการใช้งาน\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Manual\"\n#~ msgstr \"คู่มือการใช้งาน\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"ยกเลิก\"\n"
  },
  {
    "path": "mgmtsystem/i18n/tr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-09-09 12:26+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Turkish (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/tr/)\\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\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\n#, fuzzy\nmsgid \"Config Settings\"\nmsgstr \"Yapılandırma\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"Yapılandırma\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"Oluşturan\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"Oluşturuldu\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Son güncelleyen\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Son güncelleme\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"Yönetim Sistemi\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n\n#~ msgid \"Cancel\"\n#~ msgstr \"Vazgeç\"\n"
  },
  {
    "path": "mgmtsystem/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2010-12-02 23:46+0000\\n\"\n\"PO-Revision-Date: 2014-03-04 11:44+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/i18n/zh_CN.po",
    "content": "# Chinese (Simplified) translation for openerp-mgmtsystem\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2010-12-02 23:46+0000\\n\"\n\"PO-Revision-Date: 2012-10-10 00:54+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Chinese (Simplified) <zh_CN@li.org>\\n\"\n\"Language: \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Applications\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Approving User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"Auditor\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Document Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"Document Page Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_manuals\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Documentation\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environment Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"Environment Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Environmental Aspects\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Feared Events\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Health & Safety Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"Health & Safety Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Hygiene & Safety\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Information Security Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"Information Security Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage audits and verification lists.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage customer claims as nonconformities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage immediate, corrective, and preventive actions and improvement \"\n\"opportunities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,description:mgmtsystem.module_category_management_system\nmsgid \"\"\n\"Manage management systems, manuals, KPIs, nonconformities, actions, \"\n\"feedbacks, audits, reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage nonconformities analysis, planning and resolution.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage the approval workflow to control your documentation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your environment management systems (ISO 14001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your information security management systems (ISO 27001)\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manage your quality management systems (ISO 9001).\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.module.category,name:mgmtsystem.module_category_management_system\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_main\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_root\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.system_form\nmsgid \"Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.system_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Management Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_manager\nmsgid \"Module administrator, able to modify configuration data.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user_manager\nmsgid \"Module user with additional permission for approvals.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_auditor\nmsgid \"\"\n\"Module user with additional permission specific for the auditor job, such as \"\n\"effectiveness reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Module user with general read only access.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,comment:mgmtsystem.group_mgmtsystem_user\nmsgid \"Module user, with general read and write.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_procedure\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environmental_aspect\nmsgid \"\"\n\"Provide Environmental Aspect category.\\n\"\n\"- This installs the module mgmtsystem_environmental_aspect.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_security_event\nmsgid \"\"\n\"Provide Feared Events.\\n\"\n\"- This installs the module mgmtsystem_security_event.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_hazard\nmsgid \"\"\n\"Provide Hazards.\\n\"\n\"- This installs the module mgmtsystem_hazard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\nmsgid \"\"\n\"Provide Work Instructions category.\\n\"\n\"- This installs the module document_page_work_instruction.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Feared Event documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Health & Safety Manual template based on the ISO 45001 / OHSAS \"\n\"18001 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"\"\n\"Provide a Information Security Manual template based on the ISO 27001 \"\n\"standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Procedure documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide a Work Instruction documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety_manual\nmsgid \"\"\n\"Provide a health and safety manual template.\\n\"\n\"- This installs the module mgmtsystem_health_safety_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"\"\n\"Provide a quality manual template.\\n\"\n\"- This installs the module document_page_quality_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_action\nmsgid \"\"\n\"Provide actions and improvement opportunities tools.\\n\"\n\"- This installs the module mgmtsystem_action.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Environmental Aspect documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Provide an Hazards documentation category and template.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_environment_manual\nmsgid \"\"\n\"Provide an environment manual template.\\n\"\n\"- This installs the module mgmtsystem_environment_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_information_security_manual\nmsgid \"\"\n\"Provide an information security manual.\\n\"\n\"- This installs the module information_security_manual.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_audit\nmsgid \"\"\n\"Provide audit tools.\\n\"\n\"- This installs the module mgmtsystem_audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_claim\nmsgid \"\"\n\"Provide claim tools.\\n\"\n\"- This installs the module mgmtsystem_claim.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_approval\nmsgid \"\"\n\"Provide document approval and history. \\n\"\n\"- This installs the module document_page_approval.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_environment\nmsgid \"\"\n\"Provide environment management tools.\\n\"\n\"- This installs the module mgmtsystem_environment.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_health_safety\nmsgid \"\"\n\"Provide health and safety management tools.\\n\"\n\"- This installs the module mgmtsystem_health_safety.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_information_security\nmsgid \"\"\n\"Provide information security tools.\\n\"\n\"- This installs the module mgmtsystem_information_security.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_nonconformity\nmsgid \"\"\n\"Provide non conformity tools.\\n\"\n\"- This installs the module mgmtsystem_nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_document_page_procedure\nmsgid \"\"\n\"Provide procedures category.\\n\"\n\"- This installs the module document_page_procedure.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"\"\n\"Provide quality management tools.\\n\"\n\"- This installs the module mgmtsystem_quality.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,help:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"\"\n\"Provide review tools.\\n\"\n\"- This installs the module mgmtsystem_review.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Quality Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_quality_manual\nmsgid \"Quality Manual Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_quality\nmsgid \"Quality Tools\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_report\nmsgid \"Reports\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_mgmtsystem_review\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.actions.act_window,name:mgmtsystem.action_mgmtsystem_configuration\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_settings\nmsgid \"Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model,name:mgmtsystem.model_mgmtsystem_system\n#: model:ir.model.fields,field_description:mgmtsystem.field_mgmtsystem_system__name\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.ui.menu,name:mgmtsystem.menu_mgmtsystem_configuration_system\nmsgid \"Systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#. odoo-python\n#: code:addons/mgmtsystem/models/res_config.py:0\nmsgid \"\"\n\"The following modules are not available: %(addons)s\\n\"\n\"Learn more on the corresponding Github issue and consider contributing:\\n\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Top management reviews.\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_user\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:res.groups,name:mgmtsystem.group_mgmtsystem_viewer\nmsgid \"Viewer\"\nmsgstr \"\"\n\n#. module: mgmtsystem\n#: model:ir.model.fields,field_description:mgmtsystem.field_res_config_settings__module_document_page_work_instruction\n#: model_terms:ir.ui.view,arch_db:mgmtsystem.res_config_settings_view_form\nmsgid \"Work Instructions\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem/models/__init__.py",
    "content": "from . import mgmtsystem_system\nfrom . import res_config\n"
  },
  {
    "path": "mgmtsystem/models/mgmtsystem_system.py",
    "content": "# Copyright 2012 Savoir-faire Linux <http://www.savoirfairelinux.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtSystemSystem(models.Model):\n    _name = \"mgmtsystem.system\"\n    _description = \"System\"\n\n    name = fields.Char(\"System\", required=True)\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n"
  },
  {
    "path": "mgmtsystem/models/res_config.py",
    "content": "# Copyright (C) 2004-2012 OpenERP S.A. (<http://openerp.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import _, exceptions, fields, models\n\n\nclass MgmtsystemConfigSettings(models.TransientModel):\n    \"\"\"This class is used to activate management system Applications.\"\"\"\n\n    _inherit = \"res.config.settings\"\n\n    # Systems\n    module_mgmtsystem_quality = fields.Boolean(\n        \"Quality Tools\",\n        help=\"Provide quality management tools.\\n\"\n        \"- This installs the module mgmtsystem_quality.\",\n    )\n    module_mgmtsystem_environment = fields.Boolean(\n        \"Environment\",\n        help=\"Provide environment management tools.\\n\"\n        \"- This installs the module mgmtsystem_environment.\",\n    )\n    module_mgmtsystem_health_safety = fields.Boolean(\n        \"Hygiene & Safety\",\n        help=\"Provide health and safety management tools.\\n\"\n        \"- This installs the module mgmtsystem_health_safety.\",\n    )\n    module_mgmtsystem_information_security = fields.Boolean(\n        \"Information Security\",\n        help=\"Provide information security tools.\\n\"\n        \"- This installs the module mgmtsystem_information_security.\",\n    )\n\n    # Applications\n    module_mgmtsystem_action = fields.Boolean(\n        \"Actions\",\n        help=\"Provide actions and improvement opportunities tools.\\n\"\n        \"- This installs the module mgmtsystem_action.\",\n    )\n    module_mgmtsystem_nonconformity = fields.Boolean(\n        \"Nonconformities\",\n        help=\"Provide non conformity tools.\\n\"\n        \"- This installs the module mgmtsystem_nonconformity.\",\n    )\n    module_mgmtsystem_claim = fields.Boolean(\n        \"Claims\",\n        help=\"Provide claim tools.\\n- This installs the module mgmtsystem_claim.\",\n    )\n    module_mgmtsystem_audit = fields.Boolean(\n        \"Audits\",\n        help=\"Provide audit tools.\\n- This installs the module mgmtsystem_audit.\",\n    )\n    module_mgmtsystem_review = fields.Boolean(\n        \"Reviews\",\n        help=\"Provide review tools.\\n- This installs the module mgmtsystem_review.\",\n    )\n\n    # Manuals\n    module_document_page_quality_manual = fields.Boolean(\n        \"Quality Manual Template\",\n        help=\"Provide a quality manual template.\\n\"\n        \"- This installs the module document_page_quality_manual.\",\n    )\n    module_document_page_environment_manual = fields.Boolean(\n        \"Environment Manual Template\",\n        help=\"Provide an environment manual template.\\n\"\n        \"- This installs the module mgmtsystem_environment_manual.\",\n    )\n    module_mgmtsystem_health_safety_manual = fields.Boolean(\n        \"Health & Safety Manual Template\",\n        help=\"Provide a health and safety manual template.\\n\"\n        \"- This installs the module mgmtsystem_health_safety_manual.\",\n    )\n    module_information_security_manual = fields.Boolean(\n        \"Information Security Manual Template\",\n        help=\"Provide an information security manual.\\n\"\n        \"- This installs the module information_security_manual.\",\n    )\n\n    # Documentation\n    module_document_page_procedure = fields.Boolean(\n        \"Procedures\",\n        help=\"Provide procedures category.\\n\"\n        \"- This installs the module document_page_procedure.\",\n    )\n    module_document_page_environmental_aspect = fields.Boolean(\n        \"Environmental Aspects\",\n        help=\"Provide Environmental Aspect category.\\n\"\n        \"- This installs the module mgmtsystem_environmental_aspect.\",\n    )\n    module_mgmtsystem_hazard = fields.Boolean(\n        \"Hazards\",\n        help=\"Provide Hazards.\\n- This installs the module mgmtsystem_hazard.\",\n    )\n    module_mgmtsystem_security_event = fields.Boolean(\n        \"Feared Events\",\n        help=\"Provide Feared Events.\\n\"\n        \"- This installs the module mgmtsystem_security_event.\",\n    )\n    module_document_page_approval = fields.Boolean(\n        \"Document Page Approval\",\n        help=\"Provide document approval and history. \\n\"\n        \"- This installs the module document_page_approval.\",\n    )\n    module_document_page_work_instruction = fields.Boolean(\n        \"Work Instructions\",\n        help=\"Provide Work Instructions category.\\n\"\n        \"- This installs the module document_page_work_instruction.\",\n    )\n\n    def execute(self):\n        # Provide error in case the odule to install is not available in the system\n        # This avoids user confusion from the install failing silently\n        self = self.with_context(active_test=False)\n        classified = self._get_classified_fields()\n        to_install = [\n            f[7:] for f in self._fields.keys() if f.startswith(\"module_\") and self[f]\n        ]\n        available = classified[\"module\"].mapped(\"name\")\n        not_available = set(to_install) - set(available)\n        if not_available:\n            url = (\n                \"https://github.com/OCA/management-system/issues\"\n                \"?q=is%3Aissue%20state%3Aopen%20migration%20to%20version\"\n            )\n            msg = _(\n                \"The following modules are not available: %(addons)s\"\n                \"\\nLearn more on the corresponding Github issue\"\n                \" and consider contributing:\\n\"\n            ) % {\"addons\": \", \".join(not_available)}\n            raise exceptions.UserError(msg + url)\n        return super().execute()\n"
  },
  {
    "path": "mgmtsystem/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem/readme/CONFIGURE.md",
    "content": "**Manage systems**\n\nGo to \"Management System\" app -\\> Configuration -\\> Systems\n\n**Manage applications**\n\nGo to \"Management System\" app -\\> Configuration -\\> Settings\n"
  },
  {
    "path": "mgmtsystem/readme/CONTRIBUTORS.md",
    "content": "- Savoir-faire Linux \\<<support@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- Iván Todorovich \\<<ivan.todorovich@gmail.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n- [Trobz](https://trobz.com):\n  - Dung Tran \\<<dungtd@trobz.com>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n"
  },
  {
    "path": "mgmtsystem/readme/CREDITS.md",
    "content": "The migration of this module from 13.0 to 14.0 was financially supported\nby Camptocamp.\n"
  },
  {
    "path": "mgmtsystem/readme/DESCRIPTION.md",
    "content": "This module is the basis of any management system applications:\n\n- audit reports\n- nonconformities\n- immediate actions\n- preventive actions\n- corrective actions\n- improvement opportunities\n\nVideos and presentations from past OCA Days:\n\n * 2022: [Using the Management Systems to drive your ISO norm compliance](https://www.youtube.com/watch?v=w2nf_O9TajM)\n * 2015: [Manage your ISO 27001-certified ISMS with Odoo](https://es.slideshare.net/slideshow/manage-your-information-security-management-system-with-odoo/49101147)\n * 2013: [ISO & Standards Management with OpenERP](https://es.slideshare.net/slideshow/iso-anmanagement-systemswithopenerpen/23915296)\n * 2012: [OpenERP Management System Modules](https://es.slideshare.net/slideshow/openerp-management-system-modules/13058968#2)\n"
  },
  {
    "path": "mgmtsystem/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_system_viewer\",\"mgmtsystem.system.viewer\",\"model_mgmtsystem_system\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_system_manager\",\"mgmtsystem.system.manager\",\"model_mgmtsystem_system\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n"
  },
  {
    "path": "mgmtsystem/security/mgmtsystem_security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record model=\"ir.module.category\" id=\"module_category_management_system\">\n        <field name=\"name\">Management System</field>\n        <field\n            name=\"description\"\n        >Manage management systems, manuals, KPIs, nonconformities, actions, feedbacks, audits, reviews.</field>\n        <field name=\"sequence\">10</field>\n    </record>\n\n    <record id=\"group_mgmtsystem_viewer\" model=\"res.groups\">\n        <field name=\"name\">Viewer</field>\n        <field name=\"comment\">Module user with general read only access.</field>\n        <field name=\"category_id\" ref=\"module_category_management_system\" />\n        <field name=\"implied_ids\" eval=\"[(4, ref('base.group_user'))]\" />\n    </record>\n\n    <record id=\"group_mgmtsystem_user\" model=\"res.groups\">\n        <field name=\"name\">User</field>\n        <field name=\"comment\">Module user, with general read and write.</field>\n        <field name=\"category_id\" ref=\"module_category_management_system\" />\n        <field name=\"implied_ids\" eval=\"[(4,ref('group_mgmtsystem_viewer'))]\" />\n    </record>\n\n    <record id=\"group_mgmtsystem_auditor\" model=\"res.groups\">\n        <field name=\"name\">Auditor</field>\n        <field\n            name=\"comment\"\n        >Module user with additional permission specific for the auditor job, such as effectiveness reviews.</field>\n        <field name=\"category_id\" ref=\"module_category_management_system\" />\n        <field name=\"implied_ids\" eval=\"[(4,ref('group_mgmtsystem_user'))]\" />\n    </record>\n\n    <record id=\"group_mgmtsystem_user_manager\" model=\"res.groups\">\n        <field name=\"name\">Approving User</field>\n        <field\n            name=\"comment\"\n        >Module user with additional permission for approvals.</field>\n        <field name=\"category_id\" ref=\"module_category_management_system\" />\n        <field name=\"implied_ids\" eval=\"[(4,ref('group_mgmtsystem_auditor'))]\" />\n    </record>\n\n    <record id=\"group_mgmtsystem_manager\" model=\"res.groups\">\n        <field name=\"name\">Manager</field>\n        <field\n            name=\"comment\"\n        >Module administrator, able to modify configuration data.</field>\n        <field name=\"category_id\" ref=\"module_category_management_system\" />\n        <field name=\"implied_ids\" eval=\"[(4, ref('group_mgmtsystem_user_manager'))]\" />\n        <field\n            name=\"users\"\n            eval=\"[(4, ref('base.user_root')), (4, ref('base.user_admin'))]\"\n        />\n    </record>\n\n    <!-- Rule -->\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_rule\">\n        <field name=\"name\">mgmtsystem multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_system\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem/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=\"management-system\">\n<h1>Management System</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:486c4414894eacfe55da0f32286e632a5cc25bf213b61d38ddb251fd2411e4be\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/management-system/tree/18.0/mgmtsystem\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem\"><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/management-system&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 is the basis of any management system applications:</p>\n<ul class=\"simple\">\n<li>audit reports</li>\n<li>nonconformities</li>\n<li>immediate actions</li>\n<li>preventive actions</li>\n<li>corrective actions</li>\n<li>improvement opportunities</li>\n</ul>\n<p>Videos and presentations from past OCA Days:</p>\n<ul class=\"simple\">\n<li>2022: <a class=\"reference external\" href=\"https://www.youtube.com/watch?v=w2nf_O9TajM\">Using the Management Systems to drive your ISO norm\ncompliance</a></li>\n<li>2015: <a class=\"reference external\" href=\"https://es.slideshare.net/slideshow/manage-your-information-security-management-system-with-odoo/49101147\">Manage your ISO 27001-certified ISMS with\nOdoo</a></li>\n<li>2013: <a class=\"reference external\" href=\"https://es.slideshare.net/slideshow/iso-anmanagement-systemswithopenerpen/23915296\">ISO &amp; Standards Management with\nOpenERP</a></li>\n<li>2012: <a class=\"reference external\" href=\"https://es.slideshare.net/slideshow/openerp-management-system-modules/13058968#2\">OpenERP Management System\nModules</a></li>\n</ul>\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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-6\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-7\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p><strong>Manage systems</strong></p>\n<p>Go to “Management System” app -&gt; Configuration -&gt; Systems</p>\n<p><strong>Manage applications</strong></p>\n<p>Go to “Management System” app -&gt; Configuration -&gt; Settings</p>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem%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-3\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux &lt;<a class=\"reference external\" href=\"mailto:support&#64;savoirfairelinux.com\">support&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li>Iván Todorovich &lt;<a class=\"reference external\" href=\"mailto:ivan.todorovich&#64;gmail.com\">ivan.todorovich&#64;gmail.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://trobz.com\">Trobz</a>:<ul>\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Other credits</a></h3>\n<p>The migration of this module from 13.0 to 14.0 was financially supported\nby Camptocamp.</p>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem\">OCA/management-system</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": "mgmtsystem/tests/__init__.py",
    "content": "# Copyright 2012 Savoir-faire Linux <http://www.savoirfairelinux.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import test_create_mgmtsystem\n"
  },
  {
    "path": "mgmtsystem/tests/test_create_mgmtsystem.py",
    "content": "# Copyright 2012 Savoir-faire Linux <http://www.savoirfairelinux.com>\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo.tests import common\n\n\nclass TestModelAction(common.TransactionCase):\n    def test_create_system(self):\n        record = self.env[\"mgmtsystem.system\"].create({\"name\": \"SampleSystem\"})\n\n        self.assertEqual(record.name, \"SampleSystem\")\n        self.assertEqual(record.company_id.id, self.env.company.id)\n"
  },
  {
    "path": "mgmtsystem/views/menus.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <menuitem\n        id=\"menu_mgmtsystem_root\"\n        name=\"Management System\"\n        web_icon=\"mgmtsystem,static/description/icon.png\"\n        sequence=\"150\"\n        groups=\"group_mgmtsystem_manager,group_mgmtsystem_viewer\"\n    />\n\n    <menuitem\n        id=\"menu_mgmtsystem_main\"\n        name=\"Management System\"\n        parent=\"menu_mgmtsystem_root\"\n        sequence=\"0\"\n        groups=\"group_mgmtsystem_viewer\"\n    />\n\n    <menuitem\n        id=\"menu_mgmtsystem_manuals\"\n        name=\"Documentation\"\n        parent=\"menu_mgmtsystem_root\"\n        sequence=\"10\"\n        groups=\"group_mgmtsystem_viewer\"\n    />\n\n    <menuitem\n        id=\"menu_mgmtsystem_report\"\n        name=\"Reports\"\n        sequence=\"50\"\n        parent=\"menu_mgmtsystem_root\"\n        groups=\"group_mgmtsystem_viewer\"\n    />\n\n    <menuitem\n        id=\"menu_mgmtsystem_configuration\"\n        name=\"Configuration\"\n        parent=\"menu_mgmtsystem_root\"\n        groups=\"group_mgmtsystem_manager\"\n        sequence=\"100\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem/views/mgmtsystem_system.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record model=\"ir.ui.view\" id=\"system_form\">\n        <field name=\"name\">mgmtsystem_system_form</field>\n        <field name=\"model\">mgmtsystem.system</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Management System\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"system_list\">\n        <field name=\"name\">mgmtsystem_system_list</field>\n        <field name=\"model\">mgmtsystem.system</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"system_action\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Management Systems</field>\n        <field name=\"res_model\">mgmtsystem.system</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" ref=\"system_list\" />\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_configuration_system\"\n        name=\"Systems\"\n        parent=\"menu_mgmtsystem_configuration\"\n        groups=\"group_mgmtsystem_manager\"\n        sequence=\"10\"\n        action=\"system_action\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem/views/res_config.xml",
    "content": "<odoo>\n    <record id=\"res_config_settings_view_form\" model=\"ir.ui.view\">\n        <field name=\"name\">res.config.settings.view.form.inherit.mgmtsystem</field>\n        <field name=\"model\">res.config.settings</field>\n        <field name=\"inherit_id\" ref=\"base.res_config_settings_view_form\" />\n        <field name=\"priority\" eval=\"95\" />\n        <field name=\"arch\" type=\"xml\">\n            <xpath expr=\"//form\" position=\"inside\">\n                <app\n                    data-string=\"Management Systems\"\n                    string=\"Management Systems\"\n                    name=\"mgmtsystem\"\n                    groups=\"mgmtsystem.group_mgmtsystem_user_manager\"\n                >\n                    <block title=\"Management Systems\" name=\"mgmtsystem_systems_setting\">\n                        <setting\n                            string=\"Quality\"\n                            help=\"Manage your quality management systems (ISO 9001).\"\n                        >\n                            <field name=\"module_mgmtsystem_quality\" />\n                        </setting>\n                        <setting\n                            string=\"Environment\"\n                            help=\"Manage your environment management systems (ISO 14001).\"\n                        >\n                            <field name=\"module_mgmtsystem_environment\" />\n                        </setting>\n                        <setting\n                            string=\"Hygiene &amp; Safety\"\n                            help=\"Manage your health and safety management systems (ISO 45001, OHSAS 18001).\"\n                        >\n                            <field name=\"module_mgmtsystem_health_safety\" />\n                        </setting>\n                        <setting\n                            string=\"Information Security\"\n                            help=\"Manage your information security management systems (ISO 27001)\"\n                        >\n                            <field name=\"module_mgmtsystem_information_security\" />\n                        </setting>\n                    </block>\n\n                    <block title=\"Applications\" name=\"mgmtsystem_applications_setting\">\n                        <setting\n                            string=\"Actions\"\n                            help=\"Manage immediate, corrective, and preventive actions and improvement opportunities.\"\n                        >\n                            <field name=\"module_mgmtsystem_action\" />\n                        </setting>\n                        <setting\n                            string=\"Nonconformities\"\n                            help=\"Manage nonconformities analysis, planning and resolution.\"\n                        >\n                            <field name=\"module_mgmtsystem_nonconformity\" />\n                        </setting>\n                        <setting\n                            string=\"Claims\"\n                            help=\"Manage customer claims as nonconformities.\"\n                        >\n                            <field name=\"module_mgmtsystem_nonconformity\" />\n                        </setting>\n                        <setting\n                            string=\"Audits\"\n                            help=\"Manage audits and verification lists.\"\n                        >\n                            <field name=\"module_mgmtsystem_audit\" />\n                        </setting>\n\n                        <setting\n                            string=\"Management Reviews\"\n                            help=\"Top management reviews.\"\n                        >\n                            <field name=\"module_mgmtsystem_review\" />\n                        </setting>\n\n                        <setting\n                            string=\"Document Approval\"\n                            help=\"Manage the approval workflow to control your documentation.\"\n                        >\n                            <field name=\"module_document_page_approval\" />\n                        </setting>\n                    </block>\n                    <block title=\"Manuals\" name=\"mgmtsystem_manuals_setting\">\n                        <setting\n                            string=\"Quality Manual\"\n                            help=\"Provide a Quality Manual template based on the ISO 9001:2008 standard.\"\n                        >\n                            <field name=\"module_document_page_quality_manual\" />\n                        </setting>\n                        <setting\n                            string=\"Environment Manual\"\n                            help=\"Provide a Environment Manual template based on the ISO 14001:2004 standard.\"\n                        >\n                            <field name=\"module_document_page_environment_manual\" />\n                        </setting>\n                        <setting\n                            string=\"Health &amp; Safety Manual\"\n                            help=\"Provide a Health &amp; Safety Manual template based on the ISO 45001 / OHSAS 18001 standard.\"\n                        >\n                            <field name=\"module_mgmtsystem_health_safety_manual\" />\n                        </setting>\n                        <setting\n                            string=\"Information Security Manual\"\n                            help=\"Provide a Information Security Manual template based on the ISO 27001 standard.\"\n                        >\n                            <field name=\"module_information_security_manual\" />\n                        </setting>\n                    </block>\n                    <block\n                        title=\"Documentation\"\n                        name=\"mgmtsystem_documentation_setting\"\n                    >\n                        <setting\n                            string=\"Procedures\"\n                            help=\"Provide a Procedure documentation category and template.\"\n                        >\n                            <field name=\"module_document_page_procedure\" />\n                        </setting>\n                        <setting\n                            string=\"Environmental Aspects\"\n                            help=\"Provide an Environmental Aspect documentation category and template.\"\n                        >\n                            <field name=\"module_document_page_environmental_aspect\" />\n                        </setting>\n                        <setting\n                            string=\"Hazards\"\n                            help=\"Provide an Hazards documentation category and template.\"\n                        >\n                            <field name=\"module_mgmtsystem_hazard\" />\n                        </setting>\n                        <setting\n                            string=\"Feared Events\"\n                            help=\"Provide a Feared Event documentation category and template.\"\n                        >\n                            <field name=\"module_mgmtsystem_security_event\" />\n                        </setting>\n                        <setting\n                            string=\"Work Instructions\"\n                            help=\"Provide a Work Instruction documentation category and template.\"\n                        >\n                            <field name=\"module_document_page_work_instruction\" />\n                        </setting>\n                    </block>\n                </app>\n            </xpath>\n        </field>\n    </record>\n\n    <record id=\"action_mgmtsystem_configuration\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Settings</field>\n        <field name=\"res_model\">res.config.settings</field>\n        <field name=\"view_mode\">form</field>\n        <field name=\"target\">inline</field>\n        <field name=\"context\">{'module': 'mgmtsystem'}</field>\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_settings\"\n        name=\"Settings\"\n        parent=\"menu_mgmtsystem_configuration\"\n        sequence=\"0\"\n        action=\"action_mgmtsystem_configuration\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/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==========================\nManagement System - Action\n==========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:089b8779529aadb976fc0aa0aa615c8028d138f085e9e2979964ce98a6cb68dc\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_action\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module was written to manage Actions of your management system.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nInstallation\n============\n\n- Go to \"Management System -> Configuration -> Settings\"\n- Under \"Applications\" enable \"Actions\" flag\n- Save\n\nConfiguration\n=============\n\n**Configure stages**\n\nGo to \"Management System -> Configuration -> Actions -> Stages\"\n\n**Configure tags**\n\nGo to \"Management System -> Configuration -> Actions -> Tags\"\n\nUsage\n=====\n\nGo to \"Management System -> Management System -> Actions\" and create\nyour actions.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_action%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* Savoir-faire Linux\n* Camptocamp\n\nContributors\n------------\n\n- Savoir-faire Linux\n- Simone Orsi <simone.orsi@camptocamp.com>\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\nTrobz\n\n- Dung Tran <dungtd@trobz.com>\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n\nTODO: many contribs to retrieve from history, we can open other PRs to\nupdate this list.\n\nOther credits\n-------------\n\nThe development of this module has been financially supported by:\n\n- Camptocamp\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_action/__init__.py",
    "content": "from . import models, reports\n"
  },
  {
    "path": "mgmtsystem_action/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Action\",\n    \"version\": \"18.0.1.0.2\",\n    \"author\": \"Savoir-faire Linux, Camptocamp, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem\", \"mail\"],\n    \"data\": [\n        \"data/mgmtsystem_action_stage.xml\",\n        \"data/automated_reminder.xml\",\n        \"data/email_template.xml\",\n        \"security/ir.model.access.csv\",\n        \"security/mgmtsystem_action_security.xml\",\n        \"data/action_sequence.xml\",\n        \"views/mgmtsystem_action.xml\",\n        \"views/mgmtsystem_action_stage.xml\",\n        \"views/mgmtsystem_action_tag.xml\",\n        \"reports/mgmtsystem_action_report.xml\",\n        \"views/menus.xml\",\n    ],\n    \"demo\": [\"demo/mgmtsystem_action.xml\"],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_action/data/action_sequence.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"seq_mgmtsystem_action\" model=\"ir.sequence\">\n        <field name=\"name\">Management System Action</field>\n        <field name=\"code\">mgmtsystem.action</field>\n        <field name=\"padding\">3</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/data/automated_reminder.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"ir_cron_mgmtsystem_action_reminder\" model=\"ir.cron\">\n        <field name=\"name\">Email Action Reminders 10 days before due date.</field>\n        <field name=\"user_id\" ref=\"base.user_root\" />\n        <field name=\"interval_number\">1</field>\n        <field name=\"interval_type\">days</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_action\" />\n        <field name=\"state\">code</field>\n        <field name=\"code\">model.process_reminder_queue()</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/data/email_template.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Email template for Action Reminders -->\n    <record id=\"email_template_new_action_reminder\" model=\"mail.template\">\n        <field name=\"name\">Action Assigned</field>\n        <field\n            name=\"email_from\"\n        >{{object.create_uid.company_id.email or 'noreply@localhost'}}</field>\n        <field name=\"subject\">{{object.name}}</field>\n        <field name=\"email_to\">{{object.user_id.email}}</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_action\" />\n        <field name=\"auto_delete\" eval=\"True\" />\n        <field name=\"lang\">{{object.create_uid.partner_id.lang}}</field>\n        <field name=\"body_html\">\n            <![CDATA[\n<p>Hello <t t-out=\"object.user_id.name\"/>,</p>\n\n<p>A new action has been assigned to you: <b><a t-att-href=\"object.get_action_url()\"><t t-out=\"object.name\"/></a></b></p>\n<p><b>Deadline: </b><t t-out=\"object.date_deadline or ''\"/></p>\n\n<p>Please, use the action stages and messages to log progress.</p>\n\n<p>\nThank you<br>\n--<br>\nOdoo\n</p>\n            ]]>\n        </field>\n    </record>\n\n    <!-- Email template for Action Reminders -->\n    <record id=\"action_email_template_reminder_action\" model=\"mail.template\">\n        <field name=\"name\">Reminder to Responsible</field>\n        <field\n            name=\"email_from\"\n        >{{object.create_uid.company_id.email or 'noreply@localhost'}}</field>\n        <field name=\"subject\">Reminder on Action: \"{{object.name}}\"</field>\n        <field name=\"email_to\">{{object.user_id.email}}</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_action\" />\n        <field name=\"auto_delete\" eval=\"True\" />\n        <field name=\"lang\">{{object.create_uid.partner_id.lang}}</field>\n        <field name=\"body_html\">\n            <![CDATA[\n<p>Hello <t t-out=\"object.user_id.name\"/>,</p>\n\n<p>\nThis is an automated message to remind you that the\nfollowing action is due to be completed in 10 days (<t t-out=\"object.date_deadline\"/>):\n\n<b><a t-att-href=\"object.get_action_url()\"><t t-out=\"object.name\"/></a></b>\n</p>\n\n<p>\nThank you and have a nice day.<br>\n--<br>\nOdoo\n</p>\n            ]]>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/data/mgmtsystem_action_stage.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"stage_draft\" model=\"mgmtsystem.action.stage\">\n        <field name=\"name\">Draft</field>\n        <field name=\"sequence\">0</field>\n        <field name=\"is_starting\" eval=\"True\" />\n        <field name=\"is_ending\" eval=\"False\" />\n    </record>\n\n    <record id=\"stage_open\" model=\"mgmtsystem.action.stage\">\n        <field name=\"name\">In Progress</field>\n        <field name=\"sequence\">250</field>\n        <field name=\"is_starting\" eval=\"False\" />\n        <field name=\"is_ending\" eval=\"False\" />\n    </record>\n\n    <record id=\"stage_close\" model=\"mgmtsystem.action.stage\">\n        <field name=\"name\">Closed</field>\n        <field name=\"sequence\">500</field>\n        <field name=\"is_starting\" eval=\"False\" />\n        <field name=\"is_ending\" eval=\"True\" />\n        <field name=\"fold\" eval=\"True\" />\n    </record>\n\n    <record id=\"stage_cancel\" model=\"mgmtsystem.action.stage\">\n        <field name=\"name\">Cancelled</field>\n        <field name=\"sequence\">750</field>\n        <field name=\"is_starting\" eval=\"False\" />\n        <field name=\"is_ending\" eval=\"True\" />\n        <field name=\"fold\" eval=\"True\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/demo/mgmtsystem_action.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- demo data mgmtsystem.action -->\n    <record id=\"demo_immediate\" model=\"mgmtsystem.action\">\n        <field name=\"name\">Add a comment to the revision</field>\n        <field name=\"type_action\">immediate</field>\n    </record>\n\n    <record id=\"demo_corrective\" model=\"mgmtsystem.action\">\n        <field\n            name=\"name\"\n        >Explain Administrator to add comments to the procedure when making changes.</field>\n        <field name=\"type_action\">correction</field>\n    </record>\n\n    <record id=\"demo_preventive\" model=\"mgmtsystem.action\">\n        <field\n            name=\"name\"\n        >Explain in the new-employee training manual that they need to add comments to the procedure when making changes</field>\n        <field name=\"type_action\">prevention</field>\n    </record>\n\n    <record id=\"demo_improvement\" model=\"mgmtsystem.action\">\n        <field name=\"name\">Manage your quality management system with Odoo :o)</field>\n        <field name=\"type_action\">improvement</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/i18n/am.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\\n\"\n\"Language: am\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/ca.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\\n\"\n\"Language: ca\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat per\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Creat el\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Darrera Actualització per\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Darrera Actualització el\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2019-09-24 17:24+0000\\n\"\n\"Last-Translator: Manuel Stahl <manuel.stahl@awesome-technologies.de>\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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 3.8\\n\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Maßnahme\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Maßnahme erforderlich\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"Maßnahme Stufe\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"Maßnahme Stichwörter\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"Maßnahmentitel...\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Maßnahmen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"Aktivitäten\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"Aktivitäten Stufe\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"Beschreibung hinzufügen...\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"Alter\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"Archiviert\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Anzahl Anhänge\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Abgebrochen\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"Klicken um ein neues Stichwort hinzuzufügen.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"Abschlussdatum\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Abgeschlossen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"Abschlussdatum\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"Farbindex\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Unternehmen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Korrektivmaßnahme\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"Erstellungsdatum\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Erstellt von\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Erstellt am\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Frist\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"Löschen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Beschreibung\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Anzeigename\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"Entwurf\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"Erinnerung an Maßnahmen 10 Tage vor dem Fälligkeitsdatum per E-Mail.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"Finale Stufe\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"Zusatzinformation\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"Eingeklappt in Kanban\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Abonnenten\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Abonnenten (Partner)\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"Zukünftige Maßnahmen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"Liefert die Reihenfolge wenn eine Liste von Maßnahmen angezeigt wird.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"Gruppieren nach\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Erzeuge eine allgemeine Übersicht aller Maßnahmen im System durch Sortierung \"\n\"nach einem spezifischen Kriterium.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\"Wenn angewählt gibt es neue Nachrichten, die Ihre Aufmerksamkeit erfordern.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\"Wenn angewählt gibt es Nachrichten, die nicht zugestellt werden konnten.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Sofortmaßnahme\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Verbesserungsgelegenheit\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"In Bearbeitung\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Ist Abonnent\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zuletzt aktualisiert von\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zuletzt aktualisiert am\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"Überfällige Maßnahmen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"Niedrig\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"Management-System Maßnahmenbericht\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"Management-System Analyse\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Zustellungsfehler\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"Nachrichten\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"Meine Maßnahmen\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"Meine Aktivitäten\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"Meine abonnierten Maßnahmen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"Name\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"Neu\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Nächste Maßnahmenfrist\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Anzahl Maßnahmen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\n#, fuzzy\nmsgid \"Number of errors\"\nmsgstr \"Anzahl Fehler\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Anzahl Nachrichten mit Zustellungsfehlern\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"Eröffnungsdatum\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"Unerledigt\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Präventivmaßnahme\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"Priorität\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Bezug\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Antwort Typ\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Verantwortlich\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Verantwortlicher Benutzer\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\n#, fuzzy\nmsgid \"SMS Delivery error\"\nmsgstr \"Zustellungsfehler\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Reihenfolge\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"Zeige alle Einträge deren nächste Maßnahme vor heute liegt\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Stufe\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Stufenname\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"Stufen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"Anfangsstufe\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status basiert auf Maßnahmen\\n\"\n\"Überfällig: Fälligkeitsdatum ist überschritten\\n\"\n\"Heute: Maßnahme ist heute fällig\\n\"\n\"Geplant: Zukünftige Maßnahmen.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Betreff\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"Stichwort existiert bereits!\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"Stichwörter\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"Aufgabe Stufe\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\"Diese Stufe ist in der Kanban-Ansicht eingeklappt wenn es keine Einträge zum \"\n\"anzeigen in dieser Stufe gibt.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"Heutige Maßnahmen\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Typ\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Ungelesene Nachrichten\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Benutzer\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"Wir können die Maßnahme nicht zu einem Entwurf zurückstufen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Letzte Nachricht\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zuletzt aktualisiert am\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Hauptanhang\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Anzahl Nachrichten, die Maßnahmen erfordern\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Anzahl ungelesener Nachrichten\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Anzahl ungelesener Nachrichten\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Hello ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  This is an automated message to remind you that the\\n\"\n#~ \"  following action is due to be completed in 10 days ($\"\n#~ \"{object.date_deadline}):\\n\"\n#~ \"\\n\"\n#~ \"  <b><a href=\\\"${object.get_action_url()}\\\">${object.name}</a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Thank you and have a nice day.<br>\\n\"\n#~ \"  --<br>\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Hallo ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Dies ist eine automatisch erzeugte Nachricht um Sie daran zu erinnern, \"\n#~ \"dass die folgende Maßnahme in den nächsten 10 Tagen fällig wird ($\"\n#~ \"{object.date_deadline}):\\n\"\n#~ \"\\n\"\n#~ \"  <b><a href=\\\"${object.get_action_url()}\\\">${object.name}</a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Vielen Dank und einen schönen Tag.<br />\\n\"\n#~ \"  --<br />\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Hello ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>A new action has been assigned to you: <b><a href=\\\"$\"\n#~ \"{object.get_action_url()}\\\">${object.name}</a></b></p>\\n\"\n#~ \"<p><b>Deadline: </b>${object.date_deadline or ''}</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Thank you<br>\\n\"\n#~ \"  --<br>\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Hallo ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Ihnen wurde eine neue Maßnahme zugewiesen: <b><a href=\\\"$\"\n#~ \"{object.get_action_url()}\\\">${object.name}</a></b></p>\\n\"\n#~ \"<p><b>Deadline: </b>${object.date_deadline or ''}</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Bitte nutzen Sie Maßnahmen Stufen und Nachrichten um den Fortschritt \"\n#~ \"zu dokumentieren.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Vielen Dank<br>\\n\"\n#~ \"  --<br>\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Abonnenten (Kanäle)\"\n\n#~ msgid \"Reminder on Action: \\\"${object.name}\\\"\"\n#~ msgstr \"Erinnerung an Maßnahme: \\\"${object.name}\\\"\"\n\n#~ msgid \"If checked new messages require your attention.\"\n#~ msgstr \"\"\n#~ \"Wenn angewählt gibt es Maßnahmen, die Ihre Aufmerksamkeit erfordern.\"\n\n#~ msgid \"Overdue\"\n#~ msgstr \"Überfällig\"\n\n#~ msgid \"Planned\"\n#~ msgstr \"Geplant\"\n\n#~ msgid \"Today\"\n#~ msgstr \"Heute\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/el_GR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/\"\n\"el_GR/)\\n\"\n\"Language: el_GR\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Δημιουργήθηκε από \"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Δημιουργήθηκε στις\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"Κωδικός\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Τελευταία ενημέρωση από\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Τελευταία ενημέρωση στις\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# enjolras <yo@miguelrevilla.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-02-10 07:38+0000\\n\"\n\"PO-Revision-Date: 2023-09-05 22:37+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"Nº de acciones\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"# de días para cerrar\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"# de días para abrir\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"# de días excedidos\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Acción\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"Acción Asignada\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Acción Necesaria\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"Etapa de la acción\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"Etiquetas de la acción\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"Título de la acción...\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Acciones\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Activo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"Actividades\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decoración de excepción de la actividad\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"estado de la actividad\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icono del tipo de actividad\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"Añadir a descripción...\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"Edad\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"Archivado\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"recuento de archivos adjuntos\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Cancelado\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"Haga clic para añadir una nueva etiqueta.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"Fecha de cierre\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Cerrado\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"Fecha de Cierre\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"Índice de colores\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Acción correctiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"Fecha de creació\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Fecha límite\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"Borrar\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Descripción\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\"Recordatorios de acciones por correo electrónico 10 días antes de la fecha \"\n\"de vencimiento.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"Etapa final\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"Información extra\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"Doblado en Kanban\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores/as\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguidores (socios)\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"fuente iconos sorprendentes , por ejemplo fa-tasks\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"Actividades futuras\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"Indica el orden de secuencia al mostrar una lista de acciones.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"Agrupado por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"tiene un mensaje\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Tenga una visión general de todas las acciones procesadas en el sistema \"\n\"clasificándolas con criterios específicos.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icono\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"icono para indicar una actividad por excepción.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Si está marcada, nuevos mensajes requieren tu atención.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Si está marcado, algunos mensajes han tenido un error de entrega.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Acción inmediata\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Oportunidad de mejora\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"En progreso\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Es seguidor/a\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualización por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización el\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"Actividades tardías\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"Bajo/a\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"Informe de acción sobre el sistema de gestión\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"Análisis del sistema de gestión\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Error de envío de mensaje\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"Mensajes\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"Mis Acciones\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"Mis Actividades\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Fecha límite de Mi Actividad\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"Mis acciones seguidas\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"Nuevo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Próximo evento del calendario de actividades\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Fecha límite de la siguiente actividad\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Resumen de la próxima actividad\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo de la próxima actividad\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"Normal\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Número de acciones\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Número de errores\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensajes que requieren una acción\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"número de mensajes con error de entrega\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"Fecha de apertura\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"Pendiente\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Acción preventiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"Prioridad\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Referencia\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"Recordatorio sobre la acción: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"Recordatorio para el/la responsable\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Tipo de respuesta\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Usuario Responsable\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Error de Entrega SMS\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Secuencia\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\"Mostrar todos los registros cuya fecha de próxima acción sea anterior a hoy\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Etapa\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nombre de la etapa\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"Etapas\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"Etapa inicial\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status basado en actividades\\n\"\n\"Atrasado: La fecha de entrega ya ha pasado\\n\"\n\"Hoy: Fecha de actividad es hoy\\n\"\n\"Planeado: Actividades futuras.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Asunto\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"¡Este nombre de etiqueta ya existe !\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"Etiquetas\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"Etapa de la tarea\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\"Esta etapa se pliega en la vista Kanban cuando no hay registros en esa etapa \"\n\"para mostrar.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"Actividades de Hoy\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo (o clase) de actividad excepcional registrada.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Mensajes no leídos\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Usuario\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"No podemos devolver la acción a la fase de borrador\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"mensajes de la página web\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Historial de comunicación del Sitio Web\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"{{object.name}}\"\n\n#~ msgid \"#0000ff\"\n#~ msgstr \"#0000ff\"\n\n#~ msgid \"#00ff00\"\n#~ msgstr \"#00ff00\"\n\n#~ msgid \"#ffa500\"\n#~ msgstr \"#ffa500\"\n\n#~ msgid \"#ffffff\"\n#~ msgstr \"#ffffff\"\n\n#~ msgid \"Dropdown menu\"\n#~ msgstr \"Menú Desplegable\"\n\n#~ msgid \"Edit Task\"\n#~ msgstr \"Editar tarea\"\n\n#~ msgid \"oe_kanban_text_red\"\n#~ msgstr \"oe_kanban_text_red\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"This is an automated message to remind you that the\\n\"\n#~ \"following action is due to be completed in 10 days (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you and have a nice day.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hola <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Este es un mensaje atomático para recordarle que la siguiente acción\\n\"\n#~ \" debe de completarse en 10 dias (<t t-out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Gracias y que tenga un buen dia.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>A new action has been assigned to you: <b><a t-att-\"\n#~ \"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n#~ \"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hola <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Se le ha asignado una nueva acción: <b><a t-att-\"\n#~ \"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n#~ \"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n#~ \"\\n\"\n#~ \"<p> Por favor, utilice las etapas de acción y los mensajes para registrar \"\n#~ \"el progreso.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Gracias<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Archivo adjunto principal\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Número de mensajes que requieren una acción\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Mensajes no leídos\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Mensajes no leídos\"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n\n#~ msgid \"Reminder on Action: \\\"${object.name}\\\"\"\n#~ msgstr \"Recordatorio sobre la acción: \\\"${object.name}\\\"\"\n\n#~ msgid \"Action cancelled on \"\n#~ msgstr \"Acción cancelada el\"\n\n#~ msgid \"Action closed on \"\n#~ msgstr \"Acción cerrada el\"\n\n#~ msgid \"Cancel Date\"\n#~ msgstr \"Fecha de cancelación\"\n\n#~ msgid \"Common to All Teams\"\n#~ msgstr \"Común a todos los equipos\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:18+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:18+0000\\n\"\n\"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA \"\n\"<josealejandroeche@gmail.com>, 2018\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/es_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/fi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\\n\"\n\"Language: fi\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Peruutettu\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Suljettu\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Luonut\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Luotu\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Nimi\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"Käynnissä\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Viimeksi päivittänyt\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Viimeksi päivitetty\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Viimeksi muokattu\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Action\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Action\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Action\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Actions\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Actions\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Active\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Active\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Action\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Description\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Annulée\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Fermée\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Société\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Action corrective\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Créée par\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Créée le \"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Date limite\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Description\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom à afficher\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"Brouillon\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"Étape finale\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Action immédiate\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Opportunité d'amélioration\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"En cours\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Mise à jour par\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Mise à jour le\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Messages non-lus\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Actions\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Activities\"\nmsgstr \"Active\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Action préventive\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Référence\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Séquence\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Étape\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nom de l'étape\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"Étapes\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"Étape initiale\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Sujet\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Système\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Task Stage\"\nmsgstr \"Étape\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Messages non-lus\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Utilisateur\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Messages non-lus\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Dernière modification le\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Messages non-lus\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Messages non-lus\"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n\n#~ msgid \"Reminder on Action: \\\"${object.name}\\\"\"\n#~ msgstr \"Rappel de l'action : \\\"${object.name}\\\"\"\n\n#~ msgid \"Common to All Teams\"\n#~ msgstr \"Commune à toutes les équipes\"\n\n#~ msgid \"Used to order stages. Lower is better.\"\n#~ msgstr \"Utilisé pour ordonner les étapes. Plus c'est petit, mieux c'est.\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/gl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\\n\"\n\"Language: gl\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"ültima actualización por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Tvrtka\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Kreirao\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Kreirano\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnje ažurirao\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažuriranje\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Sustav\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Korisnik\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnje modificirano\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/hu.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-06-30 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-06-30 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\\n\"\n\"Language: hu\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Leírás\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Lezárt\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Leírás\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Felelős\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Felelős\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Típus\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Felhasználó\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2026-02-24 10:09+0000\\n\"\n\"Last-Translator: mymage <stefano.consolaro@mymage.it>\\n\"\n\"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\\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.15.2\\n\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"N. di azioni\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"N. di giorni alla chiusura\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"N. di giorni dall'apertura\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"N. giorni di ritardo\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\"<p>Salve<t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Questo è un messaggio automatico per ricordarti che la\\n\"\n\"seguente azione deve essere completata entro 10 giorni (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Grazie e buona giornata.<br>\\n\"\n\"--<br>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\"<p>Salve<t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>Ti è stata assegnata una nuova azione: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Scadenza: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Utilizza lo stato dell'azione e i messaggi per tracciare lo sviluppo.</\"\n\"p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Grazie<br>\\n\"\n\"--<br>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Azione\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"Azione assegnata\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Azione richiesta\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"Fase azione\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"Etichette azione\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"Titolo azione...\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Azioni\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Attivo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"Attività\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decorazione eccezione attività\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"Stato attività\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icona tipo attività\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"Aggiungere una descrizione...\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"Età\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"In archivio\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Numero allegati\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Annullata\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"Fare clic per aggiungere una etichetta.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"Data chiusura\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Chiusa\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"Data chiusura\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"Indice colore\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Azione correttiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"Data creazione\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Scadenza\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"Elimina\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Descrizione\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"Bozza\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"Modifica\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"Promemoria email 10 giorni prima della scadenza dell'azione.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"Fase finale\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"Informazione aggiuntiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"Minimizzato nel Kanban\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguito da\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguito da (partner)\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Icona Font Awesome es. fa-tasks\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"Attività future\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"Determina l'ordinamento sequenza nel visualizzare un elenco di azioni.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"Raggruppa per\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"Ha un messaggio\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Fornisce una panoramica generale di tutte le azioni elaborate nel sistema \"\n\"ordinandole con un criterio specifico.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icona\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Icona per indicare un'attività eccezione.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se selezionata, nuovi messaggi richiedono attenzione.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se selezionata, alcuni messaggi hanno un errore di consegna.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Azione immediata\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Opportunità di miglioramento\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"In corso\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Segue\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"Attività in ritardo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"Basso\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"Resoconto azione sistema gestione\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"Analisi del sistema di gestione\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Errore di consegna messaggio\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"Messaggi\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"Le mie azioni\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"Le mie attività\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Scadenza mia attività\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"Le mie azioni seguite\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"Nuova\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Evento calendario attività successiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Scadenza prossima attività\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Riepilogo prossima attività\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo prossima attività\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"Normale\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Numero di azioni\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Numero di errori\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Numero di messaggi che richiedono un'azione\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Numero di messaggi con errore di consegna\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"Data apertura\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"In attesa\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Azione preventiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"Priorità\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Riferimento\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"Promemoria sull'azione: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"Promemoria al responsabile\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Tipo risposta\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Responsabile\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Utente responsabile\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Errore consegna SMS\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"Riferimento campione\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sequenza\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"Visualizza tutte le righe con l'azione successiva antecedente ad oggi\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nome fase\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"Fasi\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"Fase iniziale\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Stato in base alle attività\\n\"\n\"Scaduto: la data richiesta è trascorsa\\n\"\n\"Oggi: la data attività è oggi\\n\"\n\"Pianificato: attività future.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Soggetto\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"Il nome etichetta esiste già!\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"Etichette\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"Fase lavoro\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\"Questa fase è nascosta nella vista kanban quando non ci sono record in \"\n\"questa fase.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"Attività odierne\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo di attività eccezione sul record.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Messaggi non letti\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Utente\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"Impossibile riportare l'azione alla fase bozza\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Messaggi sito web\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Cronologia comunicazioni sito web\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"{{object.name}}\"\n\n#~ msgid \"#0000ff\"\n#~ msgstr \"#0000ff\"\n\n#~ msgid \"#00ff00\"\n#~ msgstr \"#00ff00\"\n\n#~ msgid \"#ffa500\"\n#~ msgstr \"#ffa500\"\n\n#~ msgid \"#ffffff\"\n#~ msgstr \"#ffffff\"\n\n#~ msgid \"Dropdown menu\"\n#~ msgstr \"Menu a tendina\"\n\n#~ msgid \"Edit Task\"\n#~ msgstr \"Modifica attività\"\n\n#~ msgid \"oe_kanban_text_red\"\n#~ msgstr \"oe_kanban_text_red\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"This is an automated message to remind you that the\\n\"\n#~ \"following action is due to be completed in 10 days (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you and have a nice day.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Salve<t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Questo è un messaggio automatico per ricordarti che la\\n\"\n#~ \"seguente azione deve essere completata entro 10 giorni (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Grazie e buona giornata.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>A new action has been assigned to you: <b><a t-att-\"\n#~ \"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n#~ \"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Salve<t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Ti è stata assegnata una nuova azione: <b><a t-att-\"\n#~ \"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n#~ \"<p><b>Scadenza: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Utilizza lo stato dell'azione e i messaggi per tracciare lo sviluppo.</\"\n#~ \"p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Grazie<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Allegato principale\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Numero di messaggi che richiedono un'azione\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Numero di messaggi non letti\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Conteggio messaggi non letti\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Hello ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  This is an automated message to remind you that the\\n\"\n#~ \"  following action is due to be completed in 10 days ($\"\n#~ \"{object.date_deadline}):\\n\"\n#~ \"\\n\"\n#~ \"  <b><a href=\\\"${object.get_action_url()}\\\">${object.name}</a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Thank you and have a nice day.<br>\\n\"\n#~ \"  --<br>\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Ciao ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Questo è un messaggio automatico per ricordarti che la\\n\"\n#~ \"  seguente azione deve essere completata entro 10 giorni ($\"\n#~ \"{object.date_deadline}):\\n\"\n#~ \"\\n\"\n#~ \"  <b><a href=\\\"${object.get_action_url()}\\\">${object.name}</a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Grazie e buona giornata.<br />\\n\"\n#~ \"  --<br />\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Hello ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>A new action has been assigned to you: <b><a href=\\\"$\"\n#~ \"{object.get_action_url()}\\\">${object.name}</a></b></p>\\n\"\n#~ \"<p><b>Deadline: </b>${object.date_deadline or ''}</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Thank you<br>\\n\"\n#~ \"  --<br>\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Ciao ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Ti è stata assegnata una nuova azione: <b><a href=\\\"$\"\n#~ \"{object.get_action_url()}\\\">${object.name}</a></b></p>\\n\"\n#~ \"<p><b>Scadenza: </b>${object.date_deadline or ''}</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Utilizza gli stati dell'azione e i messaggi per tenere traccia dei \"\n#~ \"progressi.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Grazie<br>\\n\"\n#~ \"  --<br>\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n\n#~ msgid \"Reminder on Action: \\\"${object.name}\\\"\"\n#~ msgstr \"Promemoria sull'azione: \\\"${object.name}\\\"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/lv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\\n\"\n\"Language: lv\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : \"\n\"2);\\n\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Darbība\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Darbība\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Darbība\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Darbības\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Darbības\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Aktīvs\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Aktīvs\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Darbība\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Apraksts\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Slēgts\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Korektīvās darbības\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Termiņš\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Apraksts\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Tūlītēja darbība\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Uzlabojuma iespēja\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"Tiek izpildīts\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Neizlasītās vēstules\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Darbības\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Activities\"\nmsgstr \"Aktīvs\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Preventīvā darbība\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Atsauce\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Reakcijas laiks\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Atbildīgais\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Atbildīgais\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Stadija\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Temats\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Sistēma\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Task Stage\"\nmsgstr \"Stadija\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Veids\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Neizlasītās vēstules\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Lietotājs\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Neizlasītās vēstules\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Neizlasītās vēstules\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Neizlasītās vēstules\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/mgmtsystem_action.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_action\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/\"\n\"nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Beskrivelse\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Avbrutt\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Stengt\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Korrigerende handling.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Frist\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Beskrivelse\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"Utkast\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Umiddelbare tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Forbedringsmulighet\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"Pågår\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Uleste meldinger\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Activities\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Forebyggende Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Responstype\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Ansvarlig\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Ansvarlig\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Rekkefølge\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Nivå\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Emne\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Task Stage\"\nmsgstr \"Nivå\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Uleste meldinger\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Bruker\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Uleste meldinger\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Uleste meldinger\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Uleste meldinger\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/nl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\\n\"\n\"Language: nl\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Actief\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Actief\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Actief\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Te tonen naam\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Activities\"\nmsgstr \"Actief\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst bijgewerkt op\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 04:24+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 04:24+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/\"\n\"23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"# dagen tot sluiting\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Actie\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Actie\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Actie\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Acties\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Acties\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Actief\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Actief\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Actie\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Omschrijving\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Gesloten\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Bedrijf\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"Aanmaakdatum\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Aangemaakt door\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Aangemaakt op\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Omschrijving\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Weergavenaam\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Laatst bijgewerkt op\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Ongelezen berichten\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Acties\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Activities\"\nmsgstr \"Actief\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Referentie\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Fasenaam\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"Fasen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Systeem\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Task Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Ongelezen berichten\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Gebruiker\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Ongelezen berichten\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#~ msgid \"#0000ff\"\n#~ msgstr \"#0000ff\"\n\n#~ msgid \"#00ff00\"\n#~ msgstr \"#00ff00\"\n\n#~ msgid \"#ffa500\"\n#~ msgstr \"#ffa500\"\n\n#~ msgid \"#ffffff\"\n#~ msgstr \"#ffffff\"\n\n#~ msgid \"oe_kanban_text_red\"\n#~ msgstr \"oe_kanban_text_red\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst aangepast op\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Ongelezen berichten\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Ongelezen berichten\"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/nn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Nynorsk (https://www.transifex.com/oca/teams/23907/\"\n\"nn/)\\n\"\n\"Language: nn\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Beskriving\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Stengd\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Korrigerande handling\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Frist\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Beskriving\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Umiddelbare tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Forbedringstiltak\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"Pågår\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Ulesne meldingar\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Activities\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Forebyggande Tiltak\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Responstype\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Ansvarleg\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Ansvarleg\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Rekkefølge\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Emne\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Systemet\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Task Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Ulesne meldingar\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Brukar\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Ulesne meldingar\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Ulesne meldingar\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Ulesne meldingar\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\\n\"\n\"Language: 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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Ações\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Ações\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Ação corretiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Prazo limite\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Ação imediata\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Oportundiades de melhoria\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Ações\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Ação preventiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Etapa\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Task Stage\"\nmsgstr \"Etapa\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Utilizador\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2019-08-26 15:01+0000\\n\"\n\"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/\"\n\"23907/pt_BR/)\\n\"\n\"Language: pt_BR\\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 3.8\\n\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"Nº de ações\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"Nº De dias para fechar\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"Nº De dias para abrir\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"Nº de dias em excesso\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Ação necessária\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"Estágio da ação\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"Etiquetas da ação\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"Títulos da ação...\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Ações\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Ativa\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"Atividades\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"Estado da atividade\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"Adicionar uma descrição...\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"Idade\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"Arquivado\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Contador de anexo\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Cancelada\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"Clique para adicionar uma nova etiqueta.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"Fechar Data\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"Fechado Data\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"Índice de cor\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Ação Corretiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"Data Criação\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Prazo Final\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"Apagar\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Mostrar nome\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"Rascunho\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"Lembretes de ação por e-mail 10 dias antes da data de vencimento.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"Acabar com estágio\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"Informação Extra\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"Guardado em Kanban\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguidores (Parceiros)\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"Atividades Futuras\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"Dá a ordem da sequência ao exibir uma lista de ações.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"Agrupar por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Tem uma visão geral de todas as ações processadas no sistema, classificando-\"\n\"as com critérios específicos.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"Identificação\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se marcada, novas mensagens requerem sua atenção.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se marcada, algumas mensagens tem um erro de entrega.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Ação Imediata\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Oportunidade de Melhoria\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"Em andamento\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"É seguidor\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última atualização por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última atualização em\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"Atividades Atrasadas\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"Menor\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"Relatório do Sistema de Gestão de Ação\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"Sistema de Gestão de Análise\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Mensagem de erro de entrega\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"Mensagens\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"Minhas Ações\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"Minhas Atividades\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"Minhas ações seguintes\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"Novo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Prazo para a próxima atividade\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Resumo para a próxima atividade\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Próximo tipo de atividade\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"Normal\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Número de ações\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\n#, fuzzy\nmsgid \"Number of errors\"\nmsgstr \"Número de erro\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Número de mensagens com erro de entrega\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"Data de abertura\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"Pendente\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Ação Preventiva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"Prioridade\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Tipo de Resposta\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Usuário Responsável\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\n#, fuzzy\nmsgid \"SMS Delivery error\"\nmsgstr \"Mensagem de erro de entrega\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sequência\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"Mostrar todos os registros com a próxima data de ação anterior a hoje\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Estágio\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nome estagio\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"Estágios\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"Começando estágio\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status baseado em atividades\\n\"\n\"Vencido: a data de vencimento já passou\\n\"\n\"Hoje: a data da atividade é hoje\\n\"\n\"Planejado: Atividades futuras.\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Definir\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"O nome da tag já existe!\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"Etiquetas\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"Tarefa do Estágio\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\"Esse estágio é guardado na visualização kanban quando não há registros nesse \"\n\"estágio para exibição.\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"Atividades de Hoje\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Mensagens não lidas\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Usuário\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"Não podemos trazer de volta a ação a fase de projeto\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Última Mensagem\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#~ msgid \"#0000ff\"\n#~ msgstr \"#0000ff\"\n\n#~ msgid \"#00ff00\"\n#~ msgstr \"#00ff00\"\n\n#~ msgid \"#ffa500\"\n#~ msgstr \"#ffa500\"\n\n#~ msgid \"#ffffff\"\n#~ msgstr \"#ffffff\"\n\n#~ msgid \"Edit Task\"\n#~ msgstr \"Editar Tarefa\"\n\n#~ msgid \"oe_kanban_text_red\"\n#~ msgstr \"oe_kanban_text_red\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificada pela última vez\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Anexo Principal\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Número de mensagens que requerem uma ação\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Número de Mensagens não lidas\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Contador de Mensagens não lidas\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Hello ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  This is an automated message to remind you that the\\n\"\n#~ \"  following action is due to be completed in 10 days ($\"\n#~ \"{object.date_deadline}):\\n\"\n#~ \"\\n\"\n#~ \"  <b><a href=\\\"${object.get_action_url()}\\\">${object.name}</a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Thank you and have a nice day.<br>\\n\"\n#~ \"  --<br>\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Olá, </p>\\n\"\n#~ \"\\n\"\n#~ \"     <p>\\n\"\n#~ \"       Esta é uma mensagem automática para lembrá-lo de que o\\n\"\n#~ \"       após a ação deverá ser concluída em 10 dias ($\"\n#~ \"{object.date_deadline}):\\n\"\n#~ \"\\n\"\n#~ \"       <b><a href=\\\"${object.get_action_url()}\\\"> ${object.name} </a></\"\n#~ \"b>\\n\"\n#~ \"     </p>\\n\"\n#~ \"\\n\"\n#~ \"     <p>\\n\"\n#~ \"       Obrigado e tenha um bom dia.<br/>\\n\"\n#~ \"       --<br/>\\n\"\n#~ \"       Odoo\\n\"\n#~ \"     </p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p>Hello ${object.user_id.name},</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>A new action has been assigned to you: <b><a href=\\\"$\"\n#~ \"{object.get_action_url()}\\\">${object.name}</a></b></p>\\n\"\n#~ \"<p><b>Deadline: </b>${object.date_deadline or ''}</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"  Thank you<br>\\n\"\n#~ \"  --<br>\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"<p> Olá, $ {object.user_id.name}, </p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Uma nova ação foi atribuída a você: <b><a href=\\\"$\"\n#~ \"{object.get_action_url()}\\\">${object.name} </a> </b> </p>\\n\"\n#~ \"<p><b>Prazo final:</b>${object.date_deadline ou ''} </p>\\n\"\n#~ \"\\n\"\n#~ \"<p>Por favor, use os estágios de ação e as mensagens para registrar o \"\n#~ \"progresso.</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"   Obrigado<br>\\n\"\n#~ \"   --<br>\\n\"\n#~ \"   Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"                \\n\"\n#~ \"            \"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Seguidores (Canais)\"\n\n#~ msgid \"Reminder on Action: \\\"${object.name}\\\"\"\n#~ msgstr \"Lembrete na ação: \\\"${object.name}\\\"\"\n\n#~ msgid \"If checked new messages require your attention.\"\n#~ msgstr \"Se marcada novas mensagens requerem sua atenção.\"\n\n#~ msgid \"Overdue\"\n#~ msgstr \"Atrasado\"\n\n#~ msgid \"Planned\"\n#~ msgstr \"Planejado\"\n\n#~ msgid \"Today\"\n#~ msgstr \"Hoje\"\n\n#~ msgid \"Action back to draft stage on \"\n#~ msgstr \"Ação de volta à fase de projecto em\"\n\n#~ msgid \"Action cancelled on \"\n#~ msgstr \"Ação cancelada em\"\n\n#~ msgid \"Action closed on \"\n#~ msgstr \"Ação fechada em\"\n\n#~ msgid \"Cancel Date\"\n#~ msgstr \"Anular Data\"\n\n#~ msgid \"Common to All Teams\"\n#~ msgstr \"Comum a todas as equipes\"\n\n#~ msgid \"\"\n#~ \"If you check this field,         this stage will be proposed by default \"\n#~ \"on each sales team.         It will not assign this stage to existing \"\n#~ \"teams.\"\n#~ msgstr \"\"\n#~ \"Se você verificar neste campo, nesta fase, será proposto por padrão em \"\n#~ \"cada equipe de vendas. Não vai atribuir nesta fase, as equipes existentes.\"\n\n#~ msgid \"Used to order stages. Lower is better.\"\n#~ msgstr \"Usado para solicitar etapas. Menor é melhor.\"\n\n#~ msgid \"You should first open the action\"\n#~ msgstr \"Você deve primeiro abrir a ação\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/pt_PT.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/\"\n\"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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"Rascunho\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Mensagens não lidas\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Mensagens não lidas\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Mensagens não lidas\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Mensagens não lidas\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Mensagens não lidas\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2023-03-31 21:29+0000\\n\"\n\"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\\n\"\n\"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\\n\"\n\"Language: sl\\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3;\\n\"\n\"X-Generator: Weblate 4.14.1\\n\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Ukrep\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Ukrep\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Ukrep\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Ukrepi\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Ukrepi\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"Aktivno\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Aktivno\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Ukrep\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Opis\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Preklicano\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Zaključeno\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"Družba\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Korektivni ukrep\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Rok izvedbe\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Opis\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikazani naziv\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"Osnutek\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"Zaključna stopnja\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Takojšnji ukrepi\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Priložnost za izboljšave\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"V teku\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnjič posodobil\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Neprebrana sporočila\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Ukrepi\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Activities\"\nmsgstr \"Aktivno\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Preventivni ukrep\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Sklic\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"Tip odziva\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Odgovorni\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Odgovorni\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Zaporedje\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Stopnja\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Naziv stopnje\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"Stopnje\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"Začetna stopnja\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"Predmet\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"Sistem\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Task Stage\"\nmsgstr \"Stopnja\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Tip\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Neprebrana sporočila\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Uporabnik\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Neprebrana sporočila\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič spremenjeno\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Neprebrana sporočila\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Neprebrana sporočila\"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n\n#~ msgid \"Reminder on Action: \\\"${object.name}\\\"\"\n#~ msgstr \"Opomnik za ukrep: \\\"${object.name}\\\"\"\n\n#~ msgid \"Common to All Teams\"\n#~ msgstr \"Skupno vsem ekipam\"\n\n#~ msgid \"Used to order stages. Lower is better.\"\n#~ msgstr \"Uporabljeno za vrstni red stopenj. Nižje je bolje.\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\\n\"\n\"Language: sv\\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: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"Åtgärd\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Åtgärd\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"Åtgärd\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"Åtgärder\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"Åtgärder\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Åtgärd\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Add a description...\"\nmsgstr \"Beskrivnig\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"Stängd\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"Korrigeringsåtgärd\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"Slutdatum\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"Beskrivnig\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"Omedelbara Åtgärder\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"Förbättringsmöjlighet\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"Åtgärder\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"Förebyggande Åtgärd\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"Referens\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"Ansvarig\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Ansvarig\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sekvens\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"Läge\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\n#, fuzzy\nmsgid \"Task Stage\"\nmsgstr \"Läge\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"Typ\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"Användare\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/th.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-06-30 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-06-30 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\\n\"\n\"Language: th\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\n#, fuzzy\nmsgid \"Action Stage\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\n#, fuzzy\nmsgid \"Action Tags\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#, fuzzy\nmsgid \"My Actions\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/tr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_action\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\\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\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"Oluşturan\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"Oluşturuldu\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Son güncelleyen\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Son güncelleme\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Okunmamış Mesajlar\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Okunmamış Mesajlar\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Okunmamış Mesajlar\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Okunmamış Mesajlar\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Okunmamış Mesajlar\"\n"
  },
  {
    "path": "mgmtsystem_action/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2013-07-24 21:21+0000\\n\"\n\"PO-Revision-Date: 2014-03-05 01:02+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_actions\nmsgid \"# of actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_close\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__number_of_days_to_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_days_to_open\nmsgid \"# of days to open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__number_of_exceedings_days\nmsgid \"# of exceedings days\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following action is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,body_html:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>A new action has been assigned to you: <b><a t-att-\"\n\"href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b></p>\\n\"\n\"<p><b>Deadline: </b><t t-out=\\\"object.date_deadline or ''\\\"/></p>\\n\"\n\"\\n\"\n\"<p>Please, use the action stages and messages to log progress.</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"Action Assigned\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_stage\nmsgid \"Action Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_tag\nmsgid \"Action Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Action title...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.open_mgmtsystem_action_list\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_config_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_open_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_report_mgmtsystem_action_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_report_mgmtsystem_action_pivot\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Add a description...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__age\nmsgid \"Age\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.project_tags_action\nmsgid \"Click to add a new tag.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_closed\nmsgid \"Close Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_close\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_closed\nmsgid \"Closed Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__color\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__color\nmsgid \"Color Index\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__company_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__correction\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__correction\nmsgid \"Corrective Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__create_date\nmsgid \"Create Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_deadline\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Delete\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__description\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Edit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.server,name:mgmtsystem_action.ir_cron_mgmtsystem_action_reminder_ir_actions_server\nmsgid \"Email Action Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_ending\nmsgid \"Ending stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_form\nmsgid \"Extra Information\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Future Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__sequence\nmsgid \"Gives the sequence order when displaying a list of actions.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Group By\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.actions.act_window,help:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"\"\n\"Have a general overview of all actions processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__immediate\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__immediate\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__improvement\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__improvement\nmsgid \"Improvement Opportunity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mgmtsystem.action.stage,name:mgmtsystem_action.stage_open\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Late Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__0\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model,name:mgmtsystem_action.model_mgmtsystem_action_report\nmsgid \"Management System Action Report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.action_report_mgmtsystem_action\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"My Followed Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_tag__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__priority__1\nmsgid \"Normal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__date_open\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__date_open\nmsgid \"Opening Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action__type_action__prevention\n#: model:ir.model.fields.selection,name:mgmtsystem_action.selection__mgmtsystem_action_report__type_action__prevention\nmsgid \"Preventive Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,name:mgmtsystem_action.action_email_template_reminder_action\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__type_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/tests/test_create_action.py:0\nmsgid \"SampleReference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Show all records which has next action date is before today\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__stage_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__stage_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_stage__is_starting\nmsgid \"Starting stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__name\nmsgid \"Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__system_id\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.constraint,message:mgmtsystem_action.constraint_mgmtsystem_action_tag_name_uniq\nmsgid \"Tag name already exists !\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.mgmtsystem_action_tag_action\n#: model:ir.actions.act_window,name:mgmtsystem_action.project_tags_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__tag_ids\n#: model:ir.ui.menu,name:mgmtsystem_action.menu_mgmtsystem_action_tags\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.project_tags_form_view\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_stage_form\nmsgid \"Task Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are no records in that \"\n\"stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Today Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action_report__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action.view_mgmtsystem_action_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#. odoo-python\n#: code:addons/mgmtsystem_action/models/mgmtsystem_action.py:0\nmsgid \"We cannot bring back the action to draft stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,field_description:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:ir.model.fields,help:mgmtsystem_action.field_mgmtsystem_action__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action\n#: model:mail.template,subject:mgmtsystem_action.email_template_new_action_reminder\nmsgid \"{{object.name}}\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action/models/__init__.py",
    "content": "from . import mgmtsystem_action\nfrom . import mgmtsystem_action_stage\nfrom . import mgmtsystem_action_tag\n"
  },
  {
    "path": "mgmtsystem_action/models/mgmtsystem_action.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom datetime import datetime, timedelta\n\nfrom odoo import api, exceptions, fields, models\n\nTYPE_COLOR_MAP = {\n    \"immediate\": 1,\n    \"correction\": 2,\n    \"prevention\": 4,\n    \"improvement\": 10,\n}\n\n\nclass MgmtsystemAction(models.Model):\n    _name = \"mgmtsystem.action\"\n    _inherit = [\"mail.thread\", \"mail.activity.mixin\"]\n    _description = \"Action\"\n    _order = \"priority desc, sequence, id desc\"\n\n    name = fields.Char(\"Subject\", required=True)\n    system_id = fields.Many2one(\"mgmtsystem.system\", \"System\")\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n    active = fields.Boolean(default=True)\n    priority = fields.Selection(\n        [(\"0\", \"Low\"), (\"1\", \"Normal\")], default=\"0\", index=True\n    )\n    sequence = fields.Integer(\n        index=True,\n        default=10,\n        help=\"Gives the sequence order when displaying a list of actions.\",\n    )\n    date_deadline = fields.Date(\"Deadline\")\n    date_open = fields.Datetime(\"Opening Date\", readonly=True)\n    date_closed = fields.Datetime(\"Closed Date\", readonly=True)\n    number_of_days_to_open = fields.Integer(\n        \"# of days to open\", compute=\"_compute_number_of_days_to_open\", store=True\n    )\n    number_of_days_to_close = fields.Integer(\n        \"# of days to close\", compute=\"_compute_number_of_days_to_close\", store=True\n    )\n    reference = fields.Char(readonly=True)\n    user_id = fields.Many2one(\n        \"res.users\",\n        \"Responsible\",\n        default=lambda self: self._default_owner(),\n        required=True,\n    )\n    description = fields.Html()\n    type_action = fields.Selection(\n        [\n            (\"immediate\", \"Immediate Action\"),\n            (\"correction\", \"Corrective Action\"),\n            (\"prevention\", \"Preventive Action\"),\n            (\"improvement\", \"Improvement Opportunity\"),\n        ],\n        \"Response Type\",\n        required=True,\n    )\n    color = fields.Integer(\n        \"Color Index\",\n        compute=\"_compute_color\",\n        default=0,\n    )\n    stage_id = fields.Many2one(\n        \"mgmtsystem.action.stage\",\n        \"Stage\",\n        tracking=True,\n        index=True,\n        copy=False,\n        default=lambda self: self._default_stage(),\n        group_expand=\"_stage_groups\",\n    )\n    tag_ids = fields.Many2many(\"mgmtsystem.action.tag\", string=\"Tags\")\n\n    def _default_owner(self):\n        return self.env.user\n\n    def _default_stage(self):\n        return self.env[\"mgmtsystem.action.stage\"].search(\n            [(\"is_starting\", \"=\", True)], limit=1\n        )\n\n    @api.model\n    def _elapsed_days(self, dt1_text, dt2_text):\n        res = 0\n        if dt1_text and dt2_text:\n            res = (dt1_text - dt2_text).days\n        return res\n\n    @api.depends(\"date_open\", \"create_date\")\n    def _compute_number_of_days_to_open(self):\n        for action in self:\n            action.number_of_days_to_open = action._elapsed_days(\n                action.create_date, action.date_open\n            )\n\n    @api.depends(\"date_closed\", \"create_date\")\n    def _compute_number_of_days_to_close(self):\n        for action in self:\n            action.number_of_days_to_close = action._elapsed_days(\n                action.create_date, action.date_closed\n            )\n\n    @api.depends(\"type_action\")\n    def _compute_color(self):\n        for action in self:\n            action.color = TYPE_COLOR_MAP[action.type_action]\n\n    @api.model\n    def _stage_groups(self, stages=None, domain=None, order=None):\n        return self.env[\"mgmtsystem.action.stage\"].search([], order=order)\n\n    @api.model_create_multi\n    def create(self, vals_list):\n        for one_vals in vals_list:\n            if one_vals.get(\"reference\", self.env._(\"New\")) == self.env._(\"New\"):\n                Sequence = self.env[\"ir.sequence\"]\n                one_vals[\"reference\"] = Sequence.next_by_code(\"mgmtsystem.action\")\n        actions = super().create(vals_list)\n        actions.send_mail_for_action()\n        return actions\n\n    @api.constrains(\"stage_id\")\n    def _check_stage_id(self):\n        for rec in self:\n            # Do not allow to bring back actions to draft\n            if rec.date_open and rec.stage_id.is_starting:\n                raise exceptions.ValidationError(\n                    self.env._(\"We cannot bring back the action to draft stage\")\n                )\n            # If stage is changed, the action is opened\n            if not rec.date_open and not rec.stage_id.is_starting:\n                rec.date_open = fields.Datetime.now()\n            # If stage is ending, set closed date\n            if not rec.date_closed and rec.stage_id.is_ending:\n                rec.date_closed = fields.Datetime.now()\n\n    def send_mail_for_action(self, force_send=True):\n        template = self.env.ref(\"mgmtsystem_action.email_template_new_action_reminder\")\n        for action in self:\n            template.send_mail(action.id, force_send=force_send)\n        return True\n\n    def get_action_url(self):\n        \"\"\"Return action url to be used in email templates.\"\"\"\n        base_url = (\n            self.env[\"ir.config_parameter\"]\n            .sudo()\n            .get_param(\"web.base.url\", default=\"http://localhost:8069\")\n        )\n        url = f\"{base_url}/web#db={self.env.cr.dbname}&id={self.id}&model={self._name}\"\n        return url\n\n    @api.model\n    def process_reminder_queue(self, reminder_days=10):\n        \"\"\"Notify user when we are 10 days close to a deadline.\"\"\"\n        cur_date = datetime.now().date() + timedelta(days=reminder_days)\n        stage_close = self.env.ref(\"mgmtsystem_action.stage_close\")\n        actions = self.search(\n            [(\"stage_id\", \"!=\", stage_close.id), (\"date_deadline\", \"=\", cur_date)]\n        )\n        if actions:\n            template = self.env.ref(\n                \"mgmtsystem_action.action_email_template_reminder_action\"\n            )\n            for action in actions:\n                template.send_mail(action.id)\n            return True\n        return False\n\n    @api.model\n    def _get_stage_open(self):\n        return self.env.ref(\"mgmtsystem_action.stage_open\")\n\n    def case_open(self):\n        \"\"\"Opens case.\"\"\"\n        return self.write({\"active\": True, \"stage_id\": self._get_stage_open().id})\n"
  },
  {
    "path": "mgmtsystem_action/models/mgmtsystem_action_stage.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtSystemActionStage(models.Model):\n    _name = \"mgmtsystem.action.stage\"\n    _description = \"Action Stage\"\n    _order = \"sequence, id\"\n\n    name = fields.Char(\"Stage Name\", required=True, translate=True)\n    description = fields.Text(translate=True)\n    sequence = fields.Integer(default=100)\n    fold = fields.Boolean(\n        \"Folded in Kanban\",\n        help=\"This stage is folded in the kanban view when there are \"\n        \"no records in that stage to display.\",\n    )\n    is_starting = fields.Boolean(\"Starting stage\")\n    is_ending = fields.Boolean(\"Ending stage\")\n"
  },
  {
    "path": "mgmtsystem_action/models/mgmtsystem_action_tag.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemActionTag(models.Model):\n    _name = \"mgmtsystem.action.tag\"\n    _description = \"Action Tags\"\n\n    name = fields.Char(required=True)\n    color = fields.Integer(string=\"Color Index\", default=10)\n\n    _sql_constraints = [(\"name_uniq\", \"unique (name)\", \"Tag name already exists !\")]\n"
  },
  {
    "path": "mgmtsystem_action/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_action/readme/CONFIGURE.md",
    "content": "**Configure stages**\n\nGo to \"Management System -\\> Configuration -\\> Actions -\\> Stages\"\n\n**Configure tags**\n\nGo to \"Management System -\\> Configuration -\\> Actions -\\> Tags\"\n"
  },
  {
    "path": "mgmtsystem_action/readme/CONTRIBUTORS.md",
    "content": "- Savoir-faire Linux\n- Simone Orsi \\<<simone.orsi@camptocamp.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n\nTrobz\n\n- Dung Tran \\<<dungtd@trobz.com>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n\nTODO: many contribs to retrieve from history, we can open other PRs to\nupdate this list.\n"
  },
  {
    "path": "mgmtsystem_action/readme/CREDITS.md",
    "content": "The development of this module has been financially supported by:\n\n- Camptocamp\n"
  },
  {
    "path": "mgmtsystem_action/readme/DESCRIPTION.md",
    "content": "This module was written to manage Actions of your management system.\n"
  },
  {
    "path": "mgmtsystem_action/readme/INSTALL.md",
    "content": "- Go to \"Management System -\\> Configuration -\\> Settings\"\n- Under \"Applications\" enable \"Actions\" flag\n- Save\n"
  },
  {
    "path": "mgmtsystem_action/readme/USAGE.md",
    "content": "Go to \"Management System -\\> Management System -\\> Actions\" and create\nyour actions.\n"
  },
  {
    "path": "mgmtsystem_action/reports/__init__.py",
    "content": "from . import mgmtsystem_action_report\n"
  },
  {
    "path": "mgmtsystem_action/reports/mgmtsystem_action_report.py",
    "content": "from odoo import fields, models, tools\n\n\nclass MgmtsystemtActionReport(models.Model):\n    \"\"\"Management System Action Report.\"\"\"\n\n    _name = \"mgmtsystem.action.report\"\n    _auto = False\n    _description = \"Management System Action Report\"\n    _rec_name = \"id\"\n\n    # Compute data\n    number_of_actions = fields.Integer(\"# of actions\", readonly=True)\n    age = fields.Integer(readonly=True)\n    number_of_days_to_open = fields.Integer(\"# of days to open\", readonly=True)\n    number_of_days_to_close = fields.Integer(\"# of days to close\", readonly=True)\n    number_of_exceedings_days = fields.Integer(\"# of exceedings days\", readonly=True)\n\n    # Grouping view\n    type_action = fields.Selection(\n        [\n            (\"immediate\", \"Immediate Action\"),\n            (\"correction\", \"Corrective Action\"),\n            (\"prevention\", \"Preventive Action\"),\n            (\"improvement\", \"Improvement Opportunity\"),\n        ],\n        \"Response Type\",\n    )\n    create_date = fields.Datetime(readonly=True, index=True)\n    date_open = fields.Datetime(\"Opening Date\", readonly=True, index=True)\n    date_closed = fields.Datetime(\"Close Date\", readonly=True, index=True)\n    date_deadline = fields.Date(\"Deadline\", readonly=True, index=True)\n    user_id = fields.Many2one(\"res.users\", \"User\", readonly=True)\n    stage_id = fields.Many2one(\"mgmtsystem.action.stage\", \"Stage\", readonly=True)\n    system_id = fields.Many2one(\"mgmtsystem.system\", \"System\", readonly=True)\n\n    def _query(\n        self, with_clause=\"\", fields=\"\", where_clause=\"\", groupby=\"\", from_clause=\"\"\n    ):\n        with_ = f\"WITH {with_clause}\" if with_clause else \"\"\n\n        select_ = f\"\"\"\n                m.id,\n                m.date_closed as date_closed,\n                m.date_deadline as date_deadline,\n                m.date_open as date_open,\n                m.user_id,\n                m.stage_id,\n                m.system_id,\n                m.type_action as type_action,\n                m.create_date as create_date,\n                m.number_of_days_to_open as number_of_days_to_open,\n                m.number_of_days_to_close as number_of_days_to_close,\n                avg(extract('epoch' from (current_date-m.create_date))\n                )/(3600*24) as  age,\n                avg(extract('epoch' from (m.date_closed - m.date_deadline))\n                )/(3600*24) as  number_of_exceedings_days,\n                count(*) AS number_of_actions {fields}\"\"\"\n\n        from_ = f\"\"\"\n                mgmtsystem_action m\n                {from_clause}\"\"\"\n\n        where_ = f\"WHERE {where_clause}\" if where_clause else \"\"\n\n        groupby_ = f\"\"\"\n                    m.user_id,m.system_id, m.stage_id, m.date_open,\n                    m.create_date,m.type_action,m.date_deadline,\n                    m.date_closed, m.id, m.number_of_days_to_open,\n                    m.number_of_days_to_close {groupby}\n                \"\"\"\n\n        return f\"{with_} (SELECT {select_} FROM {from_} {where_} GROUP BY {groupby_})\"\n\n    def init(self):\n        \"\"\"Display a pivot view of action.\"\"\"\n        tools.drop_view_if_exists(self._cr, \"mgmtsystem_action_report\")\n        self.env.cr.execute(  # pylint: disable=E8103\n            f\"CREATE or REPLACE VIEW {self._table} as ({self._query()})\"\n        )\n"
  },
  {
    "path": "mgmtsystem_action/reports/mgmtsystem_action_report.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <!-- Management System Action Report Pivot View -->\n\n    <record id=\"view_report_mgmtsystem_action_pivot\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.action.report.pivot</field>\n        <field name=\"model\">mgmtsystem.action.report</field>\n        <field name=\"arch\" type=\"xml\">\n            <pivot string=\"Actions\" disable_linking=\"True\">\n                <field name=\"stage_id\" type=\"row\" />\n                <field name=\"user_id\" type=\"col\" />\n                <field name=\"number_of_actions\" type=\"measure\" />\n            </pivot>\n        </field>\n    </record>\n\n    <!-- Management System Action Report Graph View -->\n\n    <record id=\"view_report_mgmtsystem_action_graph\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.action.report.graph</field>\n        <field name=\"model\">mgmtsystem.action.report</field>\n        <field name=\"arch\" type=\"xml\">\n            <graph string=\"Actions\">\n                <field name=\"stage_id\" />\n                <field name=\"user_id\" />\n                <field name=\"number_of_actions\" type=\"measure\" />\n            </graph>\n        </field>\n    </record>\n\n    <!-- Management system Action Report Action -->\n\n    <record id=\"action_report_mgmtsystem_action\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Management System Analysis</field>\n        <field name=\"res_model\">mgmtsystem.action.report</field>\n        <field name=\"view_mode\">pivot,graph</field>\n        <field\n            name=\"help\"\n        >Have a general overview of all actions processed in the system by sorting them with specific criteria.</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_action_viewer\",\"mgmtsystem.action.user.viewer\",\"model_mgmtsystem_action\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_action_user\",\"mgmtsystem.action.user.user\",\"model_mgmtsystem_action\",\"mgmtsystem.group_mgmtsystem_user\",1,1,1,0\n\"access_mgmtsystem_action_auditor\",\"mgmtsystem.action.user.auditor\",\"model_mgmtsystem_action\",\"mgmtsystem.group_mgmtsystem_auditor\",1,0,0,0\n\"access_mgmtsystem_action_manager\",\"mgmtsystem.action.user.manager\",\"model_mgmtsystem_action\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,0\n\"access_mgmtsystem_action_stage_user\",\"access_mgmtsystem_action_stage_user\",\"model_mgmtsystem_action_stage\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_action_stage_manager\",\"access_mgmtsystem_action_stage_manager\",\"model_mgmtsystem_action_stage\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_action_tag_user\",\"access_mgmtsystem_action_tag_user\",\"model_mgmtsystem_action_tag\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_action_tag_manager\",\"access_mgmtsystem_action_tag_manager\",\"model_mgmtsystem_action_tag\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_action_report\",\"access_mgmtsystem_action_report\",\"model_mgmtsystem_action_report\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n"
  },
  {
    "path": "mgmtsystem_action/security/mgmtsystem_action_security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Rule -->\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_action_rule\">\n        <field name=\"name\">mgmtsystem_action multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_action\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/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=\"management-system-action\">\n<h1>Management System - Action</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:089b8779529aadb976fc0aa0aa615c8028d138f085e9e2979964ce98a6cb68dc\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/management-system/tree/18.0/mgmtsystem_action\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_action\"><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/management-system&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 was written to manage Actions of your management system.</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=\"#installation\" id=\"toc-entry-1\">Installation</a></li>\n<li><a class=\"reference internal\" href=\"#configuration\" id=\"toc-entry-2\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-3\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-8\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-9\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"installation\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Installation</a></h2>\n<ul class=\"simple\">\n<li>Go to “Management System -&gt; Configuration -&gt; Settings”</li>\n<li>Under “Applications” enable “Actions” flag</li>\n<li>Save</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<p><strong>Configure stages</strong></p>\n<p>Go to “Management System -&gt; Configuration -&gt; Actions -&gt; Stages”</p>\n<p><strong>Configure tags</strong></p>\n<p>Go to “Management System -&gt; Configuration -&gt; Actions -&gt; Tags”</p>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Usage</a></h2>\n<p>Go to “Management System -&gt; Management System -&gt; Actions” and create\nyour actions.</p>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_action%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-5\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n<li>Camptocamp</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n<li>Simone Orsi &lt;<a class=\"reference external\" href=\"mailto:simone.orsi&#64;camptocamp.com\">simone.orsi&#64;camptocamp.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n</ul>\n<p>Trobz</p>\n<ul class=\"simple\">\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n<p>TODO: many contribs to retrieve from history, we can open other PRs to\nupdate this list.</p>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-8\">Other credits</a></h3>\n<p>The development of this module has been financially supported by:</p>\n<ul class=\"simple\">\n<li>Camptocamp</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-9\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action\">OCA/management-system</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": "mgmtsystem_action/tests/__init__.py",
    "content": "from . import test_create_action\n"
  },
  {
    "path": "mgmtsystem_action/tests/test_create_action.py",
    "content": "import time\nfrom datetime import datetime, timedelta\nfrom unittest import mock\n\nfrom odoo import exceptions\nfrom odoo.tests import common\n\n\ndef freeze_time(dt):\n    mock_time = mock.Mock()\n    mock_time.return_value = time.mktime(dt.timetuple())\n    return mock_time\n\n\nclass TestModelAction(common.TransactionCase):\n    \"\"\"Test class for mgmtsystem_action.\"\"\"\n\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        # disable tracking test suite wise\n        cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))\n        cls.record = cls.env[\"mgmtsystem.action\"].create(\n            {\"name\": \"SampleAction\", \"type_action\": \"immediate\"}\n        )\n\n    def _assert_date_equal(self, val, expected=None):\n        expected = expected or datetime.now()\n        self.assertEqual(tuple(val.timetuple())[:5], tuple(expected.timetuple())[:5])\n\n    def test_create_action(self):\n        \"\"\"Test object creation.\"\"\"\n        stage = self.env.ref(\"mgmtsystem_action.stage_open\")\n        self.assertEqual(self.record.name, \"SampleAction\")\n        self.assertNotEqual(self.record.reference, \"NEW\")\n        self.assertEqual(self.record.type_action, \"immediate\")\n        self.assertEqual(self.record.stage_id.name, \"Draft\")\n        self.assertEqual(self.record.stage_id.is_starting, True)\n        self.assertFalse(self.record.date_open)\n        self.record.stage_id = stage\n        self._assert_date_equal(self.record.date_open)\n        new_record = self.env[\"mgmtsystem.action\"].create(\n            {\n                \"reference\": \"SampleReference\",\n                \"name\": \"SampleAction\",\n                \"type_action\": \"immediate\",\n            }\n        )\n        self.assertEqual(new_record.reference, self.env._(\"SampleReference\"))\n        self.assertEqual(self.record.color, 1)\n\n    def test_case_close(self):\n        \"\"\"Test object close state.\"\"\"\n        stage = self.env.ref(\"mgmtsystem_action.stage_open\")\n        stage_new = self.env.ref(\"mgmtsystem_action.stage_draft\")\n        self.record.stage_id = stage\n        stage = self.env.ref(\"mgmtsystem_action.stage_close\")\n        self.record.stage_id = stage\n        self._assert_date_equal(self.record.date_closed)\n        try:\n            self.record.write({\"stage_id\": stage_new.id})\n        except exceptions.ValidationError:\n            self.assertTrue(True)\n        stage = self.env.ref(\"mgmtsystem_action.stage_close\")\n        self.record.write({\"stage_id\": stage.id})\n        self.assertTrue(self.record.number_of_days_to_close <= 0)\n\n    def test_get_action_url(self):\n        \"\"\"Test if action url start with http.\"\"\"\n        url = self.record.get_action_url()\n        self.assertEqual(url.startswith(\"http\"), True)\n        self.assertIn(f\"&id={self.record.id}&model={self.record._name}\", url)\n\n    def test_process_reminder_queue(self):\n        \"\"\"Check if process_reminder_queue work when days reminder are 10.\"\"\"\n        ten_days_date = datetime.now().date() + timedelta(days=10)\n        self.record.write(\n            {\n                \"date_deadline\": ten_days_date,  # 10 days from now\n                \"stage_id\": self.env.ref(\"mgmtsystem_action.stage_open\").id,\n            }\n        )\n        with mock.patch(\"time.time\", freeze_time(ten_days_date)):\n            tmpl_model = self.env[\"mail.template\"]\n            with mock.patch.object(type(tmpl_model), \"send_mail\") as mocked:\n                self.env[\"mgmtsystem.action\"].process_reminder_queue()\n                mocked.assert_called_with(self.record.id)\n                self.env[\"mgmtsystem.action\"].process_reminder_queue(-100)\n                mocked.assert_called_with(self.record.id)\n\n    def test_stage_groups(self):\n        \"\"\"Check if stage_groups return all stages.\"\"\"\n        stage_ids = self.env[\"mgmtsystem.action.stage\"].search([])\n        stages_found = self.record._stage_groups(stage_ids)\n        state = len(stage_ids) == len(stages_found[0])\n        self.assertFalse(state)\n\n    def test_send_mail(self):\n        \"\"\"Check if mail send action work.\"\"\"\n        tmpl_model = self.env[\"mail.template\"]\n        with mock.patch.object(type(tmpl_model), \"send_mail\") as mocked:\n            self.record.send_mail_for_action()\n            mocked.assert_called_with(self.record.id, force_send=True)\n\n    def test_case_open(self):\n        \"\"\"Check if case_open work.\"\"\"\n        stage_open = self.env.ref(\"mgmtsystem_action.stage_open\")\n        self.record.case_open()\n        self.assertEqual(self.record.active, True)\n        self.assertEqual(self.record.stage_id, stage_open)\n"
  },
  {
    "path": "mgmtsystem_action/views/menus.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <menuitem\n        name=\"Actions\"\n        id=\"menu_config_action\"\n        parent=\"mgmtsystem.menu_mgmtsystem_configuration\"\n        sequence=\"20\"\n    />\n\n    <menuitem\n        name=\"Actions\"\n        id=\"menu_report_mgmtsystem_action_tree\"\n        action=\"action_report_mgmtsystem_action\"\n        parent=\"mgmtsystem.menu_mgmtsystem_report\"\n        sequence=\"15\"\n    />\n\n    <menuitem\n        id=\"menu_open_action\"\n        action=\"open_mgmtsystem_action_list\"\n        parent=\"mgmtsystem.menu_mgmtsystem_main\"\n        sequence=\"30\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor,base.group_user\"\n    />\n\n    <menuitem\n        id=\"menu_mgmtsystem_action_stages\"\n        name=\"Stages\"\n        parent=\"menu_config_action\"\n        action=\"mgmtsystem_action_stage_action\"\n        sequence=\"90\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor,base.group_user\"\n    />\n\n    <menuitem\n        id=\"menu_mgmtsystem_action_tags\"\n        action=\"mgmtsystem_action_tag_action\"\n        parent=\"menu_config_action\"\n        sequence=\"100\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor,base.group_user\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/views/mgmtsystem_action.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_action_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.action.list</field>\n        <field name=\"model\">mgmtsystem.action</field>\n        <field name=\"type\">list</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"reference\" />\n                <field name=\"name\" />\n                <field name=\"type_action\" />\n                <field name=\"user_id\" />\n                <field name=\"date_deadline\" />\n                <field name=\"stage_id\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_action_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.action.filter</field>\n        <field name=\"model\">mgmtsystem.action</field>\n        <field name=\"type\">search</field>\n        <field name=\"arch\" type=\"xml\">\n            <!-- TODO: validation broken somehow -->\n            <search string=\"Action\">\n                <field name=\"name\" />\n                <field name=\"reference\" />\n                <field name=\"tag_ids\" />\n                <field name=\"create_date\" />\n                <field name=\"user_id\" />\n                <field name=\"system_id\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <newline />\n                <filter\n                    name=\"pending\"\n                    string=\"Pending\"\n                    domain=\"[('stage_id.is_ending', '=', False)]\"\n                />\n                <separator />\n                <filter\n                    name=\"my_actions\"\n                    string=\"My Actions\"\n                    domain=\"[('user_id','=',uid)]\"\n                />\n                <filter\n                    name=\"my_followed_actions\"\n                    string=\"My Followed Actions\"\n                    domain=\"[('message_is_follower', '=', True)]\"\n                />\n                <separator />\n                <filter\n                    name=\"message_needaction\"\n                    string=\"Unread Messages\"\n                    domain=\"[('message_needaction','=',True)]\"\n                />\n                <filter\n                    name=\"inactive\"\n                    string=\"Archived\"\n                    domain=\"[('active','=',False)]\"\n                />\n                <separator />\n                <filter\n                    name=\"activities_my\"\n                    string=\"My Activities\"\n                    domain=\"[('activity_ids.user_id', '=', uid)]\"\n                />\n                <separator />\n                <filter\n                    name=\"activities_overdue\"\n                    string=\"Late Activities\"\n                    domain=\"[('activity_ids.date_deadline', '&lt;', context_today().strftime('%Y-%m-%d'))]\"\n                    help=\"Show all records which has next action date is before today\"\n                />\n                <filter\n                    name=\"activities_today\"\n                    string=\"Today Activities\"\n                    domain=\"[('activity_ids.date_deadline', '=', context_today().strftime('%Y-%m-%d'))]\"\n                />\n                <filter\n                    name=\"activities_upcoming_all\"\n                    string=\"Future Activities\"\n                    domain=\"[('activity_ids.date_deadline', '&gt;', context_today().strftime('%Y-%m-%d'))]\"\n                />\n                <group expand=\"0\" string=\"Group By\">\n                    <filter\n                        name=\"group_by_user\"\n                        string=\"User\"\n                        context=\"{'group_by':'user_id'}\"\n                    />\n                    <filter\n                        name=\"group_by_type\"\n                        string=\"Type\"\n                        context=\"{'group_by':'type_action'}\"\n                    />\n                    <filter\n                        name=\"group_by_state\"\n                        string=\"Stage\"\n                        context=\"{'group_by':'stage_id'}\"\n                    />\n                    <filter\n                        name=\"group_by_company\"\n                        string=\"Company\"\n                        context=\"{'group_by':'company_id'}\"\n                        groups=\"base.group_multi_company\"\n                    />\n                </group>\n            </search>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_action_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.action.form</field>\n        <field name=\"model\">mgmtsystem.action</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Action\">\n                <header>\n                    <field\n                        name=\"stage_id\"\n                        widget=\"statusbar\"\n                        options=\"{'clickable': 1}\"\n                    />\n                </header>\n                <sheet string=\"Action\">\n                    <div class=\"oe_title\" modifiers=\"{}\">\n                        <h1 class=\"o_row\" modifiers=\"{}\">\n                            <div class=\"d-flex\">\n                                <field name=\"priority\" widget=\"priority\" />\n                                <field\n                                    name=\"name\"\n                                    placeholder=\"Action title...\"\n                                    required=\"1\"\n                                />\n                            </div>\n                        </h1>\n                    </div>\n                    <group name=\"main\">\n                        <group name=\"config\">\n                            <field name=\"type_action\" />\n                            <field name=\"user_id\" />\n                            <field name=\"date_deadline\" />\n                        </group>\n                        <group name=\"meta\">\n                            <field name=\"reference\" />\n                            <field\n                                name=\"tag_ids\"\n                                widget=\"many2many_tags\"\n                                options=\"{'color_field': 'color', 'no_create_edit': True}\"\n                            />\n                        </group>\n                    </group>\n                    <notebook>\n                        <page name=\"desc\" string=\"Description\">\n                            <field name=\"description\" nolabel=\"1\" />\n                        </page>\n                        <page name=\"extra\" string=\"Extra Information\">\n                            <group name=\"main_extra\">\n                                <group name=\"extra\">\n                                    <field name=\"sequence\" />\n                                    <field name=\"system_id\" />\n                                    <field\n                                        name=\"company_id\"\n                                        groups=\"base.group_multi_company\"\n                                    />\n                                </group>\n                                <group name=\"dates\">\n                                    <field name=\"create_date\" />\n                                    <field\n                                        name=\"date_open\"\n                                        invisible=\"date_open == False\"\n                                    />\n                                    <field\n                                        name=\"date_closed\"\n                                        invisible=\"date_closed == False\"\n                                    />\n                                </group>\n                            </group>\n                        </page>\n                    </notebook>\n                </sheet>\n                <chatter />\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_action_kanban\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.action.kanban</field>\n        <field name=\"model\">mgmtsystem.action</field>\n        <field name=\"arch\" type=\"xml\">\n            <kanban\n                highlight_color=\"color\"\n                default_group_by=\"stage_id\"\n                default_order=\"sequence,name desc\"\n                records_draggable=\"True\"\n            >\n                <field name=\"message_needaction_counter\" />\n                <templates>\n                    <t t-name=\"menu\" groups=\"base.group_user\">\n                        <t t-if=\"widget.editable\">\n                            <a\n                                role=\"menuitem\"\n                                type=\"edit\"\n                                class=\"dropdown-item\"\n                            >Edit</a>\n                        </t>\n                        <t t-if=\"widget.deletable\">\n                            <a\n                                role=\"menuitem\"\n                                type=\"delete\"\n                                class=\"dropdown-item\"\n                            >Delete</a>\n                        </t>\n                    </t>\n                    <t t-name=\"card\">\n                        <field class=\"fw-bold fs-5\" name=\"name\" />\n                        <div class=\"d-flex\">\n                            <span\n                                class=\"flex-shrink-0 me-1\"\n                            >[                                <field name=\"reference\" />\n]</span>\n                            <field\n                                name=\"tag_ids\"\n                                widget=\"many2many_tags\"\n                                options=\"{'color_field': 'color'}\"\n                            />\n                        </div>\n                        <field\n                            name=\"system_id\"\n                            class=\"text-muted text-truncate\"\n                            invisible=\"context.get('default_system_id', False)\"\n                        />\n\n                        <footer class=\"pt-1\">\n                            <div class=\"d-flex mt-auto align-items-center\">\n                                <field\n                                    name=\"priority\"\n                                    widget=\"priority\"\n                                    groups=\"base.group_user\"\n                                    class=\"me-2\"\n                                />\n                                <field name=\"activity_ids\" widget=\"kanban_activity\" />\n                                <t t-if=\"record.message_needaction_counter.raw_value\">\n                                    <span\n                                        class=\"oe_kanban_mail_new\"\n                                        title=\"Unread Messages\"\n                                    >\n                                        <i class=\"fa fa-comments\" />\n                                        <t\n                                            t-out=\"record.message_needaction_counter.raw_value\"\n                                        />\n                                    </span>\n                                </t>\n                            </div>\n                            <field\n                                name=\"date_deadline\"\n                                widget=\"remaining_days\"\n                                class=\"ms-auto\"\n                            />\n                            <field\n                                name=\"user_id\"\n                                widget=\"many2one_avatar_user\"\n                                domain=\"[('share', '=', False)]\"\n                                class=\"ms-auto\"\n                            />\n                        </footer>\n                    </t>\n                </templates>\n            </kanban>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_action_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Actions</field>\n        <field name=\"res_model\">mgmtsystem.action</field>\n        <field name=\"view_mode\">kanban,list,form</field>\n        <field name=\"context\">{\"search_default_my_actions\": 1}</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/views/mgmtsystem_action_stage.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_action_stage_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.action.stage.form</field>\n        <field name=\"model\">mgmtsystem.action.stage</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Task Stage\">\n                <sheet>\n                    <group name=\"main\">\n                        <group name=\"name\">\n                            <field name=\"name\" />\n                        </group>\n                        <group name=\"config\">\n                            <field name=\"is_starting\" />\n                            <field name=\"is_ending\" />\n                            <field name=\"fold\" />\n                            <field name=\"sequence\" groups=\"base.group_no_one\" />\n                        </group>\n                    </group>\n                    <group name=\"desc\">\n                        <field\n                            name=\"description\"\n                            placeholder=\"Add a description...\"\n                            nolabel=\"1\"\n                            colspan=\"2\"\n                        />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_action_stage_tree_view\">\n        <field name=\"name\">Management System action Stage Tree</field>\n        <field name=\"model\">mgmtsystem.action.stage</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"sequence\" widget=\"handle\" />\n                <field name=\"name\" />\n                <field name=\"is_starting\" />\n                <field name=\"is_ending\" />\n                <field name=\"fold\" />\n            </list>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"mgmtsystem_action_stage_action\">\n        <field name=\"name\">Stages</field>\n        <field name=\"res_model\">mgmtsystem.action.stage</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"context\">{}</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action/views/mgmtsystem_action_tag.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record model=\"ir.ui.view\" id=\"project_tags_search_view\">\n        <field name=\"name\">Tags</field>\n        <field name=\"model\">mgmtsystem.action.tag</field>\n        <field name=\"arch\" type=\"xml\">\n            <search>\n                <field name=\"name\" />\n            </search>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"project_tags_form_view\">\n        <field name=\"name\">Tags</field>\n        <field name=\"model\">mgmtsystem.action.tag</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Tags\">\n                <group name=\"main\">\n                    <field name=\"name\" />\n                </group>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"project_tags_action\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Tags</field>\n        <field name=\"res_model\">mgmtsystem.action.tag</field>\n        <field name=\"help\" type=\"html\">\n            <p class=\"oe_view_nocontent_create\">\n            Click to add a new tag.\n          </p>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"mgmtsystem_action_tag_action\">\n        <field name=\"name\">Tags</field>\n        <field name=\"res_model\">mgmtsystem.action.tag</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"context\">{}</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/README.rst",
    "content": "===================================\nManagement System - Action Efficacy\n===================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:c8fff88e482adbd24537c4d3787a118c798a375b89b2f7da7ec2abdb517e111a\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action_efficacy\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_action_efficacy\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module add efficacy information for Management System Actions.\n\nAction\n\n- new tab in the Action form view to evaluate the efficacy of the\n  action. Changes are tracked.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nAction Efficacy\n\n- Go to Management System → Actions\n- Create new Action\n- Store data on Efficacy tab\n\nChangelog\n=========\n\n12.0.1.0.0 (2020-07-01)\n-----------------------\n\n- [INI] Initial development\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_action_efficacy%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* Associazione PNLUG - Gruppo Odoo\n\nContributors\n------------\n\n- Marcelo Frare <mf2965@gmail.com>\n- Stefano Consolaro <stefano.consolaro@mymage.it>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action_efficacy>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/__manifest__.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)\n\n{\n    \"name\": \"Management System - Action Efficacy\",\n    \"summary\": \"Add information on the application of the Action.\",\n    \"version\": \"18.0.1.0.0\",\n    \"development_status\": \"Beta\",\n    \"author\": \"Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem_action\"],\n    \"data\": [\"views/mgmtsystem_action_views.xml\"],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_action_efficacy\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 14:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: mgmtsystem_action_efficacy\n#: model:ir.model.fields,help:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_value\nmsgid \"0:not effective | 50:efficacy not complete | 100: effective\"\nmsgstr \"0:no eficaz | 50:eficacia no completa | 100: eficaz\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model,name:mgmtsystem_action_efficacy.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Acción\"\n\n#. module: mgmtsystem_action_efficacy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_efficacy.view_mgmtsystem_action_form\nmsgid \"Efficacy\"\nmsgstr \"Eficacia\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_user_id\nmsgid \"Inspector\"\nmsgstr \"el inspector/a\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_description\nmsgid \"Notes\"\nmsgstr \"Notas\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_value\nmsgid \"Rating\"\nmsgstr \"valoración\"\n\n#. module: mgmtsystem_action_efficacy\n#. odoo-python\n#: code:addons/mgmtsystem_action_efficacy/models/mgmtsystem_action.py:0\n#: code:addons/mgmtsystem_action_efficacy/tests/test_efficacy.py:0\nmsgid \"Rating must be between 0 and 100\"\nmsgstr \"La puntuación debe estar comprendida entre 0 y 100\"\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_action_efficacy\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-05-29 15:34+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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: mgmtsystem_action_efficacy\n#: model:ir.model.fields,help:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_value\nmsgid \"0:not effective | 50:efficacy not complete | 100: effective\"\nmsgstr \"0: ناکارآمد/50: نیمه کارآمد/100: کارآمد\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model,name:mgmtsystem_action_efficacy.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"اقدام\"\n\n#. module: mgmtsystem_action_efficacy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_efficacy.view_mgmtsystem_action_form\nmsgid \"Efficacy\"\nmsgstr \"کارآمدی\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_user_id\nmsgid \"Inspector\"\nmsgstr \"بازرس\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_description\nmsgid \"Notes\"\nmsgstr \"یادداشت‌ها\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_value\nmsgid \"Rating\"\nmsgstr \"رتبه‌بندی\"\n\n#. module: mgmtsystem_action_efficacy\n#. odoo-python\n#: code:addons/mgmtsystem_action_efficacy/models/mgmtsystem_action.py:0\n#: code:addons/mgmtsystem_action_efficacy/tests/test_efficacy.py:0\nmsgid \"Rating must be between 0 and 100\"\nmsgstr \"رتبه‌بندی باید بین 0 و 100 باشد\"\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_action_efficacy\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 12.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-01-26 09:11+0000\\n\"\n\"PO-Revision-Date: 2022-11-15 17:44+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: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 4.14.1\\n\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,help:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_value\nmsgid \"0:not effective | 50:efficacy not complete | 100: effective\"\nmsgstr \"0: non efficace | 50: efficacia non completa | 100: efficace\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model,name:mgmtsystem_action_efficacy.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Azione\"\n\n#. module: mgmtsystem_action_efficacy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_efficacy.view_mgmtsystem_action_form\nmsgid \"Efficacy\"\nmsgstr \"Efficace\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_user_id\nmsgid \"Inspector\"\nmsgstr \"Ispettore\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_description\nmsgid \"Notes\"\nmsgstr \"Note\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_value\nmsgid \"Rating\"\nmsgstr \"Valutazione\"\n\n#. module: mgmtsystem_action_efficacy\n#. odoo-python\n#: code:addons/mgmtsystem_action_efficacy/models/mgmtsystem_action.py:0\n#: code:addons/mgmtsystem_action_efficacy/tests/test_efficacy.py:0\nmsgid \"Rating must be between 0 and 100\"\nmsgstr \"La valutazione deve essere tra 0 e 100\"\n\n#~ msgid \"Display Name\"\n#~ msgstr \"Nome visualizzato\"\n\n#~ msgid \"ID\"\n#~ msgstr \"ID\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/i18n/mgmtsystem_action_efficacy.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_action_efficacy\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: mgmtsystem_action_efficacy\n#: model:ir.model.fields,help:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_value\nmsgid \"0:not effective | 50:efficacy not complete | 100: effective\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model,name:mgmtsystem_action_efficacy.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_efficacy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_efficacy.view_mgmtsystem_action_form\nmsgid \"Efficacy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_user_id\nmsgid \"Inspector\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_description\nmsgid \"Notes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_efficacy\n#: model:ir.model.fields,field_description:mgmtsystem_action_efficacy.field_mgmtsystem_action__efficacy_value\nmsgid \"Rating\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_efficacy\n#. odoo-python\n#: code:addons/mgmtsystem_action_efficacy/models/mgmtsystem_action.py:0\n#: code:addons/mgmtsystem_action_efficacy/tests/test_efficacy.py:0\nmsgid \"Rating must be between 0 and 100\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/models/__init__.py",
    "content": "from . import mgmtsystem_action\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/models/mgmtsystem_action.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import _, api, fields, models\nfrom odoo.exceptions import ValidationError\n\n\nclass MgmtsystemAction(models.Model):\n    \"\"\"\n    Extend actions adding fields for record efficacy informations with changes tracking\n    \"\"\"\n\n    _inherit = \"mgmtsystem.action\"\n\n    # new fileds\n    # value of efficacy\n    efficacy_value = fields.Integer(\n        \"Rating\",\n        help=\"0:not effective | 50:efficacy not complete | 100: effective\",\n        tracking=True,\n    )\n    # user in charge of evaluation\n    efficacy_user_id = fields.Many2one(\n        \"res.users\",\n        \"Inspector\",\n        tracking=True,\n    )\n    # notes on the efficacy\n    efficacy_description = fields.Text(\"Notes\")\n\n    @api.onchange(\"efficacy_value\")\n    def _onchange_efficacy_value(self):\n        if self.efficacy_value < 0 or self.efficacy_value > 100:\n            raise ValidationError(_(\"Rating must be between 0 and 100\"))\n        return\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/readme/CONTRIBUTORS.md",
    "content": "- Marcelo Frare \\<<mf2965@gmail.com>\\>\n- Stefano Consolaro \\<<stefano.consolaro@mymage.it>\\>\n- [Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/readme/DESCRIPTION.md",
    "content": "This module add efficacy information for Management System Actions.\n\nAction\n\n- new tab in the Action form view to evaluate the efficacy of the\n  action. Changes are tracked.\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/readme/HISTORY.md",
    "content": "## 12.0.1.0.0 (2020-07-01)\n\n- \\[INI\\] Initial development\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/readme/USAGE.md",
    "content": "Action Efficacy\n\n- Go to Management System → Actions\n- Create new Action\n- Store data on Efficacy tab\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/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>Management System - Action Efficacy</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=\"management-system-action-efficacy\">\n<h1 class=\"title\">Management System - Action Efficacy</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:c8fff88e482adbd24537c4d3787a118c798a375b89b2f7da7ec2abdb517e111a\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/management-system/tree/18.0/mgmtsystem_action_efficacy\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_action_efficacy\"><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/management-system&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 add efficacy information for Management System Actions.</p>\n<p>Action</p>\n<ul class=\"simple\">\n<li>new tab in the Action form view to evaluate the efficacy of the\naction. Changes are tracked.</li>\n</ul>\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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#changelog\" id=\"toc-entry-2\">Changelog</a><ul>\n<li><a class=\"reference internal\" href=\"#section-1\" id=\"toc-entry-3\">12.0.1.0.0 (2020-07-01)</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>Action Efficacy</p>\n<ul class=\"simple\">\n<li>Go to Management System → Actions</li>\n<li>Create new Action</li>\n<li>Store data on Efficacy tab</li>\n</ul>\n</div>\n<div class=\"section\" id=\"changelog\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Changelog</a></h1>\n<div class=\"section\" id=\"section-1\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">12.0.1.0.0 (2020-07-01)</a></h2>\n<ul class=\"simple\">\n<li>[INI] Initial development</li>\n</ul>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_action_efficacy%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-5\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Associazione PNLUG - Gruppo Odoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Marcelo Frare &lt;<a class=\"reference external\" href=\"mailto:mf2965&#64;gmail.com\">mf2965&#64;gmail.com</a>&gt;</li>\n<li>Stefano Consolaro &lt;<a class=\"reference external\" href=\"mailto:stefano.consolaro&#64;mymage.it\">stefano.consolaro&#64;mymage.it</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-8\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action_efficacy\">OCA/management-system</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": "mgmtsystem_action_efficacy/tests/__init__.py",
    "content": "# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import test_efficacy\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/tests/test_efficacy.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import _\nfrom odoo.exceptions import ValidationError\nfrom odoo.tests import common\n\n\nclass TestActionEfficacy(common.TransactionCase):\n    def test_change_efficacy(self):\n        record = self.env[\"mgmtsystem.action\"].search([])[0]\n\n        record.efficacy_value = 50\n        record._onchange_efficacy_value()\n        self.assertEqual(50, record.efficacy_value)\n\n        with self.assertRaises(ValidationError) as e:\n            record.efficacy_value = 200\n            record._onchange_efficacy_value()\n\n        self.assertIn(_(\"Rating must be between 0 and 100\"), str(e.exception))\n"
  },
  {
    "path": "mgmtsystem_action_efficacy/views/mgmtsystem_action_views.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2019 Marcelo Frare (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     Copyright 2019 Stefano Consolaro (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) -->\n<odoo>\n    <!-- inherit action form view\n            adding printable management, a new tab for efficacy -->\n    <record id=\"view_mgmtsystem_action_form\" model=\"ir.ui.view\">\n        <field name=\"name\">view.mgmtsystem.action</field>\n        <field name=\"model\">mgmtsystem.action</field>\n        <field name=\"inherit_id\" ref=\"mgmtsystem_action.view_mgmtsystem_action_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <notebook position=\"inside\">\n                <page string=\"Efficacy\">\n                    <group>\n                        <field name=\"efficacy_value\" />\n                        <field name=\"efficacy_user_id\" />\n                        <field name=\"efficacy_description\" />\n                    </group>\n                </page>\n            </notebook>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action_template/README.rst",
    "content": "===================================\nManagement System - Action Template\n===================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:dbde64546bab45d10c37b19fc463b18334f5b4ce241b6ce3d339da725fbcf373\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action_template\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_action_template\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module add management of template for Actions.\n\n- new Action Template model to set default values\n- new field to select an Action Template to fill predefined fields\n  automatically\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nAction Template - Define\n\n- Go to Management System → Configuration → Action Templates\n- Create a new Template\n- Fill fields with predefined values\n\nAction Template - Use\n\n- Go to Management System → Actions\n- Create new Action\n- Select Reference Template: the fields Title (name), Type, Responsible,\n  Tags and Description are filled with Template values\n- Procede with Action completion\n\nChangelog\n=========\n\n13.0.1.0.0 (2022-01-01)\n-----------------------\n\n- [INI] Migration to 13.0\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_action_template%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* Associazione PNLUG - Gruppo Odoo\n\nContributors\n------------\n\n- Marcelo Frare <mf2965@gmail.com>\n- Stefano Consolaro <stefano.consolaro@mymage.it>\n- Creu Blanca\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action_template>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_action_template/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_action_template/__manifest__.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n\n{\n    \"name\": \"Management System - Action Template\",\n    \"summary\": \"Add Template management for Actions.\",\n    \"version\": \"18.0.1.0.0\",\n    \"author\": \"Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem_action\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"views/mgmtsystem_action_template.xml\",\n        \"views/mgmtsystem_action_views.xml\",\n    ],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_action_template/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_action_template\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 14:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: mgmtsystem_action_template\n#: model:ir.model,name:mgmtsystem_action_template.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Acción\"\n\n#. module: mgmtsystem_action_template\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Action Template\"\nmsgstr \"Plantilla de acción\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.ui.menu,name:mgmtsystem_action_template.mgmtsystem_action_template_menu\nmsgid \"Action Templates\"\nmsgstr \"Plantillas de acción\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__create_uid\nmsgid \"Created by\"\nmsgstr \"creado por\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model,name:mgmtsystem_action_template.model_mgmtsystem_action_template\nmsgid \"Define fields to save action template values\"\nmsgstr \"Definir campos para guardar valores de plantillas de acciones\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Description\"\nmsgstr \"descripción\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__display_name\nmsgid \"Display Name\"\nmsgstr \"nombre para mostrar\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,help:mgmtsystem_action_template.field_mgmtsystem_action__template_id\nmsgid \"Fill Action's fields with Template's values\"\nmsgstr \"Rellenar los campos de la acción con los valores de la plantilla\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__id\nmsgid \"ID\"\nmsgstr \"ID(identificador)\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"actualizado por última vez por\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__write_date\nmsgid \"Last Updated on\"\nmsgstr \"actualizado por última vez el\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.actions.act_window,name:mgmtsystem_action_template.mgmtsystem_action_template_act_window\nmsgid \"Mgmtsystem Action Template\"\nmsgstr \"Plantilla de acción del sistema de gestión\"\n\n#. module: mgmtsystem_action_template\n#. odoo-python\n#: code:addons/mgmtsystem_action_template/models/mgmtsystem_action.py:0\n#: code:addons/mgmtsystem_action_template/tests/test_action_template.py:0\nmsgid \"NEW\"\nmsgstr \"NUEVO\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action__template_id\nmsgid \"Reference Template\"\nmsgstr \"Plantilla de referencia\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__type_action\nmsgid \"Response Type\"\nmsgstr \"Tipo de respuesta\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__user_id\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__tag_ids\nmsgid \"Tags\"\nmsgstr \"Etiquetas\"\n\n#. module: mgmtsystem_action_template\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Template title...\"\nmsgstr \"Título de la plantilla...\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificado por última vez el\"\n"
  },
  {
    "path": "mgmtsystem_action_template/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_action_template\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 13.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-12-06 12:11+0000\\n\"\n\"PO-Revision-Date: 2022-12-18 17:44+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: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 4.14.1\\n\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model,name:mgmtsystem_action_template.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Azione\"\n\n#. module: mgmtsystem_action_template\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Action Template\"\nmsgstr \"Modello azione\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.ui.menu,name:mgmtsystem_action_template.mgmtsystem_action_template_menu\nmsgid \"Action Templates\"\nmsgstr \"Modelli azione\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model,name:mgmtsystem_action_template.model_mgmtsystem_action_template\nmsgid \"Define fields to save action template values\"\nmsgstr \"Definisce i campi per salvare i valori dei modello dell'azione\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Description\"\nmsgstr \"Descrizione\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,help:mgmtsystem_action_template.field_mgmtsystem_action__template_id\nmsgid \"Fill Action's fields with Template's values\"\nmsgstr \"Compilare i campi dell'azione con i valori del modello\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.actions.act_window,name:mgmtsystem_action_template.mgmtsystem_action_template_act_window\nmsgid \"Mgmtsystem Action Template\"\nmsgstr \"Modello azione sistema di gestione\"\n\n#. module: mgmtsystem_action_template\n#. odoo-python\n#: code:addons/mgmtsystem_action_template/models/mgmtsystem_action.py:0\n#: code:addons/mgmtsystem_action_template/tests/test_action_template.py:0\nmsgid \"NEW\"\nmsgstr \"NUOVA\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action__template_id\nmsgid \"Reference Template\"\nmsgstr \"Modello di riferimento\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__type_action\nmsgid \"Response Type\"\nmsgstr \"Tipo risposta\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__user_id\nmsgid \"Responsible\"\nmsgstr \"Responsabile\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__tag_ids\nmsgid \"Tags\"\nmsgstr \"Etichette\"\n\n#. module: mgmtsystem_action_template\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Template title...\"\nmsgstr \"Nome modello...\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n\n#~ msgid \"Is not a Template\"\n#~ msgstr \"Non è un modello\"\n\n#~ msgid \"\"\n#~ \"Set Action as Template to create simlilar one. Type, Responsible, Tags \"\n#~ \"and Title are used.\"\n#~ msgstr \"\"\n#~ \"Imposta l'azione come modello per crearne di simili. Tipo, responsabile, \"\n#~ \"etichette e titolo verranno copiati.\"\n"
  },
  {
    "path": "mgmtsystem_action_template/i18n/mgmtsystem_action_template.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_action_template\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: mgmtsystem_action_template\n#: model:ir.model,name:mgmtsystem_action_template.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Action Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.ui.menu,name:mgmtsystem_action_template.mgmtsystem_action_template_menu\nmsgid \"Action Templates\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model,name:mgmtsystem_action_template.model_mgmtsystem_action_template\nmsgid \"Define fields to save action template values\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,help:mgmtsystem_action_template.field_mgmtsystem_action__template_id\nmsgid \"Fill Action's fields with Template's values\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.actions.act_window,name:mgmtsystem_action_template.mgmtsystem_action_template_act_window\nmsgid \"Mgmtsystem Action Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#. odoo-python\n#: code:addons/mgmtsystem_action_template/models/mgmtsystem_action.py:0\n#: code:addons/mgmtsystem_action_template/tests/test_action_template.py:0\nmsgid \"NEW\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action__template_id\nmsgid \"Reference Template\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__type_action\nmsgid \"Response Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model:ir.model.fields,field_description:mgmtsystem_action_template.field_mgmtsystem_action_template__tag_ids\nmsgid \"Tags\"\nmsgstr \"\"\n\n#. module: mgmtsystem_action_template\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_action_template.mgmtsystem_action_template_form_view\nmsgid \"Template title...\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_action_template/models/__init__.py",
    "content": "from . import mgmtsystem_action_template\nfrom . import mgmtsystem_action\n"
  },
  {
    "path": "mgmtsystem_action_template/models/mgmtsystem_action.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2020 Creu Blanca\n\nfrom odoo import _, api, fields, models\n\n\nclass MgmtsystemAction(models.Model):\n    \"\"\"\n    Extend actions adding template reference\n    \"\"\"\n\n    _inherit = \"mgmtsystem.action\"\n\n    # template reference\n    template_id = fields.Many2one(\n        \"mgmtsystem.action.template\",\n        \"Reference Template\",\n        help=\"Fill Action's fields with Template's values\",\n    )\n\n    @api.onchange(\"template_id\")\n    def _onchange_template_id(self):\n        \"\"\"\n        Fill some fields with template ones\n        \"\"\"\n\n        if self.template_id:\n            self.name = _(\"NEW\") + \" \" + self.template_id.name\n            self.type_action = self.template_id.type_action\n            self.description = self.template_id.description\n            self.user_id = self.template_id.user_id\n            self.tag_ids = self.template_id.tag_ids\n"
  },
  {
    "path": "mgmtsystem_action_template/models/mgmtsystem_action_template.py",
    "content": "# Copyright 2020 Creu Blanca\n# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemActionTemplate(models.Model):\n    \"\"\"\n    Define a support structure to set action template values\n    \"\"\"\n\n    _name = \"mgmtsystem.action.template\"\n    _description = \"Define fields to save action template values\"\n\n    def _selection_type_action(self):\n        # link to action type values\n        return self.env[\"mgmtsystem.action\"]._fields[\"type_action\"].selection\n\n    # fields\n    # template identification\n    name = fields.Char(required=True)\n    # action preset\n    description = fields.Html()\n    type_action = fields.Selection(\n        selection=lambda self: self._selection_type_action(), string=\"Response Type\"\n    )\n    user_id = fields.Many2one(\n        \"res.users\",\n        \"Responsible\",\n        default=lambda self: self.env[\"mgmtsystem.action\"]._default_owner(),\n        required=True,\n    )\n    tag_ids = fields.Many2many(\"mgmtsystem.action.tag\", string=\"Tags\")\n"
  },
  {
    "path": "mgmtsystem_action_template/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_action_template/readme/CONTRIBUTORS.md",
    "content": "- Marcelo Frare \\<<mf2965@gmail.com>\\>\n- Stefano Consolaro \\<<stefano.consolaro@mymage.it>\\>\n- Creu Blanca\n- [Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_action_template/readme/DESCRIPTION.md",
    "content": "This module add management of template for Actions.\n\n- new Action Template model to set default values\n- new field to select an Action Template to fill predefined fields\n  automatically\n"
  },
  {
    "path": "mgmtsystem_action_template/readme/HISTORY.md",
    "content": "## 13.0.1.0.0 (2022-01-01)\n\n- \\[INI\\] Migration to 13.0\n"
  },
  {
    "path": "mgmtsystem_action_template/readme/USAGE.md",
    "content": "Action Template - Define\n\n- Go to Management System → Configuration → Action Templates\n- Create a new Template\n- Fill fields with predefined values\n\nAction Template - Use\n\n- Go to Management System → Actions\n- Create new Action\n- Select Reference Template: the fields Title (name), Type, Responsible,\n  Tags and Description are filled with Template values\n- Procede with Action completion\n"
  },
  {
    "path": "mgmtsystem_action_template/security/ir.model.access.csv",
    "content": "id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink\naccess_mgmtsystem_action_template,access_mgmtsystem_action_template,model_mgmtsystem_action_template,base.group_user,1,1,1,1\n"
  },
  {
    "path": "mgmtsystem_action_template/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>Management System - Action Template</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=\"management-system-action-template\">\n<h1 class=\"title\">Management System - Action Template</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:dbde64546bab45d10c37b19fc463b18334f5b4ce241b6ce3d339da725fbcf373\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/management-system/tree/18.0/mgmtsystem_action_template\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_action_template\"><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/management-system&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 add management of template for Actions.</p>\n<ul class=\"simple\">\n<li>new Action Template model to set default values</li>\n<li>new field to select an Action Template to fill predefined fields\nautomatically</li>\n</ul>\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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#changelog\" id=\"toc-entry-2\">Changelog</a><ul>\n<li><a class=\"reference internal\" href=\"#section-1\" id=\"toc-entry-3\">13.0.1.0.0 (2022-01-01)</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>Action Template - Define</p>\n<ul class=\"simple\">\n<li>Go to Management System → Configuration → Action Templates</li>\n<li>Create a new Template</li>\n<li>Fill fields with predefined values</li>\n</ul>\n<p>Action Template - Use</p>\n<ul class=\"simple\">\n<li>Go to Management System → Actions</li>\n<li>Create new Action</li>\n<li>Select Reference Template: the fields Title (name), Type, Responsible,\nTags and Description are filled with Template values</li>\n<li>Procede with Action completion</li>\n</ul>\n</div>\n<div class=\"section\" id=\"changelog\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Changelog</a></h1>\n<div class=\"section\" id=\"section-1\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">13.0.1.0.0 (2022-01-01)</a></h2>\n<ul class=\"simple\">\n<li>[INI] Migration to 13.0</li>\n</ul>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_action_template%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-5\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Associazione PNLUG - Gruppo Odoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Marcelo Frare &lt;<a class=\"reference external\" href=\"mailto:mf2965&#64;gmail.com\">mf2965&#64;gmail.com</a>&gt;</li>\n<li>Stefano Consolaro &lt;<a class=\"reference external\" href=\"mailto:stefano.consolaro&#64;mymage.it\">stefano.consolaro&#64;mymage.it</a>&gt;</li>\n<li>Creu Blanca</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-8\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_action_template\">OCA/management-system</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": "mgmtsystem_action_template/tests/__init__.py",
    "content": "from . import test_action_template\n"
  },
  {
    "path": "mgmtsystem_action_template/tests/test_action_template.py",
    "content": "from odoo import _\nfrom odoo.tests.common import TransactionCase\n\n\nclass TestModelNonConformity(TransactionCase):\n    def setUp(self):\n        \"\"\"\n        Sets some enviroment\n        \"\"\"\n        super().setUp()\n\n        self.action_model = self.env[\"mgmtsystem.action\"]\n        self.action_template_model = self.env[\"mgmtsystem.action.template\"]\n\n        # create a template action\n        self.action_template = self.action_template_model.create(\n            {\n                \"name\": \"Test Template\",\n                \"type_action\": self.action_model.search([])[0][\"type_action\"],\n            }\n        )\n\n    def test_get_template(self):\n        \"\"\"\n        Test set Action template\n        \"\"\"\n        self.action = self.action_model.search([])[0]\n\n        self.action[\"template_id\"] = self.action_template[\"id\"]\n        self.action._onchange_template_id()\n\n        self.assertEqual(\n            self.action[\"name\"] == _(\"NEW\") + \" \" + self.action_template[\"name\"], True\n        )\n"
  },
  {
    "path": "mgmtsystem_action_template/views/mgmtsystem_action_template.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2019 Marcelo Frare (Ass, PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     Copyright 2019 Stefano Consolaro (Ass, PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     Copyright 2020 Creu Blanca\n     -->\n<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_action_template_form_view\">\n        <field\n            name=\"name\"\n        >mgmtsystem.action.template.form (in mgmtsystem_action_template)</field>\n        <field name=\"model\">mgmtsystem.action.template</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Action Template\">\n                <header />\n                <sheet string=\"Action Template\">\n                    <div class=\"oe_title\" modifiers=\"{}\">\n                        <h1 class=\"o_row\" modifiers=\"{}\">\n                            <field name=\"name\" placeholder=\"Template title...\" />\n                        </h1>\n                    </div>\n                    <group name=\"main\">\n                        <group name=\"config\">\n                            <field name=\"type_action\" />\n                            <field name=\"user_id\" />\n                        </group>\n                        <group name=\"meta\">\n                            <field\n                                name=\"tag_ids\"\n                                widget=\"many2many_tags\"\n                                options=\"{'color_field': 'color', 'no_create_edit': True}\"\n                            />\n                        </group>\n                    </group>\n                    <notebook>\n                        <page name=\"desc\" string=\"Description\">\n                            <field name=\"description\" nolabel=\"1\" />\n                        </page>\n                    </notebook>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_action_template_search_view\">\n        <field\n            name=\"name\"\n        >mgmtsystem.action.template.search (in mgmtsystem_action_template)</field>\n        <field name=\"model\">mgmtsystem.action.template</field>\n        <field name=\"arch\" type=\"xml\">\n            <search>\n                <field name=\"name\" />\n                <field name=\"type_action\" />\n                <field name=\"user_id\" />\n                <field name=\"tag_ids\" />\n            </search>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_action_template_tree_view\">\n        <field\n            name=\"name\"\n        >mgmtsystem.action.template.tree (in mgmtsystem_action_template)</field>\n        <field name=\"model\">mgmtsystem.action.template</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"description\" />\n                <field name=\"type_action\" />\n                <field name=\"user_id\" />\n                <field name=\"tag_ids\" widget=\"many2many_tags\" />\n            </list>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"mgmtsystem_action_template_act_window\">\n        <field name=\"name\">Mgmtsystem Action Template</field>\n        <field name=\"res_model\">mgmtsystem.action.template</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=\"mgmtsystem_action_template_menu\">\n        <field name=\"name\">Action Templates</field>\n        <field name=\"parent_id\" ref=\"mgmtsystem.menu_mgmtsystem_configuration\" />\n        <field name=\"action\" ref=\"mgmtsystem_action_template_act_window\" />\n        <field name=\"sequence\" eval=\"5\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_action_template/views/mgmtsystem_action_views.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2019 Marcelo Frare (Ass, PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     Copyright 2019 Stefano Consolaro (Ass, PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     Copyright 2020 Creu Blanca\n     -->\n<odoo>\n    <!-- inherit action form view adding template management -->\n    <record id=\"view_mgmtsystem_action_form\" model=\"ir.ui.view\">\n        <field name=\"name\">view.mgmtsystem.action</field>\n        <field name=\"model\">mgmtsystem.action</field>\n        <field name=\"inherit_id\" ref=\"mgmtsystem_action.view_mgmtsystem_action_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"tag_ids\" position=\"after\">\n                <field name=\"template_id\" options=\"{'no_create': 1, 'no_open': 1}\" />\n            </field>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/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=========================\nManagement System - Audit\n=========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:9fa97f7f61d8915f57fc0b9a777b94826f23126e9a1a157890b1b65861383f23\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_audit\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_audit\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module was written to manage audits and verifications lists of your\nmanagement system.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nUsers must be added to the appropriate groups within Odoo as follows:\n\n- Creators: Settings > Users > Groups > Management System / User\n- Responsible Persons: Settings > Users > Groups > Management System /\n  Approving User\n\nUsage\n=====\n\nTo use this module, you need to:\n\n- go to Management Systems > Audits\n- create a new audit\n- fill up its name, its auditors and schedule the date\n- prepare your questions with the verification list and print it\n- drive the audit and log answers in your verification list\n- finish your audit by writing the strong points, points to improve and\n  creating improvements opportunities and nonconformities\n- print the audit report and close the audit\n\nFor further information, please visit:\n\n- http://fr.slideshare.net/max3903/iso-anmanagement-systemswithopenerpen\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_audit%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Daniel Reis <dreis.pt@hotmail.com>\n- Joao Alfredo Gama Batista <joao.gama@savoirfairelinux.com>\n- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>\n- Sandy Carter <sandy.carter@savoirfairelinux.com>\n- Virgil Dupras <virgil.dupras@savoirfairelinux.com>\n- Loïc lacroix <loic.lacroix@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- Luk Vermeylen <luk@allmas-it.be>\n- Maxime Chambreuil <mchambreuil@ursainfosystems.com>\n- Eugen Don <eugen.don@don-systems.de>\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\n- `Guadaltech <https://www.guadaltech.es>`__:\n\n  - Fernando La Chica\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_audit>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_audit/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n\nfrom . import models\nfrom . import wizard\n"
  },
  {
    "path": "mgmtsystem_audit/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n{\n    \"name\": \"Management System - Audit\",\n    \"version\": \"18.0.1.1.0\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem_nonconformity\", \"base_automation\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"security/mgmtsystem_audit_security.xml\",\n        \"data/audit_sequence.xml\",\n        \"data/audit_automated_actions.xml\",\n        \"views/mgmtsystem_audit.xml\",\n        \"views/res_users.xml\",\n        \"report/audit.xml\",\n        \"report/verification.xml\",\n        \"report/report.xml\",\n        \"report/mgmtsystem_audit_pivot.xml\",\n        \"wizard/copy_verification_lines.xml\",\n    ],\n    \"demo\": [\"demo/demo_audit.xml\"],\n}\n"
  },
  {
    "path": "mgmtsystem_audit/data/audit_automated_actions.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Email template for \"Prepare to audit\" message to all auditors. -->\n    <record id=\"template_email_prepare_to_audit\" model=\"mail.template\">\n        <field name=\"name\">Prepare to audit</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_audit\" />\n        <field\n            name=\"email_to\"\n        >{{\",\".join(object.auditor_user_ids.mapped(\"email\"))}}</field>\n        <field name=\"subject\">Prepare to Audit: \"{{object.name}}\"</field>\n        <field name=\"body_html\">\n            <![CDATA[\n<p>Hello,</p>\n\n<p>\nThe audit <t t-out=\"object.name\" /> is scheduled in 2 weeks.\nPlease prepare the verification list:\n\n<a t-att-href=\"object.get_action_url()\">Link</a>\n</p>\n\n<p>\nThank you.\n--\nOdoo\n</p>\n            ]]>\n        </field>\n    </record>\n\n    <!-- Automated Action: Email all auditors 2 weeks before Audit. -->\n    <record id=\"rule_set_prepare_to_audit\" model=\"base.automation\">\n        <field name=\"name\">Email all auditors 2 weeks before audit.</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_audit\" />\n        <!-- <field name=\"template_id\" ref=\"template_email_prepare_to_audit\" /> -->\n        <field name=\"trigger\">on_time</field>\n        <!-- <field name=\"state\">mail_post</field> -->\n        <field name=\"trg_date_id\" ref=\"field_mgmtsystem_audit__date\" />\n        <field name=\"trg_date_range\">14</field>\n        <field name=\"trg_date_range_type\">day</field>\n    </record>\n\n    <!-- Email template for \"Send verification list\" message to all followers -->\n    <record id=\"template_email_send_verification_list\" model=\"mail.template\">\n        <field name=\"name\">Send Verification List</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_audit\" />\n        <field\n            name=\"email_to\"\n        >\t{{\",\".join((object.auditor_user_ids + object.auditee_user_ids + object.user_id).mapped(\"email\"))}}</field>\n        <field name=\"subject\">Send Verification List: \"{{object.name}}\"</field>\n        <field name=\"body_html\">\n            <![CDATA[\n<p>Hello,</p>\n\n<p>\nThe audit <t t-out=\"object.name\" /> is scheduled in 1 week.\nPlease finish the verification list and send it to the auditees:\n\n<a t-att-href=\"object.get_action_url()\">Link</a>\n</p>\n\n<p>\nThank you.\n--\nOdoo\n</p>\n            ]]>\n        </field>\n    </record>\n\n    <!-- Automated Action: Email all followers 1 weeks before Audit. -->\n    <record id=\"rule_set_send_verification_list\" model=\"base.automation\">\n        <field name=\"name\">Email all followers 1 week before audit.</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_audit\" />\n        <!-- <field name=\"template_id\" ref=\"template_email_send_verification_list\" /> -->\n        <field name=\"trigger\">on_time</field>\n        <!-- <field name=\"state\">mail_post</field> -->\n        <field name=\"trg_date_id\" ref=\"field_mgmtsystem_audit__date\" />\n        <field name=\"trg_date_range\">7</field>\n        <field name=\"trg_date_range_type\">day</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/data/audit_sequence.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Sequences for mgmtsystem.audit -->\n    <record id=\"seq_mgmtsystem_audit\" model=\"ir.sequence\">\n        <field name=\"name\">Management System Audit</field>\n        <field name=\"code\">mgmtsystem.audit</field>\n        <field name=\"prefix\">MSA</field>\n        <field name=\"padding\">3</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/demo/demo_audit.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"mgmtsystem_audit_demo\" model=\"mgmtsystem.audit\">\n        <field name=\"name\">Quality</field>\n        <field name=\"date\">2010-12-03</field>\n        <field name=\"strong_points\">\n            <![CDATA[\n                <ul>\n                    <li>Good documentation</li>\n                </ul>\n                ]]>\n        </field>\n        <field name=\"to_improve_points\">\n            <![CDATA[\n                <ul>\n                    <li>Procedure respect</li>\n                </ul>\n                ]]>\n        </field>\n        <field name=\"user_id\" ref=\"base.user_demo\" />\n        <field name=\"auditor_user_ids\" eval=\"[(6,0,[ref('base.user_demo')])]\" />\n        <field name=\"auditee_user_ids\" eval=\"[(6,0,[ref('base.user_root')])]\" />\n        <field\n            name=\"imp_opp_ids\"\n            eval=\"[(6,0,[ref('mgmtsystem_action.demo_improvement')])]\"\n        />\n        <field\n            name=\"nonconformity_ids\"\n            eval=\"[(6,0,[ref('mgmtsystem_nonconformity.demo_nonconformity')])]\"\n        />\n    </record>\n\n    <record id=\"mgmtsystem_audit_demo2\" model=\"mgmtsystem.audit\">\n        <field name=\"name\">Quality2</field>\n        <field name=\"date\">2012-12-06</field>\n        <field name=\"strong_points\">* Good documentation</field>\n        <field name=\"to_improve_points\">* Procedure respect</field>\n        <field name=\"user_id\" ref=\"base.user_root\" />\n        <field name=\"auditor_user_ids\" eval=\"[(6,0,[ref('base.user_demo')])]\" />\n        <field name=\"auditee_user_ids\" eval=\"[(6,0,[ref('base.user_root')])]\" />\n        <field\n            name=\"imp_opp_ids\"\n            eval=\"[(6,0,[ref('mgmtsystem_action.demo_improvement')])]\"\n        />\n        <field\n            name=\"nonconformity_ids\"\n            eval=\"[(6,0,[ref('mgmtsystem_nonconformity.demo_nonconformity')])]\"\n        />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/am.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\\n\"\n\"Language: am\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/ca.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\\n\"\n\"Language: ca\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat per\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creat el\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Darrera Actualització per\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Darrera Actualització el\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2025-07-07 07:22+0000\\n\"\n\"Last-Translator: Matthias Alles <matthias.alles@posteo.de>\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"Anzahl Prüfungen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"<strong>Prüfungsbericht</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"<strong>Verbesserungsmöglichkeiten:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"<strong>Nichteinhaltungen:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"<strong>Punkte für Verbesserungen:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"<strong>Starke Punkte:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"<strong>Verifikationsliste</strong>\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Maßnahme nötig\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Anzahl Anhänge\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Prüfung\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Prüfungsmanager\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Prüfung abgeschlossen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"Prüfungsbericht\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Geprüfte\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Geprüfte:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Prüfer\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Prüfer:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Prüfungen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Prüfung wählen\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Abschließen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Abgeschlossen\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Abgeschlossene Prüfungen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Abschlussdatum\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Bemerkungen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Unternehmen\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"Vertraulichkeit:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"Vertraulichkeit:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Eingehalten?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Kopiere Kontrollpositionen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Erstellt von\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Erstellt am\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Jahr:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Anzeigename\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Verbesserungsgelegenheiten\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zuletzt aktualisiert von\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zuletzt aktualisiert am\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Name\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Nichteinhaltungen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Mangel/Nichteinhaltung\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"In Bearbeitung\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Laufende Prüfungen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Zu verbessernde Punkte\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Ablauf\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Frage\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Bezug\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Verweis:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Reihenfolge\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Bedeutende Aspekte\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Zu verbessernde Punkte\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Kontrollposition\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Kontrollpositionen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Kontroll-Liste\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Abbrechen\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Kopieren\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zuletzt aktualisiert am\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"Hello,\\n\"\n#~ \"\\n\"\n#~ \"The audit \\\"${object.name}\\\" is scheduled in 2 weeks.\\n\"\n#~ \"Please prepare the verification list:\\n\"\n#~ \"\\n\"\n#~ \"${object.get_action_url()}\\n\"\n#~ \"\\n\"\n#~ \"\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"Hello,\\n\"\n#~ \"\\n\"\n#~ \"Die Prüfung \\\"${object.name}\\\" ist in 2 Wochen fällig.\\n\"\n#~ \"Bitte bereiten Sie die Verifikationsliste vor:\\n\"\n#~ \"\\n\"\n#~ \"${object.get_action_url()}\\n\"\n#~ \"\\n\"\n#~ \"\\n\"\n#~ \"Vielen Dank.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"            \"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Ist Eingehalten\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/el_GR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/\"\n\"el_GR/)\\n\"\n\"Language: el_GR\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Δημιουργήθηκε από \"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Δημιουργήθηκε στις\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"Κωδικός\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Τελευταία ενημέρωση από\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Τελευταία ενημέρωση στις\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# enjolras <yo@miguelrevilla.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-02-10 07:38+0000\\n\"\n\"PO-Revision-Date: 2024-02-08 17:36+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"# de auditorías\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"# de días para el cierre\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"<strong>Informe de auditoría</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"<strong>Oportunidades de mejora:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"<strong>Inconformidades:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"<strong>Puntos a mejorar:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"<strong>Puntos fuertes:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"<strong>Lista de verificación</strong>\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Acción necesaria\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"actividades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"decoración de actividades de excepción\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"estado de la actividad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icono del tipo de actividad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"recuento de anexos\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Auditoría\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Gerente de auditoría\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Auditoría cerrada\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"Reporte de auditoría\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Auditados\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Auditados:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Auditores\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Auditores:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Auditorías\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Seleccione auditoría\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Cerrado\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Auditorías cerradas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Fecha de Cierre\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Comentarios\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"Confidencialidad:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"Confidencialmente:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Conforme?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Copiar lineas de verificación\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Fecha\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Fecha:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"Días desde la última actualización\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\"Envíe un correo electrónico a todos los auditores 2 semanas antes de la \"\n\"auditoría.\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\"Envíe un correo electrónico a todos los seguidores 1 semana antes de la \"\n\"auditoría.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores/as\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"seguidores (socios)\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"fuente iconos sorprendentes , por ejemplo fa-tasks\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"Tienes un mensaje\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Disponga de una visión general de todas las auditorías procesadas en el \"\n\"sistema clasificándolas con criterios específicos.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icono\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"icono para indicar una actividad por excepción.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Si está marcada, nuevos mensajes requieren tu atención.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"si está marcada, algunos mensajes tienen un error de entrega.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Oportunidades de mejora\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"Interno\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"Está Conforme\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Es seguidor/a\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualización por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización en\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"Análisis de auditoría del sistema de gestión\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Error de envío de mensajes\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"mensajes\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Mi fecha límite de la actividad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Próximo evento del calendario de actividades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Fecha límite de la próxima actividad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Resumen de la Siguiente Actividad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo de la Siguiente Actividad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"No conformidades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"No conformidad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"Número de disconformidades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"Número de preguntas de la lista de verificación\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"número de acciones\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"número de errores\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"Número de oportunidades de mejora\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensajes que requieren una acción\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"número de mensajes con error de entrega\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Abierta\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Auditorias abiertas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Puntos a mejorar\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"Preparar para auditoría: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"Prepárese para auditar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Procedimiento\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Pregunta\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Referencia\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Referencia:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Auditorías relacionadas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Usuario Responsable\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Error en la entrega de SMS\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"Enviar lista de verificación\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"Enviar lista de verificación: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Secuencia\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Estado basado en actividades\\n\"\n\"Atrasado: La fecha de vencimiento ya ha pasado\\n\"\n\"Hoy: La fecha de la actividad es hoy\\n\"\n\"Planificado: Actividades futuras.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Puntos fuertes\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Puntos a mejorar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo (o clase) de actividad excepcional registrada.\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"Indefinido\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Linea de verificación\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Lineas de verificación\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Lista de verificación\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"Informe sobre la lista de verificación\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"mensajes de la página web\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"historial de la comunicación en la web\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Cancelar\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Copiar\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"No Conformidad\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Recuento De Disconformidades\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"The audit <t t-out=\\\"object.name\\\" /> is scheduled in 1 week.\\n\"\n#~ \"Please finish the verification list and send it to the auditees:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"The audit <t t-out=\\\"object.name\\\" /> is scheduled in 1 week.\\n\"\n#~ \"Please finish the verification list and send it to the auditees:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"The audit <t t-out=\\\"object.name\\\" /> is scheduled in 2 weeks.\\n\"\n#~ \"Please prepare the verification list:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"The audit <t t-out=\\\"object.name\\\" /> is scheduled in 2 weeks.\\n\"\n#~ \"Please prepare the verification list:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Archivo adjunto principal\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Número de mensajes que requieren una acción\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Está conforme\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:18+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:18+0000\\n\"\n\"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA \"\n\"<josealejandroeche@gmail.com>, 2018\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Auditorías\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/es_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/fi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\n# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016\\n\"\n\"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\\n\"\n\"Language: fi\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Suljettu\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Luonut\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Luotu\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Nimi\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Viimeksi päivittänyt\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Viimeksi päivitetty\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Tila\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Viimeksi muokattu\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Audit\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Responsable de l'audit\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Audit fermé\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Audités\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Audités:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Auditeurs\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Auditeurs:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Audits\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Choisir l'audit\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Archiver\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Fermée\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Audits fermés\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Commentaires\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Société\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Conforme ?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Copier les lignes de vérification\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Créée par\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Créée le \"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Date\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Date :\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom à afficher\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Opportunités d'amélioration\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Mise à jour par\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Mise à jour le\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Nom\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Nonconformités\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non-conformité\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Ouverte\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Audits ouverts\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Points à améliorer\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"Préparer à auditer\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Procédure\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Question\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Référence\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Référence :\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Audits liés\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"Envoyer la liste de vérification\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Séquence\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"État\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Points forts\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Système\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Points à améliorer\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"Non-défini\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Ligne de vérification\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Lignes de vérification\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Liste de vérification\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"Annuler\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Copier\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Dernière modification le\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Est conforme\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/gl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\\n\"\n\"Language: gl\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"ültima actualización por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Nadzori\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Tvrtka\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Kreirao\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Kreirano\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnje ažurirao\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažuriranje\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Nesukladnosti\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Sustav\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnje modificirano\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/hu.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\\n\"\n\"Language: hu\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Lezárt\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2025-09-17 11:42+0000\\n\"\n\"Last-Translator: mymage <stefano.consolaro@mymage.it>\\n\"\n\"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"Nr. di audit\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"Nr. di giornate da chiudere\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\"<p>Salve,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"L'audit <t t-out=\\\"object.name\\\"/> è schedulato tra una settimana.\\n\"\n\"Completare la lista delle verifiche e inviarla agli auditor:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">collegamento</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Grazie.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\"<p>Salve,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"L'audit <t t-out=\\\"object.name\\\"/> è schedulato tra due settimane.\\n\"\n\"Preparare la lista delle verifiche:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">collegamento</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Grazie.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"<strong>Resoconto audit</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"<strong>Opportunità di miglioramento:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"<strong>Non conformità:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"<strong>Punti da migliorare:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"<strong>Punti di forza:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"<strong>Elenco verifiche</strong>\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Azione richiesta\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"Attività\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decorazione eccezione attività\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"Stato attività\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icona tipo attività\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Numero allegati\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Audit\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Responsabile audit\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Audit chiuso\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"Resoconto audit\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Oggetti dell'audit\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Oggetti dell'audit:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Auditori\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Auditori:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Audit\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Scegliere l'audit\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Chiudi\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Chiuso\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Audit chiusi\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Data chiusura\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Commenti\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"Riservatezza:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"Confidenzialmente:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Conforme?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Copia linee verifica\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Data:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"Giorni dall'ultimo aggiornamento\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"Invia email agli auditori due settimane prima dell'audit.\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"Invia email a chi segue una settimana prima dell'audit.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguito da\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguito da (partner)\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Icona Font Awesome es. fa-tasks\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"Ha un messaggio\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Avere una panoramica di tutti gli audit eseguiti nel sistema ordinandoli con \"\n\"criteri specifici.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icona\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Icona per indicare un'attività eccezione.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se selezionata, nuovi messaggi richiedono attenzione.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se selezionata, alcuni messaggi hanno un errore di consegna.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Opportunità di miglioramento\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"Interno\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"È conforme\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Segue\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"Analisi audit sistema di gestione\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Errore di consegna messaggio\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"Messaggi\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Scadenza mia attività\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Evento calendario attività successiva\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Scadenza prossima attività\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Riepilogo prossima attività\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo prossima attività\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"Numero di non conformità\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"Numero di domande nella lista di verifica\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Numero di azioni\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Numero di errori\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"Numero di opportunità di miglioramento\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Numero di messaggi che richiedono un'azione\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Numero di messaggi con errore di consegna\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Aperta\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Audit aperti\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Punto da migliorare\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"Prepararsi all'audit: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"Prepararsi all'audit\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Procedura\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Domanda\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Riferimento\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Riferimento:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Audit relativi\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Utente responsabile\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Errore consegna SMS\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"Invia lista verifica\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"Invia lista verifiche: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Sequenza\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Stato\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Stato in base alle attività\\n\"\n\"Scaduto: la data richiesta è trascorsa\\n\"\n\"Oggi: la data attività è oggi\\n\"\n\"Pianificato: attività future.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Punti di forza\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Punti da migliorare\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo di attività eccezione sul record.\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"Indefinito\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Line di verifica\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Linee di verifica\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Elenco di verifica\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"Resoconto lista di verifica\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Messaggi sito web\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Cronologia comunicazioni sito web\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Annulla\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"Copia\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Non conformità\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Conteggio non conformità\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"The audit <t t-out=\\\"object.name\\\" /> is scheduled in 1 week.\\n\"\n#~ \"Please finish the verification list and send it to the auditees:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Salve,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"L'audit <t t-out=\\\"object.name\\\" /> è programmato in una settimana.\\n\"\n#~ \"Completare la lista delle verifiche e inviarla alle persone in verifica:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Grazie.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"The audit <t t-out=\\\"object.name\\\" /> is scheduled in 2 weeks.\\n\"\n#~ \"Please prepare the verification list:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Salve,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"L'audit <t t-out=\\\"object.name\\\" /> è programmato in due settimane.\\n\"\n#~ \"Predisporre la lista delle verifiche:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Grazie.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Allegato principale\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Numero di messaggi che richiedono un'azione\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"Hello,\\n\"\n#~ \"\\n\"\n#~ \"The audit \\\"${object.name}\\\" is scheduled in 1 week.\\n\"\n#~ \"Please finish the verification list and send it to the auditees:\\n\"\n#~ \"\\n\"\n#~ \"${object.get_action_url()}\\n\"\n#~ \"\\n\"\n#~ \"\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"Salve,\\n\"\n#~ \"\\n\"\n#~ \"L'audit \\\"${object.name}\\\" è pianificato tra una settimana.\\n\"\n#~ \"Si prega di completare la lista delle verifiche e inviarla agli auditor:\\n\"\n#~ \"\\n\"\n#~ \"${object.get_action_url()}\\n\"\n#~ \"\\n\"\n#~ \"\\n\"\n#~ \"Grazie.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"            \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"Hello,\\n\"\n#~ \"\\n\"\n#~ \"The audit \\\"${object.name}\\\" is scheduled in 2 weeks.\\n\"\n#~ \"Please prepare the verification list:\\n\"\n#~ \"\\n\"\n#~ \"${object.get_action_url()}\\n\"\n#~ \"\\n\"\n#~ \"\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"Salve,\\n\"\n#~ \"\\n\"\n#~ \"l'audit \\\"${object.name}\\\" è pianificato tra due settimane.\\n\"\n#~ \"Si prega di predisporre la lista delle verifiche:\\n\"\n#~ \"\\n\"\n#~ \"${object.get_action_url()}\\n\"\n#~ \"\\n\"\n#~ \"\\n\"\n#~ \"Grazie.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"            \"\n\n#~ msgid \"Days since last update\"\n#~ msgstr \"Giorni dall'ultimo aggiornamento\"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Iscritti (canali)\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"È conforme\"\n\n#~ msgid \"Number of nonconformities\"\n#~ msgstr \"Numero di non conformità\"\n\n#~ msgid \"Number of questions in verification list\"\n#~ msgstr \"Numero di domande nella lista di verifica\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Numero di messaggi non letti\"\n\n#~ msgid \"Prepare to Audit: \\\"${object.name}\\\"\"\n#~ msgstr \"Preparazione all'audit: \\\"${object.name}\\\"\"\n\n#~ msgid \"Send Verification List: \\\"${object.name}\\\"\"\n#~ msgstr \"Invia lista di verifica: \\\"${object.name}\\\"\"\n\n#~ msgid \"Unread Messages\"\n#~ msgstr \"Messaggi non letti\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Conteggio messaggi non letti\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/lv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\\n\"\n\"Language: lv\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : \"\n\"2);\\n\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Slēgts\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Atsauce\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Sistēma\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/mgmtsystem_audit.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_audit\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/\"\n\"nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Revisjon\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Revisjonsobjekter\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Revisjonsobjekter:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Revisorer\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Revisorer:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Revisjoner\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Velg revisjon\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Lukk\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Stengt\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Stengte revisjoner\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Kommentarer\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Tilpasset?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Kopier verifikasjonslinjer\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Dato\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Dato :\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Forbedringsmuligheter\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Navn\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Åpne\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Åpne revisjoner\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Forbedringspunkter\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Prosedyre\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Spørsmål\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Referanse:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Relaterte Revisjoner\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Rekkefølge\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Sterke sider\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Forbedringspoeng\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Verifikasjonslinje\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Verifikasjonslinjer\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Verifikasjonsliste\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Avbryt\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Kopier\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Er tilpasset\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/nl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\\n\"\n\"Language: nl\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Te tonen naam\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Naam\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst bijgewerkt op\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 04:24+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 04:24+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/\"\n\"23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"# audits\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"# dagen tot sluiting\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"<strong>Auditrapport</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Audit\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Auditmanager\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Audit gesloten\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"Auditrapport\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Auditors\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Audits\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Sluiten\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Gesloten\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Gesloten Audits\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Sluitingsdatum\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Commentaren\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Bedrijf\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Bevestigd:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Aangemaakt door\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Aangemaakt op\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Datum:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Weergavenaam\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"intern\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Laatst bijgewerkt op\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Naam\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Open\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Open Audits\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Vraag\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Referentie\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Referentie:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Gerelateerde Audits\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Sterke Punten\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Systeem\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Verbeterpunten\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst aangepast op\"\n\n#~ msgid \"Days since last update\"\n#~ msgstr \"Dagen sinds laatste aanpassing\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Is bevestigd\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/nn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Nynorsk (https://www.transifex.com/oca/teams/23907/\"\n\"nn/)\\n\"\n\"Language: nn\\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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Revisjon\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Revisjonsobjekt\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Revisjonsobjekt:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Revisorar\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Revisorar:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Revisjonar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Velg revisjon\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Steng\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Stengd\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Stengde revisjonar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Kommentarar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Tilpassa?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Kopier verifikasjonslinjer\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Dato\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Dato :\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Mulige forbetringar\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Namn\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Opne\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Opne revisjonar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Forbetringspunkt\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Prosedyre\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Spørsmål\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Referanse:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Relaterte Revisjonar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Rekkefølge\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Sterke sider\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Systemet\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Forbedringspoeng\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Verifikasjonslinje\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Verifikasjonslinjer\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Verifikasjonsliste\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Avbryt\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Kopier\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Er tilpassa\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2018-12-15 21:58+0000\\n\"\n\"Last-Translator: alvarorib <alvaro.ribeiro@exo.pt>\\n\"\n\"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\\n\"\n\"Language: 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\"X-Generator: Weblate 3.3\\n\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"Nº de Auditorias\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"Nº de dias para fechar\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"<strong>Relatório de Auditoria</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"<strong>Oportunidades de melhoria:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"<strong>Não Conformidades:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"<strong>Pontos de melhoria:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"<strong>Pontos fortes:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"<strong>Lista de Verificação</strong>\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Auditoria\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Gestor de Auditoria\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Auditoria fechada\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"Relatório de Auditoria\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Auditados\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Auditados:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Auditores\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Auditores:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Auditorias\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Escolher Auditoria\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Fechar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Auditorias fechadas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Data de Fecho\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Comentários\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"Confidencialidade:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"Confidencialmente:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Em conformidade?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Copiar as Linhas de Verificação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Data:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Exibir nome\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Ter uma visão geral de todas as auditorias processadas no sistema, ordenando-\"\n\"as com critérios específicos.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Oportunidades de Melhoria\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"Interno\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"Análise da Auditoria ao Sistema de Gestão\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Não conformidades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Não conformidade\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\n#, fuzzy\nmsgid \"Number of errors\"\nmsgstr \"Núnero de Não Conformidades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"Número de Oportunidades de Melhoria\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Aberto\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Auditorias abertas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Pontos de melhoria\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"Preparar para a auditoria\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Procedimento\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Questão\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Referência:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Auditorias relacionadas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"Enviar Lista de Verificação\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Sequência\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Pontos fortes\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Pontos a melhorar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"Indefinido\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Linha de Verificação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Linhas de Verificação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Lista de Verificação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"Relatório da Lista de Verificação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Cancelar\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Copiar\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificado pela última vez em\"\n\n#~ msgid \"Days since last update\"\n#~ msgstr \"Dias desde a última atualização\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Está conforme\"\n\n#~ msgid \"Number of nonconformities\"\n#~ msgstr \"Núnero de Não Conformidades\"\n\n#~ msgid \"Number of questions in verification list\"\n#~ msgstr \"Número de questões na Lista de Verificação\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# falexandresilva <falexandresilva@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2019-08-26 15:01+0000\\n\"\n\"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/\"\n\"23907/pt_BR/)\\n\"\n\"Language: pt_BR\\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 3.8\\n\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"# de auditorias\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"Nº De dias para fechar\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"<strong>Relatório de Auditoria</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"<strong>Oportunidades de Melhoria:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"<strong>Não-conformidades:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"<strong>Pontos de melhoria:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"<strong>Pontos fortes:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"<strong>Lista de Verificação</strong>\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Auditoria\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Gerenciar Auditoria\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Auditoria Encerrada\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"Relatório de Auditoria\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Auditados\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Auditados:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Auditores\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Auditores:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Auditorias\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Selecione a auditoria\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Fechar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Auditorias Fechadas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Data de Encerramento\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Observações\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"Confidencialidade:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"Confidencialidade:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Conforme?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Copiar Checklist\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Data:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Mostrar nome\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Tenha uma visão geral de todas as auditorias processadas no sistema, \"\n\"classificando-as com critérios específicos.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"Identificação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Oportunidades de Melhoria\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"Interno\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última atualização por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última atualização em\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"Análise de Auditoria do Sistema de Gestão\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Não Conformidades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Não Conformidade\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\n#, fuzzy\nmsgid \"Number of errors\"\nmsgstr \"Número de não-conformidades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"Número de melhorias Oportunidades\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Abrir\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Auditorias abertas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Pontos de melhoria\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Procedimento\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Questão\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Referência:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Auditorias Relacionadas\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Sequência\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Situação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Pontos Fortes\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Pontos de melhoria\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"Indefinido\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Linha de verificação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Checklist\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Checklist\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"Relatório da lista de verificação\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Cancelar\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Copiar\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificada pela última vez\"\n\n#~ msgid \"Days since last update\"\n#~ msgstr \"Dias desde a última atualização\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Está Conforme\"\n\n#~ msgid \"Number of nonconformities\"\n#~ msgstr \"Número de não-conformidades\"\n\n#~ msgid \"Number of questions in verification list\"\n#~ msgstr \"Número de perguntas na lista de verificação\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/pt_PT.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/\"\n\"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: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2023-03-31 21:29+0000\\n\"\n\"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\\n\"\n\"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\\n\"\n\"Language: sl\\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3;\\n\"\n\"X-Generator: Weblate 4.14.1\\n\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Revizija\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Upravitelj revizij\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Revizija zaključena\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Revidiranci\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Revidiranci:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Revizorji\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Revizorji:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Revizije\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Izbira revizije\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Zaključi\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Zaključeno\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Zaključene revizije\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Komentarji\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Družba\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Ustrezno?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Kopiranje verifikacijskih postavk\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Datum:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikazani naziv\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Priložnosti za izboljšave\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnjič posodobil\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Neustreznosti\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Neustreznost\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Odprto\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Odprte revizije\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Točke za izboljšanje\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"Priprava na revizijo\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Procedura\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Vprašanje\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Sklic\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Sklic:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Povezane revizije\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"Pošlji verifikacijski seznam\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Zaporedje\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Stanje\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Močne točke\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"Sistem\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Točke za izboljšanje\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"Nedoločeno\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Verifikacijska postavka\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Verifikacijske postavke\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"Verifikacijski seznam\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Preklic\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Kopiranje\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič spremenjeno\"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Je ustrezno\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2024-11-27 14:58+0000\\n\"\n\"Last-Translator: jakobkrabbe <jakob@syscare.se>\\n\"\n\"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\\n\"\n\"Language: sv\\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.6.2\\n\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"antal granskningar\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"antal dagar att stänga\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"<strong>Granskningsrapport</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"<strong>Förbättringsmöjligheter:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"<strong>Avvikelser:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"<strong>Poäng att förbättra:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"<strong>Starka poäng:</strong>\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"<strong>Verifieringslista</strong>\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Åtgärd behövs\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"Aktiviteter\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Aktivitet Undantagsdekoration\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"Aktivitetsläge\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Ikon för aktivitetstyp\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Antal bilagor\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"Revision\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"Revisionschef\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"Granskning stängd\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"Revisionsberättelse\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"Revisionsobjekten\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"Revisionsobjekten:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"Auditörer\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"Revisorer:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"Revisioner\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"Välj revision\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"Stäng\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"Stängd\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"Avslutade revisioner\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Slutdatum\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"Kommentarer\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"Bolag\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"Sekretess:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"Konfidentiellt:\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"Anpassad?\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"Kopiera Verifieringsrader\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Skapad av\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Skapat den\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"Datum:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"Dagar sedan senaste uppdatering\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Visningsnamn\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"Mejla alla revisorer 2 veckor före revision.\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"Mejla alla följare 1 vecka före revision.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Följare\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Följare (partners)\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Typsnitt fantastisk ikon t.ex. fa-tasks\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"Har meddelande\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\"Ha en allmän översikt över alla revisioner som behandlas i systemet genom \"\n\"att sortera dem med specifika kriterier.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Ikon\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Ikon för att indikera en undantagsaktivitet.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Om markerad, nya meddelanden kräver din uppmärksamhet.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Om markerat, vissa meddelanden har ett leveransfel.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"Förbättringsmöjligheter\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"Inre\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"Är bekräftad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Är följare\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Senast uppdaterad av\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Senast uppdaterad den\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"Management System revisionsanalys\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Meddelande leveransfel\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"Meddelande\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Återkoppling för min aktivitet\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"Namn\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Återkoppling för nästa aktivitet\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Nästa aktivitetssammanfattning\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Nästa aktivitetstyp\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"Avvikelser\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Avvikelse\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"Antal avvikelser\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"Antal frågor i verifieringslistan\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Antal åtgärder\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Antal fel\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"Antal förbättringsmöjligheter\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Antal meddelanden som kräver åtgärd\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Antal meddelanden med leveransfel\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"Öppna\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"Öppna Revisioner\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"Punkter att Förbättra\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"Förbered för granskning: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"Förbered för granskning\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"Rutin\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"Fråga\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"Referens\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"Referens:\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"Relaterade revisioner\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Ansvarig användare\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"SMS leveransfel\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"Skicka verifieringslista\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"Skicka verifieringslista: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"Sekvens\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status baserad på aktiviteter\\n\"\n\"Försenad: Förfallodatumet är redan passerat\\n\"\n\"Idag: Aktivitetsdatum är idag\\n\"\n\"Planerad: Framtida aktiviteter.\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"Starka punkter\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"Att Förbättra Poäng\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Typ av undantagsaktivitet som registrerats.\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"Odefinierad\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"Verifiering Linje\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"Verifieringsrader\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"VerifieringsLista\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"Verifieringslista rapport\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"_Avbryt\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"_Kopiera\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Icke överensstämmelse\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Antal avvikelser\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"The audit <t t-out=\\\"object.name\\\" /> is scheduled in 1 week.\\n\"\n#~ \"Please finish the verification list and send it to the auditees:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hej!</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Gransningen <t t-out=\\\"object.name\\\" /> är planerad till 1 vecka.\\n\"\n#~ \"Vänligen avsluta verifieringslistan och skicka den till de granskade:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Länk</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Vänligen.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"The audit <t t-out=\\\"object.name\\\" /> is scheduled in 2 weeks.\\n\"\n#~ \"Please prepare the verification list:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hej!</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Gransningen <t t-out=\\\"object.name\\\" /> är planerad till 2 veckor.\\n\"\n#~ \"Vänligen avsluta verifieringslistan:\\n\"\n#~ \"\\n\"\n#~ \"<a t-att-href=\\\"object.get_action_url()\\\">Länk</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Vänligen.\\n\"\n#~ \"--\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"Is conformed\"\n#~ msgstr \"Är anpassat\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/tr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_audit\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\\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\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Oluşturan\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"Oluşturuldu\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Son güncelleyen\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Son güncelleme\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2013-07-27 19:08+0000\\n\"\n\"PO-Revision-Date: 2014-03-04 12:01+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_audits\nmsgid \"# of audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 1 week.\\n\"\n\"Please finish the verification list and send it to the auditees:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,body_html:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"\"\n\"<p>Hello,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"The audit <t t-out=\\\"object.name\\\"/> is scheduled in 2 weeks.\\n\"\n\"Please prepare the verification list:\\n\"\n\"\\n\"\n\"<a t-att-href=\\\"object.get_action_url()\\\">Link</a>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you.<span data-o-mail-quote=\\\"1\\\">\\n\"\n\"--\\n\"\n\"Odoo\\n\"\n\"</span></p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Audit Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Improvement opportunities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Nonconformities:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Points To Improve:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"<strong>Strong points:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"<strong>Verification List</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__audit_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_report_mgmtsystem_audit_pivot\nmsgid \"Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Audit Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Audit closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.audit_report_mgmtsystem_audit\nmsgid \"Audit report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditee_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditees\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditees:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__auditor_user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Auditors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Auditors:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_audit_list\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_open_audit\n#: model:ir.ui.menu,name:mgmtsystem_audit.menu_report_mgmtsystem_audit_tree\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_audit_calendar\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__audit_src\nmsgid \"Choose audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Closed Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\nmsgid \"Confidentially:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Conformed?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.copy_verification_lines_act_window\n#: model:ir.model,name:mgmtsystem_audit.model_copy_verification_lines\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"Copy Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__days_since_last_update\nmsgid \"Days Since Last Update\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_prepare_to_audit\nmsgid \"Email all auditors 2 weeks before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:base.automation,name:mgmtsystem_audit.rule_set_send_verification_list\nmsgid \"Email all followers 1 week before audit.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.actions.act_window,help:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"\"\n\"Have a general overview of all audits processed in the system by sorting \"\n\"them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__id\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__imp_opp_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Improvement Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__is_conformed\nmsgid \"Is Conformed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_copy_verification_lines__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.action_report_mgmtsystem_audit\nmsgid \"Management System Audit Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__nonconformity_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_nonconformities\nmsgid \"Number Of Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_questions_in_verification_list\nmsgid \"Number Of Questions In Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__number_of_improvements_opportunity\nmsgid \"Number of improvements Opportunities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields.selection,name:mgmtsystem_audit.selection__mgmtsystem_audit__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_filter\nmsgid \"Open Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__to_improve_points\nmsgid \"Points To Improve\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to Audit: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_prepare_to_audit\nmsgid \"Prepare to audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__procedure_id\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Question\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.audit_report\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.verification_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_nonconformity__audit_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_nonconformity_form\nmsgid \"Related Audits\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,name:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:mail.template,subject:mgmtsystem_audit.template_email_send_verification_list\nmsgid \"Send Verification List: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_verification_line__seq\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__strong_points\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Strong Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"To Improve Points\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#. odoo-python\n#: code:addons/mgmtsystem_audit/models/mgmtsystem_audit.py:0\nmsgid \"Undefined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model,name:mgmtsystem_audit.model_mgmtsystem_verification_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_form\nmsgid \"Verification Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.act_window,name:mgmtsystem_audit.open_mgmtsystem_verification_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_verification_line_filter\nmsgid \"Verification Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.view_mgmtsystem_audit_form\nmsgid \"Verification List\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.actions.report,name:mgmtsystem_audit.verification_report_mgmtsystem_audit\nmsgid \"Verification list report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,field_description:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model:ir.model.fields,help:mgmtsystem_audit.field_mgmtsystem_audit__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_audit\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_audit.copy_verification_lines_form_view\nmsgid \"_Copy\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_audit/models/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import mgmtsystem_nonconformity\nfrom . import mgmtsystem_verification_line\nfrom . import mgmtsystem_audit\n"
  },
  {
    "path": "mgmtsystem_audit/models/mgmtsystem_audit.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n\nfrom odoo import _, api, fields, models\n\n\nclass MgmtsystemAudit(models.Model):\n    \"\"\"Model class that manage audit.\"\"\"\n\n    _name = \"mgmtsystem.audit\"\n    _description = \"Audit\"\n    _inherit = [\"mail.thread\", \"mail.activity.mixin\"]\n\n    name = fields.Char()\n    reference = fields.Char(required=True, readonly=True, default=\"NEW\")\n    date = fields.Datetime()\n    line_ids = fields.One2many(\n        \"mgmtsystem.verification.line\", \"audit_id\", \"Verification List\"\n    )\n    number_of_audits = fields.Integer(\"# of audits\", readonly=True, default=1)\n    number_of_nonconformities = fields.Integer(\n        store=True,\n        compute=\"_compute_number_of_nonconformities\",\n    )\n    number_of_questions_in_verification_list = fields.Integer(\n        store=True,\n        compute=\"_compute_number_of_questions_in_verification_list\",\n    )\n    number_of_improvements_opportunity = fields.Integer(\n        \"Number of improvements Opportunities\",\n        store=True,\n        compute=\"_compute_number_of_improvement_opportunities\",\n    )\n    days_since_last_update = fields.Integer(\n        store=True,\n        compute=\"_compute_days_since_last_update\",\n    )\n    closing_date = fields.Datetime(readonly=True)\n\n    number_of_days_to_close = fields.Integer(\n        \"# of days to close\",\n        store=True,\n        compute=\"_compute_number_of_days_to_close\",\n    )\n\n    user_id = fields.Many2one(\"res.users\", \"Audit Manager\")\n    auditor_user_ids = fields.Many2many(\n        \"res.users\",\n        \"mgmtsystem_auditor_user_rel\",\n        \"user_id\",\n        \"mgmtsystem_audit_id\",\n        \"Auditors\",\n    )\n    auditee_user_ids = fields.Many2many(\n        \"res.users\",\n        \"mgmtsystem_auditee_user_rel\",\n        \"user_id\",\n        \"mgmtsystem_audit_id\",\n        \"Auditees\",\n    )\n    strong_points = fields.Html()\n    to_improve_points = fields.Html(\"Points To Improve\")\n    imp_opp_ids = fields.Many2many(\n        \"mgmtsystem.action\",\n        \"mgmtsystem_audit_imp_opp_rel\",\n        \"mgmtsystem_action_id\",\n        \"mgmtsystem_audit_id\",\n        \"Improvement Opportunities\",\n    )\n\n    nonconformity_ids = fields.Many2many(\n        \"mgmtsystem.nonconformity\", string=\"Nonconformities\"\n    )\n    state = fields.Selection(\n        [(\"open\", \"Open\"), (\"done\", \"Closed\")], default=\"open\", required=True\n    )\n    system_id = fields.Many2one(\"mgmtsystem.system\", \"System\")\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n\n    @api.depends(\"nonconformity_ids\")\n    def _compute_number_of_nonconformities(self):\n        \"\"\"Count number of nonconformities.\"\"\"\n        for audit in self:\n            audit.number_of_nonconformities = len(audit.nonconformity_ids)\n\n    @api.depends(\"imp_opp_ids\")\n    def _compute_number_of_improvement_opportunities(self):\n        \"\"\"Count number of improvements Opportunities.\"\"\"\n        for audit in self:\n            audit.number_of_improvements_opportunity = len(audit.imp_opp_ids)\n\n    @api.depends(\"line_ids\")\n    def _compute_number_of_questions_in_verification_list(self):\n        for audit in self:\n            audit.number_of_questions_in_verification_list = len(audit.line_ids)\n\n    @api.depends(\"write_date\")\n    def _compute_days_since_last_update(self):\n        for audit in self:\n            audit.days_since_last_update = audit._elapsed_days(\n                audit.create_date, audit.write_date\n            )\n\n    @api.depends(\"closing_date\")\n    def _compute_number_of_days_to_close(self):\n        for audit in self:\n            audit.number_of_days_to_close = audit._elapsed_days(\n                audit.create_date, audit.closing_date\n            )\n\n    @api.model\n    def _elapsed_days(self, dt1_text, dt2_text):\n        res = 0\n        if dt1_text and dt2_text:\n            dt1 = fields.Datetime.from_string(dt1_text)\n            dt2 = fields.Datetime.from_string(dt2_text)\n            res = (dt2 - dt1).days\n        return res\n\n    @api.model_create_multi\n    def create(self, vals):\n        \"\"\"Audit creation.\"\"\"\n        for value in vals:\n            value.update(\n                {\"reference\": self.env[\"ir.sequence\"].next_by_code(\"mgmtsystem.audit\")}\n            )\n        audit_id = super().create(vals)\n        return audit_id\n\n    def button_close(self):\n        \"\"\"When Audit is closed, post a message to followers' chatter.\"\"\"\n        self.message_post(body=_(\"Audit closed\"))\n        return self.write({\"state\": \"done\", \"closing_date\": fields.Datetime.now()})\n\n    def get_action_url(self):\n        \"\"\"\n        Return a link to the audit form view\n        \"\"\"\n        CfgParam = self.env[\"ir.config_parameter\"]\n        base_url = CfgParam.get_param(\"web.base.url\", default=\"http://localhost:8069\")\n        return f\"{base_url}/odoo/{self._name}/{self.id}\"\n\n    def get_lines_by_procedure(self):\n        undefined = _(\"Undefined\")\n        p = [\n            {\n                \"id\": line.id,\n                \"procedure\": line.procedure_id.name or undefined,\n                \"name\": line.name,\n                \"yes_no\": \"Yes / No\",\n            }\n            for line in self.line_ids\n        ]\n        p = sorted(p, key=lambda k: k[\"procedure\"])\n        proc_line = False\n        q = []\n        proc_name = \"\"\n        for i in range(len(p)):\n            if proc_name != p[i][\"procedure\"]:\n                proc_line = True\n            if proc_line:\n                q.append(\n                    {\n                        \"id\": p[i][\"id\"],\n                        \"procedure\": p[i][\"procedure\"],\n                        \"name\": \"\",\n                        \"yes_no\": \"\",\n                    }\n                )\n                proc_line = False\n                proc_name = p[i][\"procedure\"]\n            q.append(\n                {\n                    \"id\": p[i][\"id\"],\n                    \"procedure\": \"\",\n                    \"name\": p[i][\"name\"],\n                    \"yes_no\": \"Yes / No\",\n                }\n            )\n        return q\n"
  },
  {
    "path": "mgmtsystem_audit/models/mgmtsystem_nonconformity.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemNonconformity(models.Model):\n    \"\"\"Class use to add audit_ids association to MgmtsystemNonconformity.\"\"\"\n\n    _inherit = \"mgmtsystem.nonconformity\"\n\n    audit_ids = fields.Many2many(\"mgmtsystem.audit\", string=\"Related Audits\")\n"
  },
  {
    "path": "mgmtsystem_audit/models/mgmtsystem_verification_line.py",
    "content": "from odoo import fields, models\n\n\nclass MgmtsystemVerificationLine(models.Model):\n    \"\"\"Class to manage verification's Line.\"\"\"\n\n    _name = \"mgmtsystem.verification.line\"\n    _description = \"Verification Line\"\n    _order = \"seq\"\n\n    name = fields.Char(\"Question\", required=True)\n    audit_id = fields.Many2one(\n        \"mgmtsystem.audit\", \"Audit\", ondelete=\"cascade\", index=True\n    )\n    procedure_id = fields.Many2one(\n        \"document.page\", \"Procedure\", ondelete=\"restrict\", index=True\n    )\n    is_conformed = fields.Boolean(default=False)\n    comments = fields.Text()\n    seq = fields.Integer(\"Sequence\")\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n"
  },
  {
    "path": "mgmtsystem_audit/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_audit/readme/CONFIGURE.md",
    "content": "Users must be added to the appropriate groups within Odoo as follows:\n\n- Creators: Settings \\> Users \\> Groups \\> Management System / User\n- Responsible Persons: Settings \\> Users \\> Groups \\> Management System\n  / Approving User\n"
  },
  {
    "path": "mgmtsystem_audit/readme/CONTRIBUTORS.md",
    "content": "- Daniel Reis \\<<dreis.pt@hotmail.com>\\>\n- Joao Alfredo Gama Batista \\<<joao.gama@savoirfairelinux.com>\\>\n- Maxime Chambreuil \\<<maxime.chambreuil@savoirfairelinux.com>\\>\n- Sandy Carter \\<<sandy.carter@savoirfairelinux.com>\\>\n- Virgil Dupras \\<<virgil.dupras@savoirfairelinux.com>\\>\n- Loïc lacroix \\<<loic.lacroix@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Luk Vermeylen \\<<luk@allmas-it.be>\\>\n- Maxime Chambreuil \\<<mchambreuil@ursainfosystems.com>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n- [Guadaltech](https://www.guadaltech.es):\n  - Fernando La Chica\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n"
  },
  {
    "path": "mgmtsystem_audit/readme/DESCRIPTION.md",
    "content": "This module was written to manage audits and verifications lists of your\nmanagement system.\n"
  },
  {
    "path": "mgmtsystem_audit/readme/USAGE.md",
    "content": "To use this module, you need to:\n\n- go to Management Systems \\> Audits\n- create a new audit\n- fill up its name, its auditors and schedule the date\n- prepare your questions with the verification list and print it\n- drive the audit and log answers in your verification list\n- finish your audit by writing the strong points, points to improve and\n  creating improvements opportunities and nonconformities\n- print the audit report and close the audit\n\nFor further information, please visit:\n\n- <http://fr.slideshare.net/max3903/iso-anmanagement-systemswithopenerpen>\n"
  },
  {
    "path": "mgmtsystem_audit/report/audit.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <template id=\"audit_report\">\n        <t\n            t-set=\"doc\"\n            t-value=\"doc.with_context({'lang':doc.user_id.partner_id.lang})\"\n        />\n        <t t-call=\"web.external_layout\">\n            <div class=\"page\">\n                <div class=\"row\">\n                    <div class=\"col-12\">\n                        <div class=\"text-center\">\n                            <h3>\n                                <strong>Audit Report</strong>\n                            </h3>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <div class=\"text-center\">\n                            <h3>\n                                <strong t-field=\"doc.name\" />\n                            </h3>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-3\">\n                        Confidentially:\n                    </div>\n                    <div class=\"col-9\">\n                        Internal\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-3\">\n                        Reference:\n                    </div>\n                    <div class=\"col-9\">\n                        <span t-field=\"doc.reference\" />\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-3\">\n                        Date:\n                    </div>\n                    <div class=\"col-9\">\n                        <span t-field=\"doc.date\" />\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-3\">\n                        Auditors:\n                    </div>\n                    <div class=\"col-9\">\n                        <ul class=\"list-unstyled\">\n                            <t t-foreach=\"doc.auditor_user_ids\" t-as=\"auditor\">\n                                <li>\n                                    <span t-field=\"auditor.name\" />\n                                </li>\n                            </t>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:30px\">\n                    <div class=\"col-12\">\n                        <h3>\n                            <strong>Strong points:</strong>\n                        </h3>\n                        <span t-field=\"doc.strong_points\" />\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-12\">\n                        <h3>\n                            <strong>Points To Improve:</strong>\n                        </h3>\n                        <span t-field=\"doc.to_improve_points\" />\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-12\">\n                        <h3>\n                            <strong>Improvement opportunities:</strong>\n                        </h3>\n                        <ul style=\"padding-left:50px\">\n                            <t t-foreach=\"doc.imp_opp_ids\" t-as=\"improvement\">\n                                <t t-if=\"improvement.stage_id.name != 'Cancelled'\">\n                                    <li>\n                                        <span t-field=\"improvement.name\" />\n                                    </li>\n                                </t>\n                            </t>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-12\">\n                        <h3>\n                            <strong>Nonconformities:</strong>\n                        </h3>\n                        <ul style=\"padding-left:50px\">\n                            <t t-foreach=\"doc.nonconformity_ids\" t-as=\"nonconformity\">\n                                <t t-if=\"nonconformity.state != 'cancel'\">\n                                    <li>\n                                        <span t-field=\"nonconformity.description\" />\n                                    </li>\n                                </t>\n                            </t>\n                        </ul>\n                    </div>\n                </div>\n            </div>\n        </t>\n    </template>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/report/mgmtsystem_audit_pivot.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <!-- Management System Audit Report Pivot View -->\n    <record id=\"view_report_mgmtsystem_audit_pivot\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.audit.report.pivot</field>\n        <field name=\"model\">mgmtsystem.audit</field>\n        <field name=\"arch\" type=\"xml\">\n            <pivot string=\"Audit\" disable_linking=\"True\">\n                <field name=\"state\" type=\"row\" />\n                <field name=\"user_id\" type=\"col\" />\n                <field name=\"number_of_audits\" type=\"measure\" />\n            </pivot>\n        </field>\n    </record>\n\n    <!-- Management System Audit Graph View -->\n\n    <record id=\"view_report_mgmtsystem_audit_graph\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.audit.report.graph</field>\n        <field name=\"model\">mgmtsystem.audit</field>\n        <field name=\"arch\" type=\"xml\">\n            <graph string=\"Audit\">\n                <field name=\"state\" />\n                <field name=\"user_id\" />\n                <field name=\"number_of_audits\" type=\"measure\" />\n            </graph>\n        </field>\n    </record>\n\n    <!-- Management System Audit Report Action -->\n\n    <record id=\"action_report_mgmtsystem_audit\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Management System Audit Analysis</field>\n        <field name=\"res_model\">mgmtsystem.audit</field>\n        <field name=\"view_mode\">pivot,graph</field>\n        <field\n            name=\"context\"\n        >{\"search_default_year\":1,\"search_default_User\":1,\"search_default_This Month\":1,'group_by_no_leaf':1,'group_by':[]}</field>\n        <field name=\"view_id\" />\n        <!-- force empty -->\n        <field\n            name=\"help\"\n        >Have a general overview of all audits processed in the system by sorting them with specific criteria.</field>\n    </record>\n\n    <menuitem\n        name=\"Audits\"\n        id=\"menu_report_mgmtsystem_audit_tree\"\n        action=\"action_report_mgmtsystem_audit\"\n        parent=\"mgmtsystem.menu_mgmtsystem_report\"\n        sequence=\"20\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/report/report.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"audit_report_mgmtsystem_audit\" model=\"ir.actions.report\">\n        <field name=\"name\">Audit report</field>\n        <field name=\"model\">mgmtsystem.audit</field>\n        <field name=\"report_type\">qweb-pdf</field>\n        <field name=\"report_name\">mgmtsystem_audit.audit_report_template</field>\n        <field name=\"binding_model_id\" ref=\"model_mgmtsystem_audit\" />\n    </record>\n\n    <record id=\"verification_report_mgmtsystem_audit\" model=\"ir.actions.report\">\n        <field name=\"name\">Verification list report</field>\n        <field name=\"model\">mgmtsystem.audit</field>\n        <field name=\"report_type\">qweb-pdf</field>\n        <field name=\"report_name\">mgmtsystem_audit.verification_report_template</field>\n        <field name=\"binding_model_id\" ref=\"model_mgmtsystem_audit\" />\n    </record>\n\n    <template id=\"audit_report_template\">\n        <t t-call=\"web.html_container\">\n            <t t-foreach=\"docs\" t-as=\"doc\">\n                <t\n                    t-call=\"mgmtsystem_audit.audit_report\"\n                    t-lang=\"doc.user_id.partner_id.lang\"\n                />\n            </t>\n        </t>\n    </template>\n    <template id=\"verification_report_template\">\n        <t t-call=\"web.html_container\">\n            <t t-foreach=\"docs\" t-as=\"doc\">\n                <t\n                    t-call=\"mgmtsystem_audit.verification_report\"\n                    t-lang=\"doc.user_id.partner_id.lang\"\n                />\n            </t>\n        </t>\n    </template>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/report/verification.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <template id=\"verification_report\">\n        <t\n            t-set=\"doc\"\n            t-value=\"doc.with_context({'lang':doc.user_id.partner_id.lang})\"\n        />\n        <t t-call=\"web.external_layout\">\n            <div class=\"page\">\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <div class=\"text-center\">\n                            <h3>\n                                <strong>Verification List</strong>\n                            </h3>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <div class=\"text-center\">\n                            <h3>\n                                <strong t-field=\"doc.name\" />\n                            </h3>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-3\">\n                        Confidentiality:\n                    </div>\n                    <div class=\"col-9 pull-right\">\n                        Internal\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-3\">\n                        Reference:\n                    </div>\n                    <div class=\"col-9 pull-right\">\n                        <span t-field=\"doc.reference\" />\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-3\">\n                        Date:\n                    </div>\n                    <div class=\"col-9 pull-right\">\n                        <span t-field=\"doc.date\" />\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:20px\">\n                    <div class=\"col-12\">\n                        <table class=\"table\">\n                            <tr>\n                                <th>Auditors:</th>\n                                <th>Auditees:</th>\n                            </tr>\n                            <tr>\n                                <td>\n                                    <ul style=\"padding-left:30px\">\n                                        <t\n                                            t-foreach=\"doc.auditor_user_ids\"\n                                            t-as=\"auditor\"\n                                        >\n                                            <li>\n                                                <span t-field=\"auditor.name\" />\n                                            </li>\n                                        </t>\n                                    </ul>\n                                </td>\n                                <td>\n                                    <ul style=\"padding-left:30px\">\n                                        <t\n                                            t-foreach=\"doc.auditee_user_ids\"\n                                            t-as=\"auditee\"\n                                        >\n                                            <li>\n                                                <span t-field=\"auditee.name\" />\n                                            </li>\n                                        </t>\n                                    </ul>\n                                </td>\n                            </tr>\n                        </table>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:20px\">\n                    <div class=\"col-12\">\n                        <table class=\"table\">\n                            <tr>\n                                <th>Question</th>\n                                <th>Conformed?</th>\n                                <th>Comments</th>\n                            </tr>\n                            <t t-foreach=\"doc.get_lines_by_procedure()\" t-as=\"line\">\n                                <t t-if=\"line['procedure']\">\n                                    <tr>\n                                        <td>\n                                            <span t-esc=\"line['procedure']\" />\n                                        </td>\n                                        <td />\n                                        <td />\n                                    </tr>\n                                </t>\n                                <t t-if=\"not line['procedure']\">\n                                    <tr>\n                                        <td>\n                                            <span t-esc=\"line['name']\" />\n                                        </td>\n                                        <td>\n                                            <span t-esc=\"line['yes_no']\" />\n                                        </td>\n                                        <td />\n                                    </tr>\n                                </t>\n                            </t>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </t>\n    </template>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_audit_user\",\"mgmtsystem.audit.user\",\"model_mgmtsystem_audit\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_audit_viewer\",\"mgmtsystem.audit.viewer\",\"model_mgmtsystem_audit\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_audit_auditor\",\"mgmtsystem.audit.auditor\",\"model_mgmtsystem_audit\",\"mgmtsystem.group_mgmtsystem_auditor\",1,1,0,0\n\"access_mgmtsystem_audit_manager\",\"mgmtsystem.audit.manager\",\"model_mgmtsystem_audit\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,0\n\"access_mgmtsystem_verification_line_user\",\"mgmtsystem.verification.line.user\",\"model_mgmtsystem_verification_line\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_verification_line_viewer\",\"mgmtsystem.verification.line.viewer\",\"model_mgmtsystem_verification_line\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_verification_line_auditor\",\"mgmtsystem.verification.line.auditor\",\"model_mgmtsystem_verification_line\",\"mgmtsystem.group_mgmtsystem_auditor\",1,1,1,1\n\"access_mgmtsystem_verification_line_manager\",\"mgmtsystem.verification.line.manager\",\"model_mgmtsystem_verification_line\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\naccess_copy_verification_lines_manager,copy.verification.lines.manager,model_copy_verification_lines,\"mgmtsystem.group_mgmtsystem_auditor\",1,1,1,1\n"
  },
  {
    "path": "mgmtsystem_audit/security/mgmtsystem_audit_security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Rule -->\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_audit_rule\">\n        <field name=\"name\">mgmtsystem_audit multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_audit\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_verification_line_rule\">\n        <field name=\"name\">mgmtsystem_verification_line multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_verification_line\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/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=\"management-system-audit\">\n<h1>Management System - Audit</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:9fa97f7f61d8915f57fc0b9a777b94826f23126e9a1a157890b1b65861383f23\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/management-system/tree/18.0/mgmtsystem_audit\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_audit\"><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/management-system&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 was written to manage audits and verifications lists of your\nmanagement system.</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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-2\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-3\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-4\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-5\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-6\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-7\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>Users must be added to the appropriate groups within Odoo as follows:</p>\n<ul class=\"simple\">\n<li>Creators: Settings &gt; Users &gt; Groups &gt; Management System / User</li>\n<li>Responsible Persons: Settings &gt; Users &gt; Groups &gt; Management System /\nApproving User</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Usage</a></h2>\n<p>To use this module, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Audits</li>\n<li>create a new audit</li>\n<li>fill up its name, its auditors and schedule the date</li>\n<li>prepare your questions with the verification list and print it</li>\n<li>drive the audit and log answers in your verification list</li>\n<li>finish your audit by writing the strong points, points to improve and\ncreating improvements opportunities and nonconformities</li>\n<li>print the audit report and close the audit</li>\n</ul>\n<p>For further information, please visit:</p>\n<ul class=\"simple\">\n<li><a class=\"reference external\" href=\"http://fr.slideshare.net/max3903/iso-anmanagement-systemswithopenerpen\">http://fr.slideshare.net/max3903/iso-anmanagement-systemswithopenerpen</a></li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_audit%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-4\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Daniel Reis &lt;<a class=\"reference external\" href=\"mailto:dreis.pt&#64;hotmail.com\">dreis.pt&#64;hotmail.com</a>&gt;</li>\n<li>Joao Alfredo Gama Batista &lt;<a class=\"reference external\" href=\"mailto:joao.gama&#64;savoirfairelinux.com\">joao.gama&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:maxime.chambreuil&#64;savoirfairelinux.com\">maxime.chambreuil&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Sandy Carter &lt;<a class=\"reference external\" href=\"mailto:sandy.carter&#64;savoirfairelinux.com\">sandy.carter&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Virgil Dupras &lt;<a class=\"reference external\" href=\"mailto:virgil.dupras&#64;savoirfairelinux.com\">virgil.dupras&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Loïc lacroix &lt;<a class=\"reference external\" href=\"mailto:loic.lacroix&#64;savoirfairelinux.com\">loic.lacroix&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Luk Vermeylen &lt;<a class=\"reference external\" href=\"mailto:luk&#64;allmas-it.be\">luk&#64;allmas-it.be</a>&gt;</li>\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:mchambreuil&#64;ursainfosystems.com\">mchambreuil&#64;ursainfosystems.com</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://www.guadaltech.es\">Guadaltech</a>:<ul>\n<li>Fernando La Chica</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_audit\">OCA/management-system</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": "mgmtsystem_audit/tests/__init__.py",
    "content": "# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import test_audit\n"
  },
  {
    "path": "mgmtsystem_audit/tests/test_audit.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\nfrom odoo import Command\n\nfrom odoo.addons.base.tests.common import BaseCommon\n\n\nclass TestModelAudit(BaseCommon):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        cls.page = cls.env.ref(\"document_page.demo_page1\")\n        cls.audit = cls.env[\"mgmtsystem.audit\"].create(\n            {\n                \"name\": \"Test audit\",\n                \"date\": \"2025-01-01\",\n                \"line_ids\": [\n                    Command.create({\"name\": \"test\", \"procedure_id\": cls.page.id}),\n                    Command.create({\"name\": \"test2\"}),\n                ],\n            }\n        )\n\n    def test_get_action_url(self):\n        \"\"\"Test if action url start with http.\"\"\"\n        ret = self.audit.get_action_url()\n        self.assertEqual(isinstance(ret, str), True)\n        self.assertEqual(ret.startswith(\"http\"), True)\n\n    def test_button_close(self):\n        \"\"\"Test if button close change audit state to close.\"\"\"\n        self.audit.state = \"open\"\n        self.assertEqual(self.audit.state, \"open\")\n        self.audit.button_close()\n        self.assertEqual(self.audit.state, \"done\")\n\n    def test_get_lines_by_procedure(self):\n        self.assertTrue(self.audit.get_lines_by_procedure())\n\n    def test_copyVerificationLines(self):\n        dest_record = self.env[\"mgmtsystem.audit\"].create(\n            {\n                \"name\": \"Test audit2\",\n                \"date\": \"2025-01-01\",\n            }\n        )\n        copy_record = self.env[\"copy.verification.lines\"].create(\n            {\"audit_src\": self.audit.id}\n        )\n        copy_record = copy_record.with_context(\n            active_id=dest_record.id, active_model=self.audit._name\n        )\n        copy_record.copyVerificationLines()\n        self.assertGreater(len(dest_record.line_ids), 0)\n\n    def test_audit_reports(self):\n        res = self.env[\"ir.actions.report\"]._render(\n            \"mgmtsystem_audit.audit_report_template\", self.audit.ids\n        )\n        self.assertRegex(str(res[0]), \"Test audit\")\n        res = self.env[\"ir.actions.report\"]._render(\n            \"mgmtsystem_audit.verification_report_template\", self.audit.ids\n        )\n        self.assertRegex(str(res[0]), \"Test audit\")\n"
  },
  {
    "path": "mgmtsystem_audit/views/mgmtsystem_audit.xml",
    "content": "<odoo>\n    <!-- Verification Lines -->\n\n    <record id=\"view_mgmtsystem_verification_line_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.verification.line.list</field>\n        <field name=\"model\">mgmtsystem.verification.line</field>\n        <field name=\"type\">list</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"seq\" widget=\"handle\" />\n                <field name=\"name\" />\n                <field name=\"is_conformed\" />\n                <field name=\"procedure_id\" />\n                <field name=\"comments\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_verification_line_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.verification.line.filter</field>\n        <field name=\"model\">mgmtsystem.verification.line</field>\n        <field name=\"type\">search</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Verification Lines\">\n                <group>\n                    <field name=\"seq\" />\n                    <field name=\"name\" />\n                    <field\n                        name=\"procedure_id\"\n                        domain=\"[('parent_id','in',['Procedure', 'Environmental Aspect', 'Quality Manual', 'Environment Manual'])]\"\n                    />\n                    <field name=\"is_conformed\" />\n                    <field name=\"comments\" />\n                    <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                </group>\n            </search>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_verification_line_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.verification.line.form</field>\n        <field name=\"type\">form</field>\n        <field name=\"model\">mgmtsystem.verification.line</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Verification Line\">\n                <group colspan=\"4\" col=\"4\">\n                    <field name=\"name\" />\n                    <field name=\"is_conformed\" />\n                    <newline />\n                    <field\n                        name=\"procedure_id\"\n                        domain=\"[('parent_id','in',['Procedure', 'Environmental Aspect', 'Quality Manual', 'Environment Manual'])]\"\n                    />\n                    <field name=\"seq\" />\n                    <newline />\n                    <field name=\"comments\" />\n                    <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                </group>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_verification_line_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Verification Lines</field>\n        <field name=\"res_model\">mgmtsystem.verification.line</field>\n        <field name=\"view_mode\">list,form</field>\n    </record>\n\n    <!-- Audits -->\n\n    <record id=\"view_mgmtsystem_audit_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.audit.list</field>\n        <field name=\"model\">mgmtsystem.audit</field>\n        <field name=\"type\">list</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" readonly=\"state == 'done'\" />\n                <field name=\"date\" readonly=\"state == 'done'\" />\n                <field name=\"create_date\" />\n                <field name=\"reference\" />\n                <field name=\"system_id\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_audit_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.audit.filter</field>\n        <field name=\"model\">mgmtsystem.audit</field>\n        <field name=\"type\">search</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Audits\">\n                <group>\n                    <filter\n                        name=\"current\"\n                        icon=\"terp-document-new\"\n                        domain=\"[('state','=','open')]\"\n                        string=\"Open\"\n                        help=\"Open Audits\"\n                    />\n                    <filter\n                        name=\"closed\"\n                        icon=\"terp-camera_test\"\n                        domain=\"[('state','=','done')]\"\n                        string=\"Closed\"\n                        help=\"Closed Audits\"\n                    />\n                    <separator orientation=\"vertical\" />\n                    <field name=\"name\" />\n                    <field name=\"date\" />\n                    <field name=\"reference\" />\n                    <field name=\"system_id\" />\n                    <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                </group>\n            </search>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_audit_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.audit.form</field>\n        <field name=\"model\">mgmtsystem.audit</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Audit\" version=\"7.0\">\n                <header>\n                    <button\n                        name=\"button_close\"\n                        string=\"Close\"\n                        invisible=\"state not in ['open']\"\n                        type=\"object\"\n                    />\n                    <field name=\"state\" widget=\"statusbar\" select=\"1\" readonly=\"1\" />\n                </header>\n                <sheet string=\"Audit\">\n                    <group col=\"4\" colspan=\"2\">\n                        <field name=\"name\" readonly=\"state == 'done'\" />\n                        <field name=\"reference\" />\n                        <field name=\"date\" readonly=\"state == 'done'\" />\n                        <field\n                            name=\"user_id\"\n                            string=\"Audit Manager\"\n                            required=\"1\"\n                            readonly=\"state == 'done'\"\n                        />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"system_id\" readonly=\"state == 'done'\" />\n                    </group>\n                    <notebook colspan=\"4\">\n                        <page string=\"Auditors\">\n                            <field\n                                name=\"auditor_user_ids\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                                options=\"{'no_create': True}\"\n                                context=\"{'list': 'mgmtsystem_audit.mgmtsystem_audit_res_users_x2m_tree'}\"\n                            />\n                        </page>\n                        <page string=\"Auditees\">\n                            <field\n                                name=\"auditee_user_ids\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                                options=\"{'no_create': True}\"\n                                context=\"{'list': 'mgmtsystem_audit.mgmtsystem_audit_res_users_x2m_tree'}\"\n                            />\n                        </page>\n                        <page string=\"Verification List\">\n                            <field\n                                name=\"line_ids\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                            />\n                        </page>\n                        <page string=\"Strong Points\">\n                            <field\n                                name=\"strong_points\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                            />\n                        </page>\n                        <page string=\"To Improve Points\">\n                            <field\n                                name=\"to_improve_points\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                            />\n                        </page>\n                        <page string=\"Improvement Opportunities\">\n                            <field\n                                name=\"imp_opp_ids\"\n                                domain=\"[('type_action','=','improvement')]\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                            />\n                        </page>\n                        <page string=\"Nonconformities\">\n                            <field\n                                name=\"nonconformity_ids\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                            />\n                        </page>\n                    </notebook>\n                </sheet>\n                <chatter />\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_audit_calendar\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.audit.calendar</field>\n        <field name=\"model\">mgmtsystem.audit</field>\n        <field name=\"type\">calendar</field>\n        <field eval=\"2\" name=\"priority\" />\n        <field name=\"arch\" type=\"xml\">\n            <calendar color=\"name\" date_start=\"date\" string=\"Audits\">\n                <field name=\"name\" />\n                <field name=\"auditor_user_ids\" />\n            </calendar>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_audit_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Audits</field>\n        <field name=\"res_model\">mgmtsystem.audit</field>\n        <field name=\"view_mode\">list,form,calendar</field>\n        <field name=\"view_id\" ref=\"view_mgmtsystem_audit_tree\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_audit_filter\" />\n        <field name=\"context\">{\"search_default_current\":1}</field>\n    </record>\n\n    <menuitem\n        id=\"menu_open_audit\"\n        action=\"open_mgmtsystem_audit_list\"\n        parent=\"mgmtsystem.menu_mgmtsystem_main\"\n        sequence=\"40\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor\"\n    />\n\n    <!-- Nonconformities related to Audits -->\n    <record id=\"view_mgmtsystem_nonconformity_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.form</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <notebook position=\"inside\">\n                <page\n                    string=\"Related Audits\"\n                    groups=\"mgmtsystem.group_mgmtsystem_auditor\"\n                >\n                    <field name=\"audit_ids\" colspan=\"4\" nolabel=\"1\" />\n                </page>\n            </notebook>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/views/res_users.xml",
    "content": "<!-- Copyright 2017 ACSONE SA/NV\n     License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_audit_res_users_x2m_tree\">\n        <field name=\"model\">res.users</field>\n        <field name=\"arch\" type=\"xml\">\n            <list create=\"1\" delete=\"1\">\n                <field name=\"name\" />\n                <field name=\"login\" />\n                <field name=\"lang\" />\n                <field name=\"login_date\" />\n            </list>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_audit/wizard/__init__.py",
    "content": "# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import copy_verification_lines\n"
  },
  {
    "path": "mgmtsystem_audit/wizard/copy_verification_lines.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass CopyVerificationLines(models.TransientModel):\n    \"\"\"Copy Verification Lines.\"\"\"\n\n    _name = \"copy.verification.lines\"\n    _description = \"Copy Verification Lines\"\n\n    audit_src = fields.Many2one(\"mgmtsystem.audit\", \"Choose audit\")\n\n    def copyVerificationLines(self):\n        # Copy verification lines from the chosen audit to the current one\n        audit_proxy = self.env[self._context.get(\"active_model\")]\n        verification_line_proxy = self.env[\"mgmtsystem.verification.line\"]\n        audit_id = self._context.get(\"active_id\")\n        src_id = self.read([\"audit_src\"])[0][\"audit_src\"][0]\n        for line in audit_proxy.browse(src_id).line_ids:\n            verification_line_proxy.create(\n                {\n                    \"seq\": line.seq,\n                    \"name\": line.name,\n                    \"audit_id\": audit_id,\n                    \"procedure_id\": line.procedure_id.id,\n                    \"is_conformed\": False,\n                }\n            )\n        return {\"type\": \"ir.actions.act_window_close\"}\n"
  },
  {
    "path": "mgmtsystem_audit/wizard/copy_verification_lines.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"copy_verification_lines_form_view\" model=\"ir.ui.view\">\n        <field name=\"name\">copy.verification.lines.form</field>\n        <field name=\"model\">copy.verification.lines</field>\n        <field name=\"type\">form</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Copy Verification Lines\">\n                <field name=\"audit_src\" domain=\"[('state','=','done')]\" />\n                <group colspan=\"2\" col=\"3\">\n                    <button string=\"_Cancel\" special=\"cancel\" />\n                    <button string=\"_Copy\" name=\"copyVerificationLines\" type=\"object\" />\n                </group>\n            </form>\n        </field>\n    </record>\n    <record id=\"copy_verification_lines_act_window\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Copy Verification Lines</field>\n        <field name=\"res_model\">copy.verification.lines</field>\n        <field name=\"binding_model_id\" ref=\"model_mgmtsystem_audit\" />\n        <field name=\"view_mode\">form</field>\n        <field name=\"target\">new</field>\n        <field name=\"binding_view_types\">form</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/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=========================\nManagement System - Claim\n=========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:fb4f71a9f1098e4e9f239f3abfe50ed1ed76b5404f16953d4efec4a9d553a1b9\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_claim\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_claim\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis application allows you to track your customers/vendors claims and\ngrievances.\n\nIt is fully integrated with the email gateway so that you can create\nautomatically new claims based on incoming emails.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo configure this module, you need to:\n\n- Go to new menú **\"Management System -> Configuration -> Claim ->\n  Stages** and create stages for claims.\n- Go to new menu **CRM > Configuration > Claim > Categories** and create\n  as many categories as you need.\n\nUsage\n=====\n\n- Go to new menu **Management System -> Claims** and create a new claim.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_claim%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Savoir-faire Linux\n- `Guadaltech <https://www.guadaltech.es>`__:\n\n  - Fernando La Chica <fernando.lachica@guadaltech.es>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_claim>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_claim/__init__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    This module copyright (C) 2015 - present Savoir-faire Linux\n#    (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\nfrom . import models\n"
  },
  {
    "path": "mgmtsystem_claim/__manifest__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\n{\n    \"name\": \"Management System - Claim\",\n    \"version\": \"18.0.1.0.0\",\n    \"author\": \"Savoir-faire Linux,Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem\", \"crm_claim\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"security/mgmtsystem_claim_security.xml\",\n        \"data/claim_sequence.xml\",\n        \"data/mgmtsystem_claim_stage.xml\",\n        \"data/email_template.xml\",\n        \"data/automated_reminder.xml\",\n        \"views/menus.xml\",\n        \"views/mgmtsystem_claim.xml\",\n        \"views/mgmtsystem_claim_stage.xml\",\n        \"views/res_partner_views.xml\",\n    ],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_claim/data/automated_reminder.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"ir_cron_mgmtsystem_claim_reminder\" model=\"ir.cron\">\n        <field name=\"name\">Email Claim Reminders 10 days before due date.</field>\n        <field name=\"user_id\" ref=\"base.user_root\" />\n        <field name=\"interval_number\">1</field>\n        <field name=\"interval_type\">days</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_claim\" />\n        <field name=\"state\">code</field>\n        <field name=\"code\">model.process_reminder_queue()</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/data/claim_sequence.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"seq_mgmtsystem_claim\" model=\"ir.sequence\">\n        <field name=\"name\">Management System Claim</field>\n        <field name=\"code\">mgmtsystem.claim</field>\n        <field name=\"padding\">3</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/data/email_template.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Email template for Claim Reminders -->\n    <record id=\"email_template_new_claim_reminder\" model=\"mail.template\">\n        <field name=\"name\">Reminder to Responsible</field>\n        <field\n            name=\"email_from\"\n        >{{object.create_uid.company_id.email or 'noreply@localhost'}}</field>\n        <field name=\"subject\">Reminder on Action: \"{{object.name}}\"</field>\n        <field name=\"email_to\">{{object.user_id.email}}</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_claim\" />\n        <field name=\"auto_delete\" eval=\"True\" />\n        <field name=\"lang\">{{object.create_uid.partner_id.lang}}</field>\n        <field name=\"body_html\">\n            <![CDATA[\n<p>Hello <t t-out=\"object.user_id.name\"/>,</br>\nA new claim has been assigned to you:\n\n<p>\n<t t-out=\"object.description\"/>\n</p>\n\n<b><a t-att-href=\"object.get_action_url()\"><t t-out=\"object.name\"/></a></b>\n</p>\n\n<p>\nThank you and have a nice day.<br>\n--<br>\nOdoo\n</p>\n            ]]>\n        </field>\n    </record>\n\n    <!-- Email template for Claim Reminders -->\n    <record id=\"email_template_remain_claim_reminder\" model=\"mail.template\">\n        <field name=\"name\">Reminder to Responsible</field>\n        <field\n            name=\"email_from\"\n        >{{object.create_uid.company_id.email or 'noreply@localhost'}}</field>\n        <field name=\"subject\">Reminder on Action: \"{{object.name}}\"</field>\n        <field name=\"email_to\">{{object.user_id.email}}</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_claim\" />\n        <field name=\"auto_delete\" eval=\"True\" />\n        <field name=\"lang\">{{object.create_uid.partner_id.lang}}</field>\n        <field name=\"body_html\">\n            <![CDATA[\n<p>Hello <t t-out=\"object.user_id.name\"/>,</p>\n\n<p>\nThis is an automated message to remind you that the\nfollowing claim is due to be completed in 10 days (<t t-out=\"object.date_deadline\"/>):\n\n<b><a t-att-href=\"object.get_action_url()\"><t t-out=\"object.name\"/></a></b>\n</p>\n\n<p>\n<t t-out=\"object.description\"/>\n</p>\n\n<p>\nThank you and have a nice day.<br>\n--<br>\nOdoo\n</p>\n            ]]>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/data/mgmtsystem_claim_stage.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"stage_draft\" model=\"mgmtsystem.claim.stage\">\n        <field name=\"name\">Draft</field>\n        <field name=\"sequence\">0</field>\n        <field name=\"case_default\" eval=\"True\" />\n    </record>\n\n    <record id=\"stage_pending\" model=\"mgmtsystem.claim.stage\">\n        <field name=\"name\">Pending</field>\n        <field name=\"sequence\">250</field>\n        <field name=\"case_default\" eval=\"True\" />\n    </record>\n\n    <record id=\"stage_open\" model=\"mgmtsystem.claim.stage\">\n        <field name=\"name\">Open</field>\n        <field name=\"sequence\">500</field>\n        <field name=\"case_default\" eval=\"True\" />\n    </record>\n\n    <record id=\"stage_close\" model=\"mgmtsystem.claim.stage\">\n        <field name=\"name\">Close</field>\n        <field name=\"sequence\">750</field>\n        <field name=\"case_default\" eval=\"True\" />\n    </record>\n\n    <record id=\"stage_cancel\" model=\"mgmtsystem.claim.stage\">\n        <field name=\"name\">Cancel</field>\n        <field name=\"sequence\">750</field>\n        <field name=\"case_default\" eval=\"True\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_claim\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-05-22 13:07+0000\\n\"\n\"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\\n\"\n\"Language-Team: German (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/de/)\\n\"\n\"Language: de\\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: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\n#, fuzzy\nmsgid \"# Mgmt Claims\"\nmsgstr \"Forderungen\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Maßnahmenart\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"Maßnahmenart\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"Alle laufenden Forderungen\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\nmsgid \"Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"Kategorie\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"Forderung\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"Forderungsdatum\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"Forderungsbeschreibung\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"Forderungssteller\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"Forderungsinhalt\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"Beschreibung des Vorgang\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"Forderungen\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\n#, fuzzy\nmsgid \"Close\"\nmsgstr \"Abgeschlossen\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"Abgeschlossen\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"Abschluss\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"Unternehmen\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"Aktuell\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"Abschlußdatum\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"Daten\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"Frist\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"Beschreibung\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"Laufende Forderungen und Entwürfe\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"EMail\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"Nachverfolgung\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"Gruppiert nach...\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\n#, fuzzy\nmsgid \"Is Follower\"\nmsgstr \"Nachverfolgung\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"Meldungen\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\n#, fuzzy\nmsgid \"Mgmt Claims\"\nmsgstr \"Forderungen\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\n#, fuzzy\nmsgid \"Model Reference\"\nmsgstr \"Bezug\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\n#, fuzzy\nmsgid \"Next Activity Deadline\"\nmsgstr \"Datum der nächsten Maßnahme\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\n#, fuzzy\nmsgid \"Next Activity Type\"\nmsgstr \"Datum der nächsten Maßnahme\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\n#, fuzzy\nmsgid \"Number of Actions\"\nmsgstr \"Nächste Maßnahme\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"Partner\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"In Bearbeitung\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"Bezug\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"Behebung\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"Maßnahmen zur Behebung\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"Zuständigkeiten\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"Verantwortlich\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"Verantwortlicher Benutzer\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"Hauptursache\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"Hauptursachen\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"Verkaufsteam\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"Forderungen durchsuchen\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"Stufe\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"Stufen\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\"Diese Email Anschriften erhalten eine Kopie (CC) aller ein- und ausgehenden \"\n\"Emails zu diesem Vorgang. Trenne mehrere Email Kopie Empfänger durch eine \"\n\"Komma separierte Auflistung in diesem Feld.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"Problemzuständigkeit\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"Art\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"Nicht zugeordnete Forderungen\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"Emails der Beobachter\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n\n#~ msgid \"Creation Date\"\n#~ msgstr \"Erstellungsdatum\"\n\n#~ msgid \"Update Date\"\n#~ msgstr \"Aktualisierungsdatum\"\n\n#~ msgid \"Corrective Action\"\n#~ msgstr \"Korrektivmaßnahme\"\n\n#~ msgid \"High\"\n#~ msgstr \"Hoch\"\n\n#~ msgid \"Low\"\n#~ msgstr \"Niedrig\"\n\n#~ msgid \"Normal\"\n#~ msgstr \"Normal\"\n\n#~ msgid \"Notify the person in charge of the new claim\"\n#~ msgstr \"Die zuständige Person über die neue Forderung benachrichtigen\"\n\n#~ msgid \"Open Claims\"\n#~ msgstr \"Gegenwärtige Forderungen\"\n\n#~ msgid \"Preventive Action\"\n#~ msgstr \"Präventivmaßnahme\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/es.po",
    "content": "# Spanish translation for openerp-mgmtsystem\n# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-07-25 18:17+0000\\n\"\n\"PO-Revision-Date: 2024-02-08 20:34+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish <es@li.org>\\n\"\n\"Language: es\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 4.17\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\nmsgid \"# Mgmt Claims\"\nmsgstr \"# Gestión de Reclamaciones\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Acción necesaria\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"Tipo de acción\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"Activo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\nmsgid \"Activities\"\nmsgstr \"Actividades\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Actividad Decoración de excepción\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"Activity State\"\nmsgstr \"Estado de la actividad\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icono del tipo de actividad\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"Todas las reclamaciones pendientes\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Recuento de anexos\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\nmsgid \"Cancel\"\nmsgstr \"Cancelar\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"Categoría\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"Reclamación\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"Fecha de la reclamación\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"Descripción de la reclamación\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"Informe de reclamaciones\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"Asunto de la reclamación\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"Reclamación para sistema de gestión\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"Etapas de reclamación para el sistema de gestión\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"Descripción de la reclamación/acción\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"Reclamaciones\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\"Haga clic para configurar una nueva etapa en la tramitación de las \"\n\"reclamaciones del Sistema de Gestión.\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"Cerrado\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"Cierre\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"Común a todos los equipos\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"Actual\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"Fecha de cierre\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"Fechas\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"Fecha límite\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"Descripción\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"Correo electrónico de destino para la pasarela de correo electrónico.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre de la pantalla\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"Borradores y reclamaciones abiertas\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"Correo electrónico\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\"Recordatorios de reclamaciones por correo electrónico 10 días antes de la \"\n\"fecha de vencimiento.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"Seguimiento\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguidores (Socios)\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Icono de fuente impresionante, por ejemplo fa-tasks\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupar por...\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"tiene un mensaje\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icono\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Icono para indicar una actividad de excepción.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Si está marcada, los nuevos mensajes requieren su atención.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Si está marcada, algunos mensajes tienen un error de entrega.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\"Si marca este campo, esta etapa se propondrá por defecto en cada equipo de \"\n\"ventas. No se asignará esta etapa a los equipos existentes.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"es seguidor/a\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"actualizado por última vez por\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"actualizado por última vez el\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\"Enlace entre etapas y equipos de ventas. Cuando se establece, limita la \"\n\"etapa actual a los equipos de ventas seleccionados.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"Sistema de gestión Etapa de reclamación\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"Sistema de gestión Etapas de reclamación\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"Sistema de gestión de reclamaciones\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Error de entrega del mensaje\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"mensajes\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\nmsgid \"Mgmt Claims\"\nmsgstr \"Gestión de reclamaciones\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"Reclamación del sistema de gestión\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\nmsgid \"Model Reference\"\nmsgstr \"Modelo de referencia\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Fecha límite de Mi Actividad\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"Nuevo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Próximo evento del calendario de actividades\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Fecha limite proxima actividad\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Resumen de la siguiente actividad\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo de la siguiente actividad\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"número de acciones\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"número de errores\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensajes que requieren una acción\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"número de mensajes con error de entrega\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"Abrir\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"socio\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"Pendiente\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"Teléfono\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"Prioridad\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\"Registre y realice el seguimiento de las reclamaciones de sus clientes. Las \"\n\"reclamaciones pueden estar vinculadas a un pedido de venta o a un lote.\\n\"\n\"                           Puede enviar correos electrónicos con archivos \"\n\"adjuntos y conservar el historial completo de una reclamación (correos \"\n\"electrónicos enviados, intervención\\n\"\n\"                           tipo de intervención, etc.). Las reclamaciones \"\n\"pueden vincularse automáticamente a una dirección de correo electrónico \"\n\"mediante el módulo de pasarela de correo.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"Referencia\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"Recordatorio sobre la acción: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"Recordatorio para el/la responsable\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"Resolución\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"Acciones de Resolución\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"Responsabilidades\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"Usuario Responsable\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\"Responsable del equipo comercial. Definir usuario responsable y cuenta de \"\n\"correo para pasarela de correo.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"Causa raíz\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"Causas Raices\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Error de Entrega SMS\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"Equipos de Venta\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"Buscar Reclamaciones\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Secuencia\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"Etapa\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nombre de etapa\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"etapas\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Estado en función de las actividades\\n\"\n\"Atrasada: La fecha de vencimiento ya ha pasado\\n\"\n\"Hoy: La fecha de la actividad es hoy\\n\"\n\"Planificada: Actividades futuras.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"Equipos\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\"Estas direcciones de correo electrónico se añadirán al campo CC de todos los \"\n\"correos electrónicos entrantes y salientes de este registro antes de ser \"\n\"enviados. Separe múltiples direcciones de correo electrónico con una coma\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"Responsable del problema\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"tipo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo (o clase) de actividad excepcional registrada.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"Reclamaciones sin asignar\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"Se usa para ordenar las etapas. Valores menores son mejores.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"Correos Electrónicos de los observadores\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"mensajes de la página web\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"historial de la comunicación en la página web\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                                    claim entered in the system. The stages \"\n\"define all the steps\\n\"\n\"                                    required for the resolution of a claim.\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</br>\\n\"\n#~ \"A new claim has been assigned to you:\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you and have a nice day.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hola <t t-out=\\\"object.user_id.name\\\"/>,</br>\\n\"\n#~ \"Se le ha asignado una nueva demanda:\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Gracias y que tenga un buen día.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"This is an automated message to remind you that the\\n\"\n#~ \"following claim is due to be completed in 10 days (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you and have a nice day.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hola <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Este es un mensaje automático para recordarle que la\\n\"\n#~ \"siguiente reclamación debe completarse en 10 días (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Gracias y que tenga un buen día.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación por\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Archivo adjunto principal\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"No Conformidad\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Recuento De Disconformidades\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Número de mensajes que requieren una acción\"\n\n#~ msgid \"Creation Date\"\n#~ msgstr \"Fecha de creación\"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Seguidores (Canales)\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_claim\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\n# Maxime Chambreuil <maxime.chambreuil@gmail.com>, 2015\n# Maxime Vanderhaeghe <mv@taktik.be>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-08-26 00:08+0000\\n\"\n\"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\\n\"\n\"Language-Team: French (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\n#, fuzzy\nmsgid \"# Mgmt Claims\"\nmsgstr \"Réclamations\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Type d'action\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"Type d'action\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"Active\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Active\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Active\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"Toutes les réclamations en attente\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\n#, fuzzy\nmsgid \"Cancel\"\nmsgstr \"Annuler\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"Catégorie\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"Réclamation\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"Date de la réclamation\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"Description de la réclamation\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"Rapporteur de la réclamation\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"Objet de la réclamation\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"Description de la réclamation\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"Réclamations\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\n#, fuzzy\nmsgid \"Close\"\nmsgstr \"Fermée\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"Fermée\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"Fermeture\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"Commun à toutes les équipes\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"Société\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Créé par\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Créé le\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"En cours\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"Date de fermeture\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"Dates\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"Date limite\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"Description\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"Courriel de destination pour la passerelle de courriel.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\n#, fuzzy\nmsgid \"Draft\"\nmsgstr \"Brouillon\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"Réclamations brouillon ou ouvertes\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"Courriel\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"Suivi\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Abonnés\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\n#, fuzzy\nmsgid \"Followers (Partners)\"\nmsgstr \"Abonnés\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"Regrouper par...\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"Identifiant\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\n#, fuzzy\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Si coché, les nouveaux messages demanderont votre attention.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\n#, fuzzy\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Si coché, les nouveaux messages demanderont votre attention.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\"Si vous cochez ce champ, cette étape sera proposé par défaut à chaque équipe \"\n\"commerciale. Cela n'assignera pas cette étape aux équipes existantes.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\n#, fuzzy\nmsgid \"Is Follower\"\nmsgstr \"Est un abonné\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Mise à jour par\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Mis à jour le\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\"Lien entre les étapes et les équipes commerciales. Lorsque renseigné, cela \"\n\"limite cette étape aux équipes commerciales sélectionnées.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"Messages\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\n#, fuzzy\nmsgid \"Mgmt Claims\"\nmsgstr \"Réclamations\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\n#, fuzzy\nmsgid \"Model Reference\"\nmsgstr \"Référence\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\n#, fuzzy\nmsgid \"Next Activity Deadline\"\nmsgstr \"Date de la prochaine action\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\n#, fuzzy\nmsgid \"Next Activity Type\"\nmsgstr \"Date de la prochaine action\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\n#, fuzzy\nmsgid \"Number of Actions\"\nmsgstr \"Prochaine action\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"Partenaire\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"En attente\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"Téléphone\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"Priorité\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"Référence\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"Résolution\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"Actions de résolution\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"Responsabilités\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\"Équipe de vente responsable. Définissez un utilisateur responsable et un \"\n\"compte de courriel pour la passerelle de courriel.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"Cause première\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"Causes d'origine\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"Équipe commerciale\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"Recherche de réclamations\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Séquence\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"Étape\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Étape\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"Étapes\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\"Ces adresses courriels seront ajoutées au champ CC de tous les courriels \"\n\"entrants et sortants de cet enregistrement. Séparez plusieurs adresses par \"\n\"des virgules\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"Responsable du problème\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"Réclamations non-assignées\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"Utilisé pour ordonner les étapes. Le plus petit, c'est mieux.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"Adresses courriels des observateurs\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Messages du site web\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Historique des communications du site web\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Mis à jour le\"\n\n#~ msgid \"Creation Date\"\n#~ msgstr \"Date de création\"\n\n#, fuzzy\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Abonnés\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Messages non-lus\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"Record and track your customers' claims. Claims may be linked to a sales \"\n#~ \"order or a lot.\\n\"\n#~ \"                You can send emails with attachments and keep the full \"\n#~ \"history for a claim (emails sent, intervention\\n\"\n#~ \"                type and so on). Claims may automatically be linked to an \"\n#~ \"email address using the mail gateway module.\"\n#~ msgstr \"\"\n#~ \"Enregistrez et faîtes le suivi des réclamations de vos clients. Les \"\n#~ \"réclamations peuvent être liées à une commande de ventes ou un lot. Vous \"\n#~ \"pouvez envoyer des courriels avec des pièces jointes et conserver \"\n#~ \"l'historique de la réclamation (courriels envoyés, type d'intervention). \"\n#~ \"Les réclamations peuvent être liées automatiquement à une adresse \"\n#~ \"courriel en utilisant la passerelle de messagerie.\"\n\n#~ msgid \"Unread Messages\"\n#~ msgstr \"Messages non-lus\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Messages non-lus\"\n\n#~ msgid \"Update Date\"\n#~ msgstr \"Date de mise-à-jour\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"        \\n\"\n#~ \"<p>\\n\"\n#~ \"  Hello,</br>\\n\"\n#~ \"  A new claim has been assigned to you:\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"  <a href=\\\"http://localhost:8080\\\">http://localhost:8080</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"  ${object.description}\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"</p>\\n\"\n#~ \"--\\n\"\n#~ \"<p>\\n\"\n#~ \"  OpenERP\\n\"\n#~ \"</p>\\n\"\n#~ \"        \\n\"\n#~ \"      \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"<p>Bonjour,</p>\\n\"\n#~ \"<p>Une nouvelle action vous a été assigné :\\n\"\n#~ \"  <a href=\\\"http://localhost:8080\\\">http://localhost:8080</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>${object.description}</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"  Merci<br />\\n\"\n#~ \"  --<br />\\n\"\n#~ \"  Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"        \\n\"\n#~ \"      \"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n\n#~ msgid \"Actions\"\n#~ msgstr \"Actions\"\n\n#~ msgid \"Claim stages\"\n#~ msgstr \"Étapes\"\n\n#~ msgid \"Corrective Action\"\n#~ msgstr \"Action corrective\"\n\n#~ msgid \"Date of the last message posted on the record.\"\n#~ msgstr \"Date du dernier message publié sur cet enregistrement\"\n\n#~ msgid \"High\"\n#~ msgstr \"Haute\"\n\n#~ msgid \"\"\n#~ \"Holds the Chatter summary (number of messages, ...). This summary is \"\n#~ \"directly in html format in order to be inserted in kanban views.\"\n#~ msgstr \"\"\n#~ \"Contient le résumé de la discussion (nombre de messages, ...). Ce résumé \"\n#~ \"est au format HTML pour permettre son utilisation dans les vues kanban.\"\n\n#~ msgid \"Last Message Date\"\n#~ msgstr \"Date du dernier message\"\n\n#~ msgid \"Low\"\n#~ msgstr \"Basse\"\n\n#~ msgid \"Messages and communication history\"\n#~ msgstr \"Historique des messages et communications\"\n\n#~ msgid \"Normal\"\n#~ msgstr \"Normale\"\n\n#~ msgid \"Notify the person in charge of the new claim\"\n#~ msgstr \"Notifie la personne en charge de la nouvelle réclamation\"\n\n#~ msgid \"Open Claims\"\n#~ msgstr \"Réclamations ouvertes\"\n\n#~ msgid \"Preventive Action\"\n#~ msgstr \"Action préventive\"\n\n#~ msgid \"Sections\"\n#~ msgstr \"Sections\"\n\n#~ msgid \"Share a note...\"\n#~ msgstr \"Partager une note\"\n\n#~ msgid \"Summary\"\n#~ msgstr \"Résumé\"\n\n#~ msgid \"board.mgmtsystem.claim.act_window\"\n#~ msgstr \"board.mgmtsystem.claim.act_window\"\n\n#~ msgid \"close\"\n#~ msgstr \"Fermer\"\n\n#~ msgid \"open\"\n#~ msgstr \"Ouvert\"\n\n#~ msgid \"pending\"\n#~ msgstr \"En attente\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_claim\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2026-01-19 13:50+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.15.2\\n\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\nmsgid \"# Mgmt Claims\"\nmsgstr \"Nr. reclami gestione\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"Ti è stato assegnato un nuovo reclamo:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Grazie e buona giornata.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\"<p>Salve <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Questo è un messaggio automatico per ricordarti che il seguente reclamo\\n\"\n\"deve essere completato in 10 giorni  (<t t-out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Grazie e buona giornata.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Azione richiesta\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"Tipo azione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"Attivo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\nmsgid \"Activities\"\nmsgstr \"Attività\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decorazione eccezione attività\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"Activity State\"\nmsgstr \"Stato attività\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icona tipo attività\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"Tutti i reclami aperti\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Conteggio allegati\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\nmsgid \"Cancel\"\nmsgstr \"Annulla\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"Categoria\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"Reclamo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"Data reclamo\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"Descrizione reclamo\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"Referente reclamo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"Oggetto reclamo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"Reclamo per sistema di gestione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"Fase reclamo per sistema di gestione\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"Descrizione reclamo/azione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"Reclami\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\"Cliccare per impostare una nuova fase nell'elaborazione dei reclami del \"\n\"sistema di gestione.\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\nmsgid \"Close\"\nmsgstr \"Chiudi\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"Chiuso\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"Chiusura\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"Comune a tutti i team\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contatto\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"Attuale\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"Data chiusura\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"Date\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"Scadenza\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"Descrizione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"Email destinazione per il gateway email.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\nmsgid \"Draft\"\nmsgstr \"Bozza\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"Reclami in bozza e aperti\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"E-mail\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"Promemoria email reclami 10 giorni prima della scadenza.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"Approfondimento\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguito da\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguito da (partner)\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Icona Font Awesome es. fa-tasks\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"Raggruppa per...\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"Ha un messaggio\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icona\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Icona per indicare un'attività eccezione.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se selezionata, nuovi messaggi richiedono attenzione.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se selezionata, alcuni messaggi hanno un errore di consegna.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\"Se si spunta questo campo, la fase verrà proposta come predefinita ad ogni \"\n\"team vendita. Questa fase non verrà assegnata ai team esistenti.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Segue\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\"Collegamento tra fasi e team vendite. Quando impostato, limita la fase \"\n\"attuale ai team di vendita selezionati.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"Fase reclamo sistema di gestione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"Fasi reclamo fasi di gestione\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"Reclami sistema di gestione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Errore di consegna messaggio\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"Messaggi\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\nmsgid \"Mgmt Claims\"\nmsgstr \"Reclami gestione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"Reclamo sistema gestione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\nmsgid \"Model Reference\"\nmsgstr \"Riferimento modello\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Scadenza mia attività\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"Nuovo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Evento calendario attività successiva\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Scadenza prossima attività\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Riepilogo prossima attività\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo prossima attività\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Numero di azioni\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Numero di errori\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Numero di messaggi che richiedono un'azione\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Numero di messaggi con errore di consegna\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"Aperto\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"Partner\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"In attesa\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"Telefono\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"Priorità\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\"Registra e traccia i reclami dei tuoi clienti. I reclami possono essere \"\n\"collegati a un ordine di vendita o a un lotto.\\n\"\n\"            Si possono spedire email con allegati e avere la storia completa \"\n\"di un reclamo (email inviate, tipi intervento\\n\"\n\"            e così via). I reclami possono essere collegati automaticamente \"\n\"ad un indirizzo email utilizzando il modulo email gateway.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"Riferimento\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"Promemoria su azione: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"Promemoria al responsabile\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"Risoluzione\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"Azioni risoluzione\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"Responsabilità\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"Responsabile\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"Utente responsabile\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\"Team vendite responsabile. Definire l'utente responsabile e un indirizzo \"\n\"email per il gateway mail.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"Causa radice\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"Cause radice\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Errore consegna SMS\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"Team di vendita\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"Cerca reclami\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sequenza\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nome fase\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"Fasi\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Stato in base alle attività\\n\"\n\"Scaduto: la data richiesta è trascorsa\\n\"\n\"Oggi: la data attività è oggi\\n\"\n\"Pianificato: attività future.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"Squadre\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\"Questo indirizzo email verrà aggiunto nel campo CC di tutte le email in \"\n\"entrata e uscita per questo record prima di essere spedito. Separare \"\n\"indirizzi multipli con una virgola\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"Responsabile problema\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo di attività eccezione sul record.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"Reclami non assegnati\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"Utilizzato per ordinare le fasi. Prima il più basso.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"Email osservatori\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Messaggi sito web\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Storico comunicazioni sito web\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n\"Si possono creare fasi dei reclami del sistema di gestione per classificare \"\n\"lo stato di ogni\\n\"\n\"                reclamo inserito nel sistema. Le fasi definiscono tutti i \"\n\"passi richiesti\\n\"\n\"                per la soluzione di un reclamo.\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</br>\\n\"\n#~ \"A new claim has been assigned to you:\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you and have a nice day.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Salve<t t-out=\\\"object.user_id.name\\\"/>,</br>\\n\"\n#~ \"Ti è stato assegnato un reclamo:\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Grazie e buona giornata.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"This is an automated message to remind you that the\\n\"\n#~ \"following claim is due to be completed in 10 days (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you and have a nice day.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Salve<t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Questo è un messaggio automatico per ricordarti che il\\n\"\n#~ \"reclamo seguente deve essere completato entro 10 giorni (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Grazie e buona giornata.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Allegato principale\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Non conformità\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Conteggio non conformità\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Numero di messaggi che richiedono un'azione\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Numero di messaggi non letti\"\n\n#~ msgid \"Unread Messages\"\n#~ msgstr \"Messaggi non letti\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Conteggio messaggi non letti\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/mgmtsystem_claim.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_claim\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: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\nmsgid \"# Mgmt Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\nmsgid \"Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System \"\n\"claims.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\nmsgid \"Mgmt Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\nmsgid \"Model Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email address using the mail gateway module.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of every\\n\"\n\"                claim entered in the system. The stages define all the steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_claim\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-05-22 13:07+0000\\n\"\n\"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\\n\"\n\"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\n#, fuzzy\nmsgid \"# Mgmt Claims\"\nmsgstr \"Reklamasjoner\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Tiltakstype\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"Tiltakstype\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"Alle utestående krav.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\nmsgid \"Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"Kategori\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"Reklamasjon\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"Reklamasjonsdato\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"Reklamasjonsbeskrivelse\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"Reklamasjonsrapportør\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"Reklamasjonsobjekt\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"Beskrivelse av krav/tiltak\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"Reklamasjoner\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\n#, fuzzy\nmsgid \"Close\"\nmsgstr \"Stengt\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"Stengt\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"Stengning\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"Firma\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"Gjeldende\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"Dato lukket\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"Datoer\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"Frist\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"Beskrivelse\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"Utkas og åpne reklamasjoner\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"E-post\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"Følg opp.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"Grupper etter ...\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\n#, fuzzy\nmsgid \"Is Follower\"\nmsgstr \"Følg opp.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"Meldinger\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\n#, fuzzy\nmsgid \"Mgmt Claims\"\nmsgstr \"Reklamasjoner\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\n#, fuzzy\nmsgid \"Model Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\n#, fuzzy\nmsgid \"Next Activity Deadline\"\nmsgstr \"Dato for neste tiltak\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\n#, fuzzy\nmsgid \"Next Activity Type\"\nmsgstr \"Dato for neste tiltak\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\n#, fuzzy\nmsgid \"Number of Actions\"\nmsgstr \"Neste handling\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"Partner\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"Venter\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"Telefon\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"Prioritet\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"Løsning\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"Tiltak for løsning\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"Ansvarsområder\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"Ansvarlig\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"Ansvarlig bruker\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"Rotårsak\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"Grunnleggende årsaker\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"Salgsteam\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"Søk i krav\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"Nivå\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"Stadier\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\"Disse e-postadressene vil bli lagt til kopi-feltet for alle inngående og \"\n\"utgående e-poster før de sendes. Skill flere e-postadresser med komma.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"Problemansvarlig\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"Reklamasjoner uten ansvarlige\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"Overvåkeres E-poster.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n\n#~ msgid \"Creation Date\"\n#~ msgstr \"Opprettelsesdato\"\n\n#~ msgid \"Update Date\"\n#~ msgstr \"Dato oppdatert\"\n\n#~ msgid \"Actions\"\n#~ msgstr \"Tiltak\"\n\n#~ msgid \"Corrective Action\"\n#~ msgstr \"Korrigerende handling.\"\n\n#~ msgid \"High\"\n#~ msgstr \"Høy\"\n\n#~ msgid \"Low\"\n#~ msgstr \"Lav\"\n\n#~ msgid \"Normal\"\n#~ msgstr \"Normal\"\n\n#~ msgid \"Notify the person in charge of the new claim\"\n#~ msgstr \"Meddel personen som har ansvar for den nye reklamasjonen\"\n\n#~ msgid \"Open Claims\"\n#~ msgstr \"Åpne reklamasjoner\"\n\n#~ msgid \"Preventive Action\"\n#~ msgstr \"Forebyggende Tiltak\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_claim\n#\n# Translators:\n# danimaribeiro <danimaribeiro@gmail.com>, 2015\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2024-06-11 17:37+0000\\n\"\n\"Last-Translator: Rodrigo Macedo \"\n\"<sottomaiormacedotec@users.noreply.translation.odoo-community.org>\\n\"\n\"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-\"\n\"management-system-8-0/language/pt_BR/)\\n\"\n\"Language: pt_BR\\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: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\n#, fuzzy\nmsgid \"# Mgmt Claims\"\nmsgstr \"Reclamações\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Tipo de ação\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"Tipo de ação\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"Ativo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Ativo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decoração de Exceção de Atividade\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Ativo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Ícone de tipo de atividade\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"Solicitações pendentes\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\n#, fuzzy\nmsgid \"Cancel\"\nmsgstr \"cancel\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"Categoria\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"Reclamação\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"Data da Reclamação\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"Descrição da Reclamação\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"Reclamante\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"Assunto da Reclamação\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"Descrição da Reclamação/Ação\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"Reclamações\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\n#, fuzzy\nmsgid \"Close\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"Encerramento\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"Comum a todos os times\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"Organização\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em \"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"Atual\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"Data de Fechamento\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"Datas\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"Prazo final\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"Destino e-mail para portal de Correio Eletrônico.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\n#, fuzzy\nmsgid \"Draft\"\nmsgstr \"draft\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"Reclamações abertas ou em rascunho\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"E-mail\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"Encaminhar\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\n#, fuzzy\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguidores\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Ícone incrível da fonte, por ex. fa-tasks\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupar Por...\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\n#, fuzzy\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se marcado novas mensagens requerem sua atenção.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\n#, fuzzy\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se marcado novas mensagens requerem sua atenção.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\"Se você marcar este campo, o estágio vai ser proposto como padrão em cada \"\n\"time de vendas. Ele não vai usar este estágio para times existentes.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\n#, fuzzy\nmsgid \"Is Follower\"\nmsgstr \"É um seguidor\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última atualização por\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última atualização em\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\"Link entre estágio e times de vendas. Quando setado isto limita o estágio \"\n\"atual aos times selecionados.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"Mensagens\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\n#, fuzzy\nmsgid \"Mgmt Claims\"\nmsgstr \"Reclamações\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\n#, fuzzy\nmsgid \"Model Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Prazo da minha atividade\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\n#, fuzzy\nmsgid \"Next Activity Deadline\"\nmsgstr \"Data da Próxima Ação\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\n#, fuzzy\nmsgid \"Next Activity Type\"\nmsgstr \"Data da Próxima Ação\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\n#, fuzzy\nmsgid \"Number of Actions\"\nmsgstr \"Próxima ação\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"Parceiro\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"Pendente\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"Telefone\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"Prioridade\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"Solução\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"Ações de Resolução\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"Responsabilidades\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"Usuário responsável\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\"Time de vendas responsável. Defina usuário responsável e conta de email para \"\n\"gateway de e-mail.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"Origem do Problema\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"Origens do Problema\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"Equipe de Vendas\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"Pesquisar Reclamações\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sequência\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"Estágio\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nome do estágio\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"Estágios\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\"Estes endereços de e-mail serão adicionados no campo CC de todas as entradas \"\n\"e saídas de e-mails para este registro antes de serem enviados. Separe \"\n\"múltiplos endereços de e-mail com vírgula.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"Responsável pelo Problema\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"Solicitações em aberto\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"Usado para ordenar estágios. Menor é melhor.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"Emails dos Observadores\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Mensagens do website\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Histórico de mensagens do site\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última atualização em\"\n\n#~ msgid \"Creation Date\"\n#~ msgstr \"Data da criação\"\n\n#, fuzzy\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Seguidores\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Mensagens não lidas\"\n\n#~ msgid \"Unread Messages\"\n#~ msgstr \"Mensagens não lidas\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Mensagens não lidas\"\n\n#~ msgid \"Update Date\"\n#~ msgstr \"Data de atualização\"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n\n#~ msgid \"Actions\"\n#~ msgstr \"Ações\"\n\n#~ msgid \"Claim stages\"\n#~ msgstr \"Estágios de solicitação\"\n\n#~ msgid \"Corrective Action\"\n#~ msgstr \"Ação Corretiva\"\n\n#~ msgid \"Date of the last message posted on the record.\"\n#~ msgstr \"Data da última mensagem postada no registro\"\n\n#~ msgid \"High\"\n#~ msgstr \"Alta\"\n\n#~ msgid \"\"\n#~ \"Holds the Chatter summary (number of messages, ...). This summary is \"\n#~ \"directly in html format in order to be inserted in kanban views.\"\n#~ msgstr \"\"\n#~ \"Contém o resumo do mural(número de mensagens, ...). Este resumo é \"\n#~ \"diretamente em formato html para ser inserido nas vistas kanban.\"\n\n#~ msgid \"Last Message Date\"\n#~ msgstr \"Última data de mensagem\"\n\n#~ msgid \"Low\"\n#~ msgstr \"Baixa\"\n\n#~ msgid \"Messages and communication history\"\n#~ msgstr \"Mensagens e histórico de comunicação\"\n\n#~ msgid \"Normal\"\n#~ msgstr \"Normal\"\n\n#~ msgid \"Notify the person in charge of the new claim\"\n#~ msgstr \"Notificar a pessoa responsável pela nova reclamação\"\n\n#~ msgid \"Open Claims\"\n#~ msgstr \"Reclamações abertas\"\n\n#~ msgid \"Preventive Action\"\n#~ msgstr \"Ação Preventiva\"\n\n#~ msgid \"Sections\"\n#~ msgstr \"Seções\"\n\n#~ msgid \"Share a note...\"\n#~ msgstr \"Compartilhar uma nota..\"\n\n#~ msgid \"Summary\"\n#~ msgstr \"Sumário\"\n\n#~ msgid \"board.mgmtsystem.claim.act_window\"\n#~ msgstr \"board.mgmtsystem.claim.act_window\"\n\n#~ msgid \"close\"\n#~ msgstr \"close\"\n\n#~ msgid \"open\"\n#~ msgstr \"open\"\n\n#~ msgid \"pending\"\n#~ msgstr \"pending\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_claim\n#\n# Translators:\n# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2026-02-04 05:33+0000\\n\"\n\"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\\n\"\n\"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-management-system-\"\n\"8-0/language/sl/)\\n\"\n\"Language: sl\\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3;\\n\"\n\"X-Generator: Weblate 5.15.2\\n\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\n#, fuzzy\nmsgid \"# Mgmt Claims\"\nmsgstr \"Zahtevki\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Tip ukrepa\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"Tip ukrepa\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"Aktivno\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Aktivno\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\n#, fuzzy\nmsgid \"Activity State\"\nmsgstr \"Aktivno\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"Zahtevki na čakanju\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\n#, fuzzy\nmsgid \"Cancel\"\nmsgstr \"preklic\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"Kategorija\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"Zahtevek\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"Datum zahtevka\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"Opis zahtevka\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"Prijavitelj zahtevka\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"Predmet zahtevka\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"Zahtevek/Opis ukrepa\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"Zahtevki\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\n#, fuzzy\nmsgid \"Close\"\nmsgstr \"Zaključeno\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"Zaključeno\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"Zaključek\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"Skupno vsem ekipam\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"Družba\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"Trenutno\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"Datum zaključka\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"Datumi\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"Rok izvedbe\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"Opis\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"Ciljni e-poštni naslov.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\n#, fuzzy\nmsgid \"Draft\"\nmsgstr \"osnutek\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"Osnutki zahtevkov in odprti zahtevki\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"E-pošta\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"Nadaljnje ukrepanje\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Sledilci\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\n#, fuzzy\nmsgid \"Followers (Partners)\"\nmsgstr \"Sledilci\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"Združi po...\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\n#, fuzzy\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Če je označeno, zahtevajo nova sporočila vašo pozornost.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\n#, fuzzy\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Če je označeno, zahtevajo nova sporočila vašo pozornost.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\"Če označite to polje, bo ta stopnja privzeto predlagana vsaki prodajni \"\n\"ekipi, ne bo pa dodeljena obstoječim ekipam.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\n#, fuzzy\nmsgid \"Is Follower\"\nmsgstr \"Je sledilec\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnjič posodobil\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\"Povezava med stopnjami in prodajnimi ekipami. Ko je nastavljeno, omejuje \"\n\"trenutno stopnjo le za izbrane prodajne ekipe.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"Sporočila\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\n#, fuzzy\nmsgid \"Mgmt Claims\"\nmsgstr \"Zahtevki\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\n#, fuzzy\nmsgid \"Model Reference\"\nmsgstr \"Sklic\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\n#, fuzzy\nmsgid \"Next Activity Deadline\"\nmsgstr \"Datum naslednjega ukrepa\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\n#, fuzzy\nmsgid \"Next Activity Type\"\nmsgstr \"Datum naslednjega ukrepa\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\n#, fuzzy\nmsgid \"Number of Actions\"\nmsgstr \"Naslednji ukrep\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"Partner\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"Na čakanju\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"Telefon\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"Prioriteta\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"Sklic\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"Resolucija\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"Resolucijski ukrepi\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"Odgovornosti\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"Odgovoren\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"Odgovorni uporabnik\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\"Odgovorna prodajna ekipa. Določite odgovornega uporabnika in e-poštni naslov.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"Osnovni vzrok\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"Osnovni vzroki\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"Prodajna ekipa\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"Iskanje zahtevkov\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Zaporedje\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"Stopnja\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Naziv stopnje\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"Stopnje\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\"Ti e-poštni naslovni bodo dodani v polje CC za vso vhodno in izhodno pošto \"\n\"glede tega zapisa. V primeru več naslovov jih ločujte z vejico.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"Odgovorni za težave\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"Tip\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"Nedodeljeni zahtevki\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"Uporabljeno za vrstni red stopenj. Nižje je bolje.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"E-pošta opazovalcev\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Sporočila spletne strani\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Kronologija komunikacij spletne strani\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič posodobljeno\"\n\n#~ msgid \"Creation Date\"\n#~ msgstr \"Datum nastanka\"\n\n#, fuzzy\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Sledilci\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Neprebrana sporočila\"\n\n#, fuzzy\n#~ msgid \"\"\n#~ \"Record and track your customers' claims. Claims may be linked to a sales \"\n#~ \"order or a lot.\\n\"\n#~ \"                You can send emails with attachments and keep the full \"\n#~ \"history for a claim (emails sent, intervention\\n\"\n#~ \"                type and so on). Claims may automatically be linked to an \"\n#~ \"email address using the mail gateway module.\"\n#~ msgstr \"\"\n#~ \"Knjiženje in sledenje reklamacijskim zahtevkom kupcev. Zahtevki so lahko \"\n#~ \"povezani s prodajnim nalogom ali lotom. Pošiljate lahko e-pošto s \"\n#~ \"prilogami in vodite celotno zgodovino zahtevka (poslana e-pošta, tip \"\n#~ \"intervencije itd.) Zahtevki se lahko samodejno povežejo z e-poštnim \"\n#~ \"naslovom preko modula mail gateway.\"\n\n#~ msgid \"Unread Messages\"\n#~ msgstr \"Neprebrana sporočila\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Neprebrana sporočila\"\n\n#~ msgid \"Update Date\"\n#~ msgstr \"Datum posodobitve\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"        \\n\"\n#~ \"<p>\\n\"\n#~ \"  Hello,</br>\\n\"\n#~ \"  A new claim has been assigned to you:\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"  <a href=\\\"http://localhost:8080\\\">http://localhost:8080</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"  ${object.description}\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you.\\n\"\n#~ \"</p>\\n\"\n#~ \"--\\n\"\n#~ \"<p>\\n\"\n#~ \"  OpenERP\\n\"\n#~ \"</p>\\n\"\n#~ \"        \\n\"\n#~ \"      \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"        \\n\"\n#~ \"<p>\\n\"\n#~ \"  Pozdravljeni.</br>\\n\"\n#~ \"  Dodeljen vam je bil nov zahtevek:\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"  <a href=\\\"http://localhost:8080\\\">http://localhost:8080</a>\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"  ${object.description}\\n\"\n#~ \"</p>\\n\"\n#~ \"<p>\\n\"\n#~ \"Hvala.\\n\"\n#~ \"</p>\\n\"\n#~ \"--\\n\"\n#~ \"<p>\\n\"\n#~ \"  OpenERP\\n\"\n#~ \"</p>\\n\"\n#~ \"        \\n\"\n#~ \"      \"\n\n#~ msgid \"${object.name}\"\n#~ msgstr \"${object.name}\"\n\n#~ msgid \"Actions\"\n#~ msgstr \"Ukrepi\"\n\n#~ msgid \"Claim stages\"\n#~ msgstr \"Stopnje zahtevka\"\n\n#~ msgid \"Corrective Action\"\n#~ msgstr \"Korektivni ukrep\"\n\n#~ msgid \"Date of the last message posted on the record.\"\n#~ msgstr \"Datum zadnjega objavljenega sporočila na zapisu.\"\n\n#~ msgid \"High\"\n#~ msgstr \"Visoka\"\n\n#~ msgid \"\"\n#~ \"Holds the Chatter summary (number of messages, ...). This summary is \"\n#~ \"directly in html format in order to be inserted in kanban views.\"\n#~ msgstr \"\"\n#~ \"Povzetek komunikacij (število sporočil, ...). Ta povzetek je neposredno v \"\n#~ \"html formatu, da se lahko vstavlja v poglede kanban.\"\n\n#~ msgid \"Last Message Date\"\n#~ msgstr \"Datum zadnjega sporočila\"\n\n#~ msgid \"Low\"\n#~ msgstr \"Nizka\"\n\n#~ msgid \"Messages and communication history\"\n#~ msgstr \"Komunikacije in kronologija\"\n\n#~ msgid \"Normal\"\n#~ msgstr \"Običajno\"\n\n#~ msgid \"Notify the person in charge of the new claim\"\n#~ msgstr \"Obvesti odgovorno osebo o novem zahtevku.\"\n\n#~ msgid \"Open Claims\"\n#~ msgstr \"Odprti zahtevki\"\n\n#~ msgid \"Preventive Action\"\n#~ msgstr \"Preventivni ukrep\"\n\n#~ msgid \"Sections\"\n#~ msgstr \"Sekcije\"\n\n#~ msgid \"Share a note...\"\n#~ msgstr \"Souporaba opombe...\"\n\n#~ msgid \"Summary\"\n#~ msgstr \"Povzetek\"\n\n#~ msgid \"board.mgmtsystem.claim.act_window\"\n#~ msgstr \"board.mgmtsystem.claim.act_window\"\n\n#~ msgid \"close\"\n#~ msgstr \"zaključek\"\n\n#~ msgid \"open\"\n#~ msgstr \"odprtje\"\n\n#~ msgid \"pending\"\n#~ msgstr \"čakanje\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_claim\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2024-09-13 10:06+0000\\n\"\n\"Last-Translator: jakobkrabbe <jakob@syscare.se>\\n\"\n\"Language-Team: Swedish (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/sv/)\\n\"\n\"Language: sv\\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.6.2\\n\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\nmsgid \"# Mgmt Claims\"\nmsgstr \"# Reklamationer\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Åtgärd behövs\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"Åtgärdstyp\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\nmsgid \"Activities\"\nmsgstr \"Aktiviteter\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Aktivitet Undantag Dekoration\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"Activity State\"\nmsgstr \"Aktivitetsläge\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Aktivitetstyp Ikon\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"Alla pågående reklamationer\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Antal bifogade filer\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\nmsgid \"Cancel\"\nmsgstr \"Avbryt\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"Kategori\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"Reklamation\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"Reklamationsdatum\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"Beskrivning av reklamation\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"Rapport av reklamation\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"Reklamationstitel\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"Reklamation för ledningssystem\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"Reklamation för ledningssystem\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"Reklamation / Åtgärd Beskrivning\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"Reklamationer\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\"Klicka för att starta en ny reklamationsrapport av anspråken från \"\n\"ledningssystemet.\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\nmsgid \"Close\"\nmsgstr \"Stäng\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"Stängd\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"Stängning\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"Gemensamt för alla lag\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"Företag\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Kontakt\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Skapad av\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Skapad på\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"Nuvarande\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"Datum stängd\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"Slutdatum\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"Beskrivnig\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"Destinations-e-post för e-post-gateway.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Visningsnamn\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\nmsgid \"Draft\"\nmsgstr \"Utkast\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"Utkast och Oreglerade Reklamationer\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"E-post\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\"Skicka påminnelser om reklamation via e-post 10 dagar före förfallodagen.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"Följ Upp\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Följare\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Följare (Partners)\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Font awesome-ikon, t.ex. fa-tasks\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"Gruppera efter...\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"Har meddelande\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Ikon\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Ikon för att indikera en undantagsaktivitet.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Om den är markerad kräver nya meddelanden din uppmärksamhet.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Om kryssrutan är markerad får vissa meddelanden ett leveransfel.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\"Om du markerar det här fältet kommer det här steget att föreslås som \"\n\"standard för varje säljteam. Det här steget kommer inte att tilldelas \"\n\"befintliga team.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Är Följare\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Senast uppdaterad av\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Senast uppdaterad den\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\"Länk mellan steg och säljteam. När detta är inställt begränsas det aktuella \"\n\"steget till de valda säljteamen.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"Ledningssystem reklamationssteg\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"Ledningssystem reklamationssteg\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"Reklamation, ledningssystem\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Fel vid leverans av meddelande\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"Meddelanden\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\nmsgid \"Mgmt Claims\"\nmsgstr \"Reklamationer\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"Reklamation, hanteringssystem\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\nmsgid \"Model Reference\"\nmsgstr \"Referensmodell\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Min aktivitet Deadline\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"Ny\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Nästa aktivitet i aktivitetskalendern\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Nästa Åtgärd Slutdatum\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Nästa Aktivitet Sammanfattning\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Nästa Åtgärd Datum\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Antal åtgärder\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Antal fel\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Antal meddelanden som kräver åtgärder\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Antal meddelanden med leveransfel\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"Öppna\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"Kontakt\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"Pågående\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"Telefon\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"Prioritet\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\"Registrera och spåra dina kunders reklamationer. Reklamationer kan vara \"\n\"kopplade till en försäljningsorder eller ett parti.\\n\"\n\"            Du kan skicka e-postmeddelanden med bilagor och spara hela \"\n\"historiken för en reklamation (skickade e-postmeddelanden\\n\"\n\"            typ av åtgärd och så vidare). Reklamationer kan automatiskt \"\n\"kopplas till en e-postadress med hjälp av mail gateway-modulen.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"Referens\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"Påminnelse om åtgärd: \\\"{{object.name}}\\\"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"Påminnelse till ansvarig\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"Lösning\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"LösningsÅtgärder\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"Ansvarsområden\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"Ansvarig\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"Ansvarig användare\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\"Ansvarigt säljteam. Definiera ansvarig användare och e-postkonto för \"\n\"mailgateway.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"Grundorsaker\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"Grundorsaker\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"Försäljningsteam\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"Sök Reklamationer\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sekvens\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"Steg\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Scenens namn\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"Stadier\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status baserad på aktiviteter\\n\"\n\"Försenad: Förfallodatumet har redan passerats\\n\"\n\"Idag: Aktivitetsdatumet är idag\\n\"\n\"Planerad: Framtida aktiviteter.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"Lag\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\"Dessa e-postadresser kommer att läggas till fältet Kopia av alla inkommande \"\n\"och utgående e-post till denna post innan den skickas. Separera flera e-\"\n\"postadresser med kommatecken\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"Problem Ansvarig\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"Typ\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Typ av undantagsaktivitet som registreras.\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"Otilldelade Reklamationer\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"Används för att beställa steg. Lägre är bättre.\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"Bevakarens E-post\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Webbplatsmeddelanden\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Webbplatsens kommunikationshistorik\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n\"Du kan skapa steg i Management System för att kategorisera statusen för \"\n\"varje\\n\"\n\"                reklamationer som registreras i systemet. Stegen definierar \"\n\"alla de steg\\n\"\n\"                som krävs för att lösa ett anspråk.\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</br>\\n\"\n#~ \"A new claim has been assigned to you:\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you and have a nice day.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hej <t t-out=\\\"object.user_id.name\\\"/>,</br>\\n\"\n#~ \"En ny reklamation har tilldelats dig:\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Tack och ha en trevlig dag.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"This is an automated message to remind you that the\\n\"\n#~ \"following claim is due to be completed in 10 days (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Thank you and have a nice day.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"            \\n\"\n#~ \"<p>Hej <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Detta är ett automatiserat meddelande för att påminna dig om att\\n\"\n#~ \"följande anspråk ska slutföras om 10 dagar (<t t-\"\n#~ \"out=\\\"object.date_deadline\\\"/>):\\n\"\n#~ \"\\n\"\n#~ \"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></\"\n#~ \"a></b>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"<t t-out=\\\"object.description\\\"/> </p> <p>\\n\"\n#~ \"</p>\\n\"\n#~ \"\\n\"\n#~ \"<p>\\n\"\n#~ \"Tack och ha en trevlig dag.<br>\\n\"\n#~ \"--<br>\\n\"\n#~ \"Odoo\\n\"\n#~ \"</p>\\n\"\n#~ \"            \\n\"\n#~ \"        \"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Senast ändrad den\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Huvudfäste\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Icke-överensstämmelse\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Antal avvikelser\"\n\n#~ msgid \"Creation Date\"\n#~ msgstr \"Skapad\"\n\n#~ msgid \"Update Date\"\n#~ msgstr \"Uppdaterad Datum\"\n\n#~ msgid \"Actions\"\n#~ msgstr \"Åtgärder\"\n\n#~ msgid \"Corrective Action\"\n#~ msgstr \"Åtgärd\"\n\n#~ msgid \"High\"\n#~ msgstr \"Hög\"\n\n#~ msgid \"Low\"\n#~ msgstr \"Låg\"\n\n#~ msgid \"Normal\"\n#~ msgstr \"Normal\"\n\n#~ msgid \"Notify the person in charge of the new claim\"\n#~ msgstr \"Meddela personen som ansvarar för den nya reklamationen\"\n\n#~ msgid \"Open Claims\"\n#~ msgstr \"Öppna Reklamationer\"\n\n#~ msgid \"Preventive Action\"\n#~ msgstr \"Förebyggande åtgärder\"\n"
  },
  {
    "path": "mgmtsystem_claim/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-07-25 18:17+0000\\n\"\n\"PO-Revision-Date: 2014-03-05 01:38+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_count\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_count\nmsgid \"# Mgmt Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_new_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,\\n\"\n\"A new claim has been assigned to you:\\n\"\n\"\\n\"\n\"</p><p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,body_html:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"\"\n\"<p>Hello <t t-out=\\\"object.user_id.name\\\"/>,</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"This is an automated message to remind you that the\\n\"\n\"following claim is due to be completed in 10 days (<t t-\"\n\"out=\\\"object.date_deadline\\\"/>):\\n\"\n\"\\n\"\n\"<b><a t-att-href=\\\"object.get_action_url()\\\"><t t-out=\\\"object.name\\\"/></a></\"\n\"b>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"<t t-out=\\\"object.description\\\"/>\\n\"\n\"</p>\\n\"\n\"\\n\"\n\"<p>\\n\"\n\"Thank you and have a nice day.<br/>\\n\"\n\"--<br/>\\n\"\n\"Odoo\\n\"\n\"</p>\\n\"\n\"            \\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__type_action\nmsgid \"Action Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"All pending Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_cancel\nmsgid \"Cancel\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__categ_id\nmsgid \"Category\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Claim Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim Reporter\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__name\nmsgid \"Claim Subject\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim\nmsgid \"Claim for Management System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_mgmtsystem_claim_stage\nmsgid \"Claim stages for Management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claim/Action Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_action\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_config_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claims\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"Click to setup a new stage in the processing of the Management System claims.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_close\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_closed\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Closure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"Common to All Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model,name:mgmtsystem_claim.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Current\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Date Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Dates\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__date_deadline\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Destination email for email gateway.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Draft and Open Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_from\nmsgid \"Email\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.server,name:mgmtsystem_claim.ir_cron_mgmtsystem_claim_reminder_ir_actions_server\nmsgid \"Email Claim Reminders 10 days before due date.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Follow Up\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__id\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__case_default\nmsgid \"\"\n\"If you check this field, this stage will be proposed by default on each \"\n\"sales team. It will not assign this stage to existing teams.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"\"\n\"Link between stages and sales teams. When set, this limitate the current \"\n\"stage to the selected sales teams.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claim_stage_form\nmsgid \"Management System Claim Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.actions.act_window,name:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"Management System Claim Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_calendar_view\nmsgid \"Management System Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claim_res_partner_info_form\nmsgid \"Mgmt Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_partner__mgmtsystem_claim_ids\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_res_users__mgmtsystem_claim_ids\nmsgid \"Mgmtsystem Claim\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__model_ref_id\nmsgid \"Model Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#. odoo-python\n#: code:addons/mgmtsystem_claim/models/mgmtsystem_claim.py:0\nmsgid \"New\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_open\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mgmtsystem.claim.stage,name:mgmtsystem_claim.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Pending\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__partner_phone\nmsgid \"Phone\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__priority\nmsgid \"Priority\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_action\nmsgid \"\"\n\"Record and track your customers' claims. Claims may be linked to a sales \"\n\"order or a lot.\\n\"\n\"            You can send emails with attachments and keep the full history \"\n\"for a claim (emails sent, intervention\\n\"\n\"            type and so on). Claims may automatically be linked to an email \"\n\"address using the mail gateway module.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,subject:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,subject:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder on Action: \\\"{{object.name}}\\\"\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:mail.template,name:mgmtsystem_claim.email_template_new_claim_reminder\n#: model:mail.template,name:mgmtsystem_claim.email_template_remain_claim_reminder\nmsgid \"Reminder to Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__resolution\nmsgid \"Resolution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Resolution Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Responsibilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__activity_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"\"\n\"Responsible sales team. Define Responsible user and Email account for mail \"\n\"gateway.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__cause\nmsgid \"Root Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_form_view\nmsgid \"Root Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__team_id\nmsgid \"Sales Team\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Search Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.ui.menu,name:mgmtsystem_claim.menu_mgmtsystem_claim_stages\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim_stage__team_ids\nmsgid \"Teams\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"\"\n\"These email addresses will be added to the CC field of all inbound and \"\n\"outbound emails for this record before being sent. Separate multiple email \"\n\"addresses with a comma\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__user_fault\nmsgid \"Trouble Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.mgmtsystem_claims_tree_view\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_claim.view_mgmtsystem_claims_filter\nmsgid \"Unassigned Claims\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim_stage__sequence\nmsgid \"Used to order stages. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__email_cc\nmsgid \"Watchers Emails\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,field_description:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model:ir.model.fields,help:mgmtsystem_claim.field_mgmtsystem_claim__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_claim\n#: model_terms:ir.actions.act_window,help:mgmtsystem_claim.mgmtsystem_claim_stage_action\nmsgid \"\"\n\"You can create Management System claim stages to categorize the status of \"\n\"every\\n\"\n\"                claim entered in the system. The stages define all the \"\n\"steps\\n\"\n\"                required for the resolution of a claim.\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_claim/models/__init__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    This module copyright (C) 2015 - present Savoir-faire Linux\n#    (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\nfrom . import mgmtsystem_claim_stage\nfrom . import mgmtsystem_claim\nfrom . import res_partner\n"
  },
  {
    "path": "mgmtsystem_claim/models/mgmtsystem_claim.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\nfrom datetime import datetime, timedelta\n\nfrom odoo import _, api, fields, models\n\n\nclass MgmtsystemClaim(models.Model):\n    _name = \"mgmtsystem.claim\"\n    _description = \"Claim for Management System\"\n    _inherit = \"crm.claim\"\n\n    reference = fields.Char(required=True, readonly=True, default=\"NEW\")\n\n    message_ids = fields.One2many(\n        \"mail.message\", \"res_id\", \"Messages\", domain=[(\"model\", \"=\", _name)]\n    )\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n\n    stage_id = fields.Many2one(\n        \"mgmtsystem.claim.stage\", \"Stage\", default=lambda self: self.get_default_stage()\n    )\n\n    @api.model\n    def get_default_stage(self):\n        return self.env[\"mgmtsystem.claim.stage\"].search([])[0].id\n\n    @api.model_create_multi\n    def create(self, vals_list):\n        for one_vals in vals_list:\n            if one_vals.get(\"reference\", _(\"New\")) == _(\"New\"):\n                Sequence = self.env[\"ir.sequence\"]\n                one_vals[\"reference\"] = Sequence.next_by_code(\"mgmtsystem.action\")\n        actions = super().create(vals_list)\n        actions.send_mail_for_action()\n        return actions\n\n    def get_action_url(self):\n        \"\"\"Return action url to be used in email templates.\"\"\"\n        base_url = (\n            self.env[\"ir.config_parameter\"]\n            .sudo()\n            .get_param(\"web.base.url\", default=\"http://localhost:8069\")\n        )\n        url = f\"{base_url}/web#db={self.env.cr.dbname}&id={self.id}&model={self._name}\"\n        return url\n\n    def send_mail_for_action(self, force_send=True):\n        template = self.env.ref(\"mgmtsystem_claim.email_template_new_claim_reminder\")\n        for action in self:\n            template.send_mail(action.id, force_send=force_send)\n        return True\n\n    @api.model\n    def process_reminder_queue(self, reminder_days=10):\n        \"\"\"Notify user when we are 10 days close to a deadline.\"\"\"\n        cur_date = datetime.now().date() + timedelta(days=reminder_days)\n        stage_close = self.env.ref(\"mgmtsystem_claim.stage_close\")\n        actions = self.search(\n            [(\"stage_id\", \"!=\", stage_close.id), (\"date_deadline\", \"=\", cur_date)]\n        )\n        if actions:\n            template = self.env.ref(\n                \"mgmtsystem_claim.email_template_remain_claim_reminder\"\n            )\n            for action in actions:\n                template.send_mail(action.id)\n            return True\n        return False\n"
  },
  {
    "path": "mgmtsystem_claim/models/mgmtsystem_claim_stage.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    This module copyright (C) 2015 - present Savoir-faire Linux\n#    (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\nfrom odoo import fields, models\n\n\nclass MgmtsystemClaimStage(models.Model):\n    _name = \"mgmtsystem.claim.stage\"\n    _description = \"Claim stages for Management system\"\n    _inherit = \"crm.claim.stage\"\n    _order = \"sequence\"\n\n    team_ids = fields.Many2many(\n        comodel_name=\"crm.team\",\n        relation=\"crm_team_mgmtsystem_claim_stage_rel\",\n        column1=\"stage_id\",\n        column2=\"team_id\",\n        string=\"Teams\",\n        help=\"Link between stages and sales teams. When set, this limitate \"\n        \"the current stage to the selected sales teams.\",\n    )\n"
  },
  {
    "path": "mgmtsystem_claim/models/res_partner.py",
    "content": "# Copyright 2015-2017 Odoo S.A.\n# Copyright 2017 Tecnativa - Vicent Cubells\n# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).\n\nfrom odoo import api, fields, models\n\n\nclass ResPartner(models.Model):\n    _inherit = \"res.partner\"\n\n    mgmtsystem_claim_count = fields.Integer(\n        string=\"# Mgmt Claims\", compute=\"_compute_mgmtsystem_claim_count\"\n    )\n    mgmtsystem_claim_ids = fields.One2many(\n        comodel_name=\"mgmtsystem.claim\", inverse_name=\"partner_id\"\n    )\n\n    @api.depends(\"claim_ids\", \"child_ids\", \"child_ids.claim_ids\")\n    def _compute_mgmtsystem_claim_count(self):\n        partners = self | self.mapped(\"child_ids\")\n        partner_data = self.env[\"mgmtsystem.claim\"].read_group(\n            [(\"partner_id\", \"in\", partners.ids)], [\"partner_id\"], [\"partner_id\"]\n        )\n        mapped_data = {m[\"partner_id\"][0]: m[\"partner_id_count\"] for m in partner_data}\n        for partner in self:\n            partner.mgmtsystem_claim_count = mapped_data.get(partner.id, 0)\n            for child in partner.child_ids:\n                partner.mgmtsystem_claim_count += mapped_data.get(child.id, 0)\n"
  },
  {
    "path": "mgmtsystem_claim/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_claim/readme/CONFIGURE.md",
    "content": "To configure this module, you need to:\n\n- Go to new menú **\"Management System -\\> Configuration -\\> Claim -\\>\n  Stages** and create stages for claims.\n- Go to new menu **CRM \\> Configuration \\> Claim \\> Categories** and\n  create as many categories as you need.\n"
  },
  {
    "path": "mgmtsystem_claim/readme/CONTRIBUTORS.md",
    "content": "- Savoir-faire Linux\n- [Guadaltech](https://www.guadaltech.es):\n  - Fernando La Chica \\<<fernando.lachica@guadaltech.es>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n"
  },
  {
    "path": "mgmtsystem_claim/readme/DESCRIPTION.md",
    "content": "This application allows you to track your customers/vendors claims and\ngrievances.\n\nIt is fully integrated with the email gateway so that you can create\nautomatically new claims based on incoming emails.\n"
  },
  {
    "path": "mgmtsystem_claim/readme/USAGE.md",
    "content": "- Go to new menu **Management System -\\> Claims** and create a new\n  claim.\n"
  },
  {
    "path": "mgmtsystem_claim/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_claim\",\"mgmtsystem.claim.user\",\"model_mgmtsystem_claim\",\"base.group_user\",1,1,1,0\n\"access_mgmtsystem_claim_stage\",\"access_mgmtsystem_claim_stage\",\"model_mgmtsystem_claim_stage\",\"base.group_user\",1,0,0,0\n"
  },
  {
    "path": "mgmtsystem_claim/security/mgmtsystem_claim_security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Rule -->\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_claim_rule\">\n        <field name=\"name\">mgmtsystem_claim multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_claim\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/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=\"management-system-claim\">\n<h1>Management System - Claim</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:fb4f71a9f1098e4e9f239f3abfe50ed1ed76b5404f16953d4efec4a9d553a1b9\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/management-system/tree/18.0/mgmtsystem_claim\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_claim\"><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/management-system&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 application allows you to track your customers/vendors claims and\ngrievances.</p>\n<p>It is fully integrated with the email gateway so that you can create\nautomatically new claims based on incoming emails.</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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-2\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-3\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-4\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-5\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-6\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-7\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>To configure this module, you need to:</p>\n<ul class=\"simple\">\n<li>Go to new menú <strong>“Management System -&gt; Configuration -&gt; Claim -&gt;\nStages</strong> and create stages for claims.</li>\n<li>Go to new menu <strong>CRM &gt; Configuration &gt; Claim &gt; Categories</strong> and create\nas many categories as you need.</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Usage</a></h2>\n<ul class=\"simple\">\n<li>Go to new menu <strong>Management System -&gt; Claims</strong> and create a new claim.</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_claim%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-4\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n<li><a class=\"reference external\" href=\"https://www.guadaltech.es\">Guadaltech</a>:<ul>\n<li>Fernando La Chica &lt;<a class=\"reference external\" href=\"mailto:fernando.lachica&#64;guadaltech.es\">fernando.lachica&#64;guadaltech.es</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_claim\">OCA/management-system</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": "mgmtsystem_claim/tests/__init__.py",
    "content": "from . import test_create_claim\n"
  },
  {
    "path": "mgmtsystem_claim/tests/test_create_claim.py",
    "content": "import time\nfrom datetime import datetime, timedelta\nfrom unittest import mock\n\nfrom odoo.tests import common\n\n\ndef freeze_time(dt):\n    mock_time = mock.Mock()\n    mock_time.return_value = time.mktime(dt.timetuple())\n    return mock_time\n\n\nclass TestModelClaim(common.TransactionCase):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n\n        cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))\n        cls.claim = cls.env[\"mgmtsystem.claim\"].create(\n            {\n                \"name\": \"Test Claim\",\n                \"team_id\": cls.env.ref(\"sales_team.salesteam_website_sales\").id,\n            }\n        )\n        cls.partner = cls.env[\"res.partner\"].create(\n            {\n                \"name\": \"Partner Claim\",\n                \"email\": \"partner.claim@example.com\",\n                \"phone\": \"1234567890\",\n            }\n        )\n        cls.claim_categ = cls.env.ref(\"crm_claim.categ_claim1\")\n        cls.sales_team = cls.claim_categ.team_id\n\n    def test_create_claim(self):\n        self.assertNotEqual(self.claim.team_id, self.sales_team)\n        self.assertTrue(self.claim.stage_id.id)\n        self.claim.partner_id = self.partner\n        self.claim.onchange_partner_id()\n        self.assertEqual(self.claim.email_from, self.partner.email)\n        self.assertEqual(self.claim.partner_phone, self.partner.phone)\n        self.assertEqual(self.partner.mgmtsystem_claim_count, 1)\n        self.claim.categ_id = self.claim_categ\n        self.claim.onchange_categ_id()\n        self.assertEqual(self.claim.team_id, self.sales_team)\n        tmpl_model = self.env[\"mail.template\"]\n        with mock.patch.object(type(tmpl_model), \"send_mail\") as mocked:\n            new_claim = self.claim.copy()\n            self.partner._compute_mgmtsystem_claim_count()\n            self.assertEqual(new_claim.stage_id.id, 1)\n            self.assertIn(\"copy\", new_claim.name)\n            self.assertTrue(new_claim.stage_id.id)\n            self.assertEqual(self.partner.mgmtsystem_claim_count, 2)\n            mocked.assert_called_with(new_claim.id, force_send=True)\n\n    def test_process_reminder_queue(self):\n        \"\"\"Check if process_reminder_queue work when days reminder are 10.\"\"\"\n        ten_days_date = datetime.now().date() + timedelta(days=10)\n        self.claim.write(\n            {\n                \"date_deadline\": ten_days_date,  # 10 days from now\n                \"stage_id\": self.env.ref(\"mgmtsystem_action.stage_open\").id,\n            }\n        )\n        with mock.patch(\"time.time\", freeze_time(ten_days_date)):\n            tmpl_model = self.env[\"mail.template\"]\n            with mock.patch.object(type(tmpl_model), \"send_mail\") as mocked:\n                self.env[\"mgmtsystem.claim\"].process_reminder_queue()\n                mocked.assert_called_with(self.claim.id)\n                self.env[\"mgmtsystem.claim\"].process_reminder_queue(-100)\n                mocked.assert_called_with(self.claim.id)\n\n    def test_send_mail_for_action(self):\n        \"\"\"Check if send_mail_for_action work is called\"\"\"\n        tmpl_model = self.env[\"mail.template\"]\n        with mock.patch.object(type(tmpl_model), \"send_mail\") as mocked:\n            self.claim.send_mail_for_action(force_send=True)\n            mocked.assert_called_with(self.claim.id, force_send=True)\n"
  },
  {
    "path": "mgmtsystem_claim/views/menus.xml",
    "content": "<odoo>\n    <menuitem\n        id=\"menu_config_claim\"\n        name=\"Claims\"\n        parent=\"mgmtsystem.menu_mgmtsystem_configuration\"\n        sequence=\"20\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/views/mgmtsystem_claim.xml",
    "content": "<odoo>\n    <!-- Claims -->\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_claims_tree_view\">\n        <field name=\"name\">Management System Claims Tree</field>\n        <field name=\"model\">mgmtsystem.claim</field>\n        <field name=\"arch\" type=\"xml\">\n            <list\n                decoration-primary=\"stage_id==%(mgmtsystem_claim.stage_pending)d and not(date_deadline and (date_deadline &lt; current_date))\"\n                decoration-muted=\"stage_id in (%(mgmtsystem_claim.stage_close)d, %(mgmtsystem_claim.stage_cancel)d)\"\n                decoration-danger=\"date_deadline and (date_deadline &lt; current_date)\"\n            >\n                <field name=\"reference\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <field name=\"name\" />\n                <field name=\"partner_id\" />\n                <field name=\"user_id\" />\n                <field name=\"date\" />\n                <field name=\"team_id\" invisible=\"1\" />\n                <field name=\"categ_id\" string=\"Type\" select=\"1\" />\n                <field name=\"stage_id\" />\n                <field name=\"date_deadline\" invisible=\"1\" />\n                <field name=\"date_closed\" invisible=\"1\" />\n            </list>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_claims_form_view\">\n        <field name=\"name\">Management System Claims Form</field>\n        <field name=\"model\">mgmtsystem.claim</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Claim\">\n                <header>\n                    <field\n                        name=\"stage_id\"\n                        widget=\"statusbar\"\n                        options=\"{'clickable': 1}\"\n                    />\n                </header>\n                <sheet string=\"Claims\">\n                    <group>\n                        <group>\n                            <field name=\"reference\" />\n                            <field\n                                name=\"company_id\"\n                                groups=\"base.group_multi_company\"\n                            />\n                            <field name=\"name\" />\n                            <field name=\"date\" />\n                            <field name=\"team_id\" invisible=\"1\" />\n                        </group>\n                        <group colspan=\"4\" col=\"4\" groups=\"base.group_user\">\n                            <field name=\"user_id\" />\n                            <field name=\"priority\" />\n                            <field name=\"categ_id\" />\n                            <field name=\"date_deadline\" />\n                        </group>\n                    </group>\n                    <notebook>\n                        <page string=\"Claim Description\">\n                            <group colspan=\"2\" col=\"2\" groups=\"base.group_user\">\n                                <separator colspan=\"2\" string=\"Claim Reporter\" />\n                                <field\n                                    name=\"partner_id\"\n                                    string=\"Partner\"\n                                    on_change=\"onchange_partner_id(partner_id)\"\n                                />\n                                <field name=\"partner_phone\" />\n                                <field name=\"email_from\" widget=\"email\" />\n                            </group>\n                            <group colspan=\"2\" col=\"2\" groups=\"base.group_user\">\n                                <separator colspan=\"2\" string=\"Responsibilities\" />\n                                <field\n                                    name=\"user_id\"\n                                    context=\"{'default_groups_ref': ['base.group_user', 'base.group_partner_manager', 'base.group_sale_salesman_all_leads']}\"\n                                />\n                                <field name=\"user_fault\" />\n                                <field\n                                    name=\"categ_id\"\n                                    options=\"{'no_create': True, 'no_open': True}\"\n                                />\n                                <field name=\"team_id\" />\n                                <field name=\"model_ref_id\" widget=\"reference\" />\n                            </group>\n                            <separator\n                                colspan=\"4\"\n                                string=\"Claim/Action Description\"\n                                groups=\"base.group_user\"\n                            />\n                            <field name=\"description\" colspan=\"4\" nolabel=\"1\" />\n                        </page>\n                        <page string=\"Follow Up\" groups=\"base.group_user\">\n                            <group colspan=\"2\" col=\"2\" groups=\"base.group_no_one\">\n                                <separator colspan=\"2\" string=\"Dates\" />\n                                <field name=\"create_date\" />\n                                <field name=\"date_closed\" />\n                                <field name=\"write_date\" />\n                            </group>\n\n                            <group colspan=\"2\" col=\"2\">\n                                <separator colspan=\"2\" string=\"Root Causes\" />\n                                <field name=\"cause\" colspan=\"2\" nolabel=\"1\" />\n                            </group>\n                            <group colspan=\"2\" col=\"2\">\n                                <separator colspan=\"2\" string=\"Resolution Actions\" />\n                                <field name=\"type_action\" />\n                                <field name=\"resolution\" colspan=\"2\" nolabel=\"1\" />\n                            </group>\n                        </page>\n                    </notebook>\n                </sheet>\n                <chatter />\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"view_mgmtsystem_claims_calendar_view\">\n        <field name=\"name\">Management System Claims Actions</field>\n        <field name=\"model\">mgmtsystem.claim</field>\n        <field name=\"priority\" eval=\"2\" />\n        <field name=\"arch\" type=\"xml\">\n            <calendar\n                string=\"Management System Claims\"\n                date_start=\"activity_date_deadline\"\n                color=\"user_id\"\n            >\n                <field name=\"name\" />\n            </calendar>\n        </field>\n    </record>\n\n    <!-- Claim Search view -->\n    <record id=\"view_mgmtsystem_claims_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Management System Claims Search</field>\n        <field name=\"model\">mgmtsystem.claim</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Search Claims\">\n                <filter\n                    icon=\"terp-check\"\n                    string=\"Current\"\n                    name=\"current\"\n                    domain=\"[('stage_id','in',(%(mgmtsystem_claim.stage_draft)d, %(mgmtsystem_claim.stage_open)d))]\"\n                    separator=\"1\"\n                    help=\"Draft and Open Claims\"\n                />\n\n                <filter\n                    icon=\"terp-gtk-media-pause\"\n                    string=\"Pending\"\n                    name=\"pending\"\n                    domain=\"[('stage_id','=', %(mgmtsystem_claim.stage_pending)d)]\"\n                    separator=\"1\"\n                    help=\"All pending Claims\"\n                />\n\n                <field name=\"name\" select='1' />\n                <field name=\"partner_id\" select=\"1\" />\n                <field name=\"user_id\" select=\"1\" widget=\"selection\">\n                    <filter\n                        icon=\"terp-personal-\"\n                        name=\"unassigned\"\n                        domain=\"[('user_id','=', False)]\"\n                        help=\"Unassigned Claims\"\n                    />\n                </field>\n\n                <newline />\n\n                <group expand=\"0\" string=\"Group By...\">\n                    <filter\n                        string=\"Partner\"\n                        icon=\"terp-partner\"\n                        name=\"group_partner\"\n                        domain=\"[]\"\n                        help=\"Partner\"\n                        context=\"{'group_by':'partner_id'}\"\n                    />\n                    <filter\n                        string=\"Responsible\"\n                        icon=\"terp-personal\"\n                        name=\"group_responsible\"\n                        domain=\"[]\"\n                        help=\"Responsible User\"\n                        context=\"{'group_by':'user_id'}\"\n                    />\n                    <separator orientation=\"vertical\" />\n                    <filter\n                        string=\"Type\"\n                        icon=\"terp-stock_symbol-selection\"\n                        name=\"group_categ\"\n                        domain=\"[]\"\n                        context=\"{'group_by':'categ_id'}\"\n                    />\n\n                    <filter\n                        string=\"Stages\"\n                        icon=\"terp-stock_effects-object-colorize\"\n                        name=\"group_stage\"\n                        domain=\"[]\"\n                        context=\"{'group_by':'stage_id'}\"\n                    />\n\n                    <separator orientation=\"vertical\" />\n\n                    <filter\n                        string=\"Claim Date\"\n                        icon=\"terp-go-month\"\n                        name=\"group_date\"\n                        domain=\"[]\"\n                        help=\"Claim Date\"\n                        context=\"{'group_by':'date'}\"\n                    />\n                    <filter\n                        string=\"Deadline\"\n                        icon=\"terp-go-month\"\n                        name=\"group_date_deadline\"\n                        domain=\"[]\"\n                        context=\"{'group_by':'date_deadline'}\"\n                    />\n                    <filter\n                        string=\"Closure\"\n                        icon=\"terp-go-month\"\n                        name=\"group_date_closed\"\n                        domain=\"[]\"\n                        help=\"Date Closed\"\n                        context=\"{'group_by':'date_closed'}\"\n                    />\n                </group>\n            </search>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"mgmtsystem_claim_action\">\n        <field name=\"name\">Claims</field>\n        <field name=\"res_model\">mgmtsystem.claim</field>\n        <field name=\"view_mode\">list,calendar,form</field>\n        <field\n            name=\"context\"\n        >{\"search_default_user_id\":uid, \"stage_type\":'claim'}</field>\n        <field\n            name=\"help\"\n        >Record and track your customers' claims. Claims may be linked to a sales order or a lot.\n            You can send emails with attachments and keep the full history for a claim (emails sent, intervention\n            type and so on). Claims may automatically be linked to an email address using the mail gateway module.\n        </field>\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_claims\"\n        name=\"Claims\"\n        parent=\"mgmtsystem.menu_mgmtsystem_main\"\n        action=\"mgmtsystem_claim_action\"\n        sequence=\"90\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor,base.group_user\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/views/mgmtsystem_claim_stage.xml",
    "content": "<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_claim_stage_tree_view\">\n        <field name=\"name\">Management System Claim Stage Tree</field>\n        <field name=\"model\">mgmtsystem.claim.stage</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"sequence\" widget=\"handle\" />\n                <field name=\"name\" />\n            </list>\n        </field>\n    </record>\n    <record id=\"mgmtsystem_claim_stage_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.claim.stage.form</field>\n        <field name=\"model\">mgmtsystem.claim.stage</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Management System Claim Stage\">\n                <group col=\"4\">\n                    <field name=\"name\" />\n                    <field name=\"case_default\" />\n                    <field name=\"sequence\" />\n                </group>\n                <group>\n                    <field name=\"team_ids\" />\n                </group>\n            </form>\n        </field>\n    </record>\n    <record model=\"ir.actions.act_window\" id=\"mgmtsystem_claim_stage_action\">\n        <field name=\"name\">Management System Claim Stages</field>\n        <field name=\"res_model\">mgmtsystem.claim.stage</field>\n        <field name=\"view_id\" ref=\"mgmtsystem_claim_stage_tree_view\" />\n        <field name=\"help\" type=\"html\">\n            <p class=\"oe_view_nocontent_create\">\n                Click to setup a new stage in the processing of the Management System claims.\n            </p>\n            <p>\n                You can create Management System claim stages to categorize the status of every\n                claim entered in the system. The stages define all the steps\n                required for the resolution of a claim.\n            </p>\n        </field>\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_claim_stages\"\n        name=\"Stages\"\n        parent=\"menu_config_claim\"\n        action=\"mgmtsystem_claim_stage_action\"\n        sequence=\"90\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor,base.group_user\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_claim/views/res_partner_views.xml",
    "content": "<?xml version=\"1.0\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_claim_res_partner_info_form\" model=\"ir.ui.view\">\n        <field name=\"name\">res.partner.mgmtsystem.claim.info.form</field>\n        <field name=\"model\">res.partner</field>\n        <field name=\"inherit_id\" ref=\"base.view_partner_form\" />\n        <field name=\"priority\" eval=\"50\" />\n        <field name=\"arch\" type=\"xml\">\n            <div name=\"button_box\" position=\"inside\">\n                <button\n                    class=\"oe_stat_button\"\n                    type=\"action\"\n                    context=\"{'search_default_partner_id': id, 'default_partner_id': id}\"\n                    name=\"%(mgmtsystem_claim_action)d\"\n                    icon=\"fa-comments\"\n                    groups=\"sales_team.group_sale_salesman\"\n                >\n                    <field\n                        string=\"Mgmt Claims\"\n                        name=\"mgmtsystem_claim_count\"\n                        widget=\"statinfo\"\n                    />\n                </button>\n            </div>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/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======\nHazard\n======\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:e0abf696ae44a7ba5e403e5f7b7566cd787f428286838e0d75082cfa78cb9a29\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_hazard\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_hazard\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module enables you to manage the hazards and risks of your health\nand safety management system.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo configure this module, you need to:\n\n- review and customize items of dropdown lists in Management Systems >\n  Configuration > Hazard.\n\nUsage\n=====\n\nTo use this module, you need to:\n\n- go to Management Systems > Manuals > Hazard\n- create a new hazard to enter analysis information, risk evaluation,\n  control measures, implementation tests and residual risks evaluation.\n\nKnown issues / Roadmap\n======================\n\n- Add multi-system and multi-company support\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_hazard%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>\n- Loïc Lacroix <loic.lacroix@savoirfairelinux.com>\n- Nadège Grandjean <nadege.grandjean@outlook.be>\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\n- `Guadaltech <https://www.guadaltech.es>`__:\n\n  - Fernando La Chica <fernando.lachica@guadaltech.es>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_hazard>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_hazard/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_hazard/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Hazard\",\n    \"version\": \"18.0.1.1.0\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem\", \"hr\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"security/mgmtsystem_hazard_security.xml\",\n        \"views/mgmtsystem_hazard.xml\",\n        \"views/mgmtsystem_hazard_origin.xml\",\n        \"views/mgmtsystem_hazard_type.xml\",\n        \"views/mgmtsystem_hazard_probability.xml\",\n        \"views/mgmtsystem_hazard_severity.xml\",\n        \"views/mgmtsystem_hazard_usage.xml\",\n        \"views/mgmtsystem_hazard_control_measure.xml\",\n        \"views/mgmtsystem_hazard_test.xml\",\n    ],\n    \"demo\": [\n        \"demo/mgmtsystem_hazard_hazard.xml\",\n        \"demo/mgmtsystem_hazard_origin.xml\",\n        \"demo/mgmtsystem_hazard_probability.xml\",\n        \"demo/mgmtsystem_hazard_severity.xml\",\n        \"demo/mgmtsystem_hazard_type.xml\",\n        \"demo/mgmtsystem_hazard_usage.xml\",\n    ],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_hazard/demo/mgmtsystem_hazard_hazard.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- hazard hazard -->\n\n    <record id=\"hazard_spilling\" model=\"mgmtsystem.hazard.hazard\" forcecreate=\"0\">\n        <field name=\"name\">Spilling</field>\n    </record>\n\n    <record id=\"hazard_fire_explosion\" model=\"mgmtsystem.hazard.hazard\" forcecreate=\"0\">\n        <field name=\"name\">Fire / Explosion</field>\n    </record>\n\n    <record id=\"hazard_intoxication\" model=\"mgmtsystem.hazard.hazard\" forcecreate=\"0\">\n        <field name=\"name\">Intoxication</field>\n    </record>\n\n    <record id=\"hazard_breakage\" model=\"mgmtsystem.hazard.hazard\" forcecreate=\"0\">\n        <field name=\"name\">Breakage</field>\n    </record>\n\n    <record id=\"hazard_electric_bilge\" model=\"mgmtsystem.hazard.hazard\" forcecreate=\"0\">\n        <field name=\"name\">Electric Bilge</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/demo/mgmtsystem_hazard_origin.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- origin -->\n\n    <record id=\"origin_ignition_gas\" model=\"mgmtsystem.hazard.origin\" forcecreate=\"0\">\n        <field name=\"name\">Ignition of Flammable Gas</field>\n    </record>\n\n    <record id=\"origin_panic\" model=\"mgmtsystem.hazard.origin\" forcecreate=\"0\">\n        <field name=\"name\">Panic</field>\n    </record>\n\n    <record id=\"origin_exposure\" model=\"mgmtsystem.hazard.origin\" forcecreate=\"0\">\n        <field name=\"name\">Exposure to Hazardous Materials</field>\n    </record>\n\n    <record id=\"origin_containment\" model=\"mgmtsystem.hazard.origin\" forcecreate=\"0\">\n        <field name=\"name\">Containment Failure</field>\n    </record>\n\n    <record id=\"origin_leak\" model=\"mgmtsystem.hazard.origin\" forcecreate=\"0\">\n        <field name=\"name\">Gas Leak</field>\n    </record>\n\n    <record id=\"origin_aging\" model=\"mgmtsystem.hazard.origin\" forcecreate=\"0\">\n        <field name=\"name\">Materials Aging</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/demo/mgmtsystem_hazard_probability.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Probability -->\n\n    <record id=\"probability_low\" model=\"mgmtsystem.hazard.probability\">\n        <field name=\"name\">Low</field>\n        <field name=\"value\">1</field>\n        <field name=\"description\">Less than once in 10 years</field>\n    </record>\n\n    <record id=\"probability_maybe\" model=\"mgmtsystem.hazard.probability\">\n        <field name=\"name\">Maybe</field>\n        <field name=\"value\">2</field>\n        <field name=\"description\">Between once a year and once in 10 years</field>\n    </record>\n\n    <record id=\"probability_probably\" model=\"mgmtsystem.hazard.probability\">\n        <field name=\"name\">Probably</field>\n        <field name=\"value\">3</field>\n        <field name=\"description\">Between once a month and once a year</field>\n    </record>\n\n    <record id=\"probability_very_likely\" model=\"mgmtsystem.hazard.probability\">\n        <field name=\"name\">Very likely</field>\n        <field name=\"value\">4</field>\n        <field name=\"description\">More than once a month</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/demo/mgmtsystem_hazard_severity.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Severity -->\n\n    <record id=\"severity_simple\" model=\"mgmtsystem.hazard.severity\">\n        <field name=\"name\">Simple</field>\n        <field name=\"value\">1</field>\n        <field name=\"description\">First aid is not needed</field>\n    </record>\n\n    <record id=\"severity_medium\" model=\"mgmtsystem.hazard.severity\">\n        <field name=\"name\">Medium</field>\n        <field name=\"value\">2</field>\n        <field name=\"description\">Medical treatment</field>\n    </record>\n\n    <record id=\"severity_heavy\" model=\"mgmtsystem.hazard.severity\">\n        <field name=\"name\">Heavy</field>\n        <field name=\"value\">3</field>\n        <field name=\"description\">Injury</field>\n    </record>\n\n    <record id=\"severity_critical\" model=\"mgmtsystem.hazard.severity\">\n        <field name=\"name\">Critical</field>\n        <field name=\"value\">4</field>\n        <field name=\"description\">Death</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/demo/mgmtsystem_hazard_type.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- type -->\n\n    <record id=\"type_ohsas_position\" model=\"mgmtsystem.hazard.type\">\n        <field name=\"name\">OHSAS - Position</field>\n    </record>\n\n    <record id=\"type_ohsas_action\" model=\"mgmtsystem.hazard.type\">\n        <field name=\"name\">OHSAS - Action</field>\n    </record>\n\n    <record id=\"type_ems_position\" model=\"mgmtsystem.hazard.type\">\n        <field name=\"name\">EMS - Position</field>\n    </record>\n\n    <record id=\"type_ems_action\" model=\"mgmtsystem.hazard.type\">\n        <field name=\"name\">EMS - Action</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/demo/mgmtsystem_hazard_usage.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- usage / occupation -->\n\n    <record id=\"usage_very_low\" model=\"mgmtsystem.hazard.usage\">\n        <field name=\"name\">Very low</field>\n        <field name=\"value\">1</field>\n        <field name=\"description\">Less than once a year</field>\n    </record>\n\n    <record id=\"usage_low\" model=\"mgmtsystem.hazard.usage\">\n        <field name=\"name\">Low</field>\n        <field name=\"value\">2</field>\n        <field name=\"description\">Less than once a month</field>\n    </record>\n\n    <record id=\"usage_medium\" model=\"mgmtsystem.hazard.usage\">\n        <field name=\"name\">Medium</field>\n        <field name=\"value\">3</field>\n        <field name=\"description\">Less than once a week</field>\n    </record>\n\n    <record id=\"usage_high\" model=\"mgmtsystem.hazard.usage\">\n        <field name=\"name\">High</field>\n        <field name=\"value\">4</field>\n        <field name=\"description\">Less than once in a shift</field>\n    </record>\n\n    <record id=\"usage_very_high\" model=\"mgmtsystem.hazard.usage\">\n        <field name=\"name\">Very High</field>\n        <field name=\"value\">5</field>\n        <field name=\"description\">More than once in a shift</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/am.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-03-11 04:20+0000\\n\"\n\"PO-Revision-Date: 2017-03-11 04:20+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\\n\"\n\"Language: am\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/ar.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\\n\"\n\"Language: ar\\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=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 \"\n\"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"الشركة\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"أنشئ بواسطة\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"أنشئ في\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"التاريخ\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"اسم العرض\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"المعرف\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"آخر تحديث بواسطة\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"آخر تحديث في\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"الاسم\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"النوع\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"آخر تعديل في\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/bg.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\\n\"\n\"Language: bg\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Фирма\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Създадено от\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Създадено на\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Дата\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Име за Показване\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Последно обновено от\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Последно обновено на\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Име\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Вид\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Последно обновено на\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/bs.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\\n\"\n\"Language: bs\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Kompanija\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Kreirao\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Kreirano\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikaži naziv\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnji ažurirao\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažurirano\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Ime\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Vrsta\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnje mijenjano\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/ca.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\\n\"\n\"Language: ca\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Companyia\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat per\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creat el\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Descripció\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Veure el nom\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupat per...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Darrera Actualització per\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Darrera Actualització el\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nom\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipus\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Darrera modificació el\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/ca_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\n# Carlos Hormigo, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:27+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:27+0000\\n\"\n\"Last-Translator: Carlos Hormigo, 2018\\n\"\n\"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/\"\n\"ca_ES/)\\n\"\n\"Language: ca_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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Companyia\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat per\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creat a\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Descripció\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom visible\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Darrera actualització per\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Darrera actualització el\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nom\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipus\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Darrera modificació en\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/cs.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\\n\"\n\"Language: cs\\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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Společnost\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Vytvořil(a)\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Vytvořeno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Zobrazovaný název\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Naposled upraveno\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Naposled upraveno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Název\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Druh\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Naposled upraveno\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/da.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\\n\"\n\"Language: da\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Virksomhed\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Oprettet af\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Oprettet den\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Vist navn\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"Id\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Sidst opdateret af\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Sidst opdateret den\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Navn\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Sidst ændret den\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-26 02:48+0000\\n\"\n\"PO-Revision-Date: 2017-04-26 02:48+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Akzeptanz\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Akzeptiert\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Analyse\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Bruch\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Bemerkungen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Unternehmen\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Behältnisversagen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Kontrollmaßnahme\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Kontrollmaßnahme zur Gefahr\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Kontrollmaßnahmen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Angelegt durch\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Angelegt am\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Kritisch\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Abteilung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Beschreibung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Anzeigename\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"UMS - Handlung\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"UMS - Position\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Stromleck\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Ausgeführt\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Gefahrgut ausgesetzt\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Feuer / Explosion\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Gasleck\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Gruppiert nach...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Gefahr\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Gefahren\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Gefahren des Gesundheits- und Sicherheitsmanagementsystems\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Schwer\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Hoch\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Entzündung entflammbaren Gases\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Umsetzungsprüfung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Umsetzungsprüfungen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Umsetzungsprüfungen zur Gefahr\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Vergiftung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Rechtfertigung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zuletzt aktualisiert durch\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zuletzt aktualisiert am\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Niedrig\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Materialalterung\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Vielleicht\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Mittel\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Bezeichnung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"OHSAS - Handlung\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"OHSAS - Position\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Einsatz / Verwendung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Einsätze / Verwendungen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Ursprung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Ursprung der Gefahr\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Ursprünge\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Panik\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Wahrscheinlichkeiten\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Wahrscheinlichkeit\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Wahrscheinlichkeit der Gefahr\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Wahrscheinlich\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Verantwortlich\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Prüfdatum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Schweregrade\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Schweregrad\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Schweregrad der Gefahr\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Einfach\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Verschüttung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Art\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"Art der Gefahr\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Arten\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Verwendung der Gefahr\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Wert\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Sehr hoch\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Sehr wahrscheinlich\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Sehr niedrig\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zuletzt geändert am\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/el_GR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-07-29 04:34+0000\\n\"\n\"PO-Revision-Date: 2017-07-29 04:34+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/\"\n\"el_GR/)\\n\"\n\"Language: el_GR\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Εταιρεία\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Δημιουργήθηκε από \"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Δημιουργήθηκε στις\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Ημερομηνία\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"Κωδικός\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Τελευταία ενημέρωση από\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Τελευταία ενημέρωση στις\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Ονομασία\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/en_GB.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/\"\n\"23907/en_GB/)\\n\"\n\"Language: en_GB\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Company\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Created by\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Created on\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Date\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Display Name\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Last Updated by\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Last Updated on\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Name\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Last Modified on\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-11-18 05:26+0000\\n\"\n\"PO-Revision-Date: 2023-09-05 22:38+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Aceptabilidad\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Aceptado\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Acción necesaria\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Análisis\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"recuento de archivos adjuntos\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Rotura\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Comentarios\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Fallo de contención\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Medida de control\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Medida de control del riesgo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Medidas de control\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Crítico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Fecha\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Departamento\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Descripción\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"EMS - Acción\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"EMS - Posición\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Sentina eléctrica\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Ejecutado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Exposición a materiales peligrosos\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Fuego o explosión\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores/as\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguidores (socios)\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Fuga de gas\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupar por...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"tiene un mensaje\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Riesgo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Riesgos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Riesgos del sistema de gestión de la seguridad y salud\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Pesado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Alto\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Si está marcada, nuevos mensajes requieren tu atención.\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Si está marcada, algunos mensajes tienen un error de entrega.\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Ignición de gas inflamable\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Prueba de implementación\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Pruebas de implementación\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Implementación de Pruebas de peligrosidad\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Intoxicación\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"es seguidor/a\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Justificación\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Actualizado por última vez por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Actualizado por última vez el\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Bajo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Envejecimiento de materiales\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Quizá\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Medio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Error de entrega del mensaje\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"Mensajes\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"número de acciones\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"número de errores\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensajes que requieren una acción\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"número de mensajes con error de entrega\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"OHSAS - Acción\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"OHSAS - Posición\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Ocupación / Uso\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Ocupaciones / Usos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Origen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Origen del riesgo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Orígenes\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Pánico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Probabilidades\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Probabilidad\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Probabilidad del riesgo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Probablemente\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Fecha de revisión\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"error en la entrega de sms\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Severidades\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Severidad\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Severidad del riesgo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"sencillo/a\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Salpicadura\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"Tipo de riesgo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Tipos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Uso del riesgo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Valor\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Muy alto\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Muy probable\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Muy bajo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"mensajes de la página web\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"historial de la comunicación en la web\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación en\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Archivo adjunto principal\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Número de mensajes que requieren una acción\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_AR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/\"\n\"23907/es_AR/)\\n\"\n\"Language: es_AR\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Fecha\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Mostrar Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización realizada por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización el\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación en\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_CL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CL/)\\n\"\n\"Language: es_CL\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID (identificación)\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización de\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación en\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre Público\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Actualizado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Actualizado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última Modificación el\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_CR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/\"\n\"23907/es_CR/)\\n\"\n\"Language: es_CR\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Fecha\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualización por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_DO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/\"\n\"teams/23907/es_DO/)\\n\"\n\"Language: es_DO\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización de\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación en\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_EC.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/\"\n\"es_EC/)\\n\"\n\"Language: es_EC\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Compañia\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Fecha\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID (identificación)\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización de\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación en\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-08-19 05:13+0000\\n\"\n\"PO-Revision-Date: 2017-08-19 05:13+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre para mostrar\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación en\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_MX.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/\"\n\"es_MX/)\\n\"\n\"Language: es_MX\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Fecha\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre desplegado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualizacion por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización realizada\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modificacion realizada\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_PE.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/\"\n\"es_PE/)\\n\"\n\"Language: es_PE\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre a Mostrar\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Actualizado última vez por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima Actualización\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima Modificación en\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_PY.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/\"\n\"es_PY/)\\n\"\n\"Language: es_PY\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualización por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/es_VE.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/\"\n\"23907/es_VE/)\\n\"\n\"Language: es_VE\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Fecha\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Mostrar nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización realizada por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualizacion en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificada por última vez\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/et.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\\n\"\n\"Language: et\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Ettevõte\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Loonud\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Loodud\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Kuupäev\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Näidatav nimi\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Viimati uuendatud\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Viimati uuendatud\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nimi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tüüp\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Viimati muudetud\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/eu.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\\n\"\n\"Language: eu\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Enpresa\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Nork sortua\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Created on\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Izena erakutsi\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Last Updated by\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Last Updated on\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Izena\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Mota\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2024-05-29 15:34+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\\n\"\n\"Language: fa\\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=1; plural=0;\\n\"\n\"X-Generator: Weblate 4.17\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"قابلیت پذیرش\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"پذیرفته شده\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"نیاز به اقدام\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"تحلیل\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"تعداد پیوست‌‎ها\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"مازاد بودجه\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"توضیحات\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"شرکت\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"عدم موفقیت در مهارکردن\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"مقیاس کنترل\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"مقیاس کنترل خطر\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"مقیاس‌های کنترل\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"ایجاد شده توسط\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"ایجاد شده در\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"مهم\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"تاریخ\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"بخش\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"توضیح\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"نام نمایشی\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"سیستم مدیریت سازمانی - اقدام\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"سیستم مدیریت سازمانی - موقعیت\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"پمپ الکتریکی پایین کشتی\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"اجرا شده\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"در معرض خطر مواد خطرناک\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"آتش/انفجار\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"دنبال‌کننده‌ها\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"دنبال‌کننده‌ها (شرکا)\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"نشت گاز\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"دسته‌بندی براساس ...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"پیامی وجود دارد\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"خطر\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"خطرات\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"خطرات مربوط به سلامت و ایمنی در سیستم مدیریت\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"سنگین\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"زیاد\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"شناسه\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"در صورت انتخاب این گزینه، باید پیام‌های جدید را بررسی کنید.\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"در صورت انتخاب این گزینه، برخی پیام‌ها دارای خطای تحویل هستند.\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"خطر آتش گرفتن گازهای قابل اشتعال\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"آزمون اجرایی\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"آزمون‌های اجرایی\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"آزمون‌های اجرایی مرتبط با خطرات\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"مسمومیت\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"آیا دنبال‌کننده است\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"توجیه\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"آخرین به روز رسانی توسط\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"آخرین به روز رسانی در\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"کم\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"فرسوده شدن مصالح\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"شاید\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"متوسط\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"خطای تحویل پیام\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"پیام‌ها\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"نام\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"تعداد اقدامات\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"تعداد خطاها\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"تعداد پیام‌هاییی که نیار به اقدام دارند\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"نوع\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"تاریخ آخرین به‌روزرسانی\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"پیوست اصلی\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/fi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\\n\"\n\"Language: fi\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Yritys\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Luonut\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Luotu\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Päivämäärä\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nimi\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Viimeksi päivittänyt\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Viimeksi päivitetty\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nimi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tyyppi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Viimeksi muokattu\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-26 02:48+0000\\n\"\n\"PO-Revision-Date: 2017-04-26 02:48+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Acceptabilité\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Accepté\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Analyse\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Bris\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Commentaires\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Société\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Échec du confinement\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Mesure de contrôle\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Mesure de contrôle du danger\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Mesures de contrôle\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Créé par\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Date\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Critique\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Date\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Département\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Description\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom à afficher\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"EMS - Action\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"EMS - Position\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Cale électrique\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Exécuté\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Exposition à des matières dangereuses\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Incendie / Explosion\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Fuite de gaz\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Regrouper par...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Danger\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Dangers\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Dangers du système de santé et de sécurité\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Lourde\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Élevé\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Allumage de gaz inflammables\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Test d'implémentation\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Tests d'implémentation\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Tests d'implémentation du danger\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Intoxication\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Justification\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Dernière mise à jour par\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Dernière mise à jour le\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Faible\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Usure des matériaux\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Peut-être\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Moyen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nom\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"OHSAS - Action\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"OHSAS - Position\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Occupation / Usage\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Occupations / Usages\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Origine\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Origine du danger\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Origines\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Panique\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Probabilités\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Probabilité\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Probabilité du danger\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Probablement\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Date de revue\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Sévérités\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Sévérité\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Sévérité du danger\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Simple\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Déversement\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Types\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Usage du danger\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Valeur\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Très élevé\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Très probable\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Très faible\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Dernière modification le\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/fr_CA.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/\"\n\"fr_CA/)\\n\"\n\"Language: fr_CA\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Créé par\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Créé le\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Date\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Afficher le nom\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"Identifiant\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Dernière mise à jour par\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Dernière mise à jour le\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nom\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/fr_CH.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-03-11 04:20+0000\\n\"\n\"PO-Revision-Date: 2017-03-11 04:20+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/\"\n\"23907/fr_CH/)\\n\"\n\"Language: fr_CH\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Créé par\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Créé le\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom affiché\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Modifié par\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Modifié le\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Dernière modification le\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/fr_FR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/\"\n\"fr_FR/)\\n\"\n\"Language: fr_FR\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Date\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/gl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-11-18 05:26+0000\\n\"\n\"PO-Revision-Date: 2017-11-18 05:26+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\\n\"\n\"Language: gl\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"ültima actualización por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Proba\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/gl_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-03-11 04:20+0000\\n\"\n\"PO-Revision-Date: 2017-03-11 04:20+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/\"\n\"gl_ES/)\\n\"\n\"Language: gl_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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/he.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\\n\"\n\"Language: he\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"נוצר על ידי\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"נוצר ב-\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"השם המוצג\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"מזהה\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"עודכן לאחרונה על ידי\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"עודכן לאחרונה על\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"שם\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"סוג\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"תאריך שינוי אחרון\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/hr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-26 02:48+0000\\n\"\n\"PO-Revision-Date: 2019-11-13 17:34+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>\\n\"\n\"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\\n\"\n\"Language: hr\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\"X-Generator: Weblate 3.8\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Prihvatljivost\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Prihvaćeno\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Potrebna radnja\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Analiza\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Broj priloga\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Kvar\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Komentari\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Poduzeće\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Sprječavanje kvara\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Mjera nadzora\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Mjera nadzora opasnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Mjere nadzora\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Stvorio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Stvoreno na\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Kritično\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Odjel\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Opis\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikaži naziv\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"SOS- Akcija\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"SOS- Pozicija\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Nestanak struje\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Izvršeno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Izloženost opasnim materijalima\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Požar / eksplozija\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Pratitelji\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Pratitelji (partneri)\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Curenje goriva\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Grupiraj po...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Opasnost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Opasnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Opasnost zdravlja i sigurnosti upravljačkog sustava\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Teško\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Visoko\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Paljenje zapaljivog goriva\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Test implementacije\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Testovi implementacije\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Testovi implementacije opasnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Trovanje\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Opravdanje\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnji puta ažurirao\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažuriranje na\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Niski\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Trošenje materijala\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Možda\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Osrednji\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Iskorištenost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Iskorištenosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Izvor\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Izvor opasnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Izvori\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Panika\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Vjerojatnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Vjerojatnost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Vjerojatnost nastanka opasnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Vjerojatno\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Odgovoran/na\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Datum recenzije\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Ozbiljnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Ozbiljnost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Ozbiljnost opasnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Jednostavno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Prolijevanje\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Vrsta\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"Vrsta opasnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Vrste\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Korištenje opasnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Vrijednost\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Vrlo visoko\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Vrlo vjerojatno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Vrlo nisko\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnja izmjena na\"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Pratitelji (kanali)\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-07-29 04:34+0000\\n\"\n\"PO-Revision-Date: 2017-07-29 04:34+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Poduzeće\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Kreirao\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Kreirano\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnji ažurirao\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažurirano\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnje modificirano\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/hu.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\\n\"\n\"Language: hu\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Vállalat\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Készítette\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Létrehozás dátuma\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Dátum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Név megjelenítése\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Utoljára frissítve, által\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Utoljára frissítve \"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Név\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Típus\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Utolsó frissítés dátuma\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/id.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\n# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-11-11 05:33+0000\\n\"\n\"PO-Revision-Date: 2017-11-11 05:33+0000\\n\"\n\"Last-Translator: Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2017\\n\"\n\"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\\n\"\n\"Language: id\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Perusahaan\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Dibuat oleh\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Dibuat oleh\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Tanggal\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nama Tampilan\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Dikelompokan berdasarkan ..\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Perubahan terakhir oleh\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Tanggal terakhir dirubah\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nama\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Jenis\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Terakhir Dimodifikasi pada\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-07-15 04:39+0000\\n\"\n\"PO-Revision-Date: 2025-01-21 12:06+0000\\n\"\n\"Last-Translator: mymage <stefano.consolaro@mymage.it>\\n\"\n\"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\\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.6.2\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Accettabilità\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Accettata\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Azione richiesta\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Analisi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Numero allegati\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Danni\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Commenti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Fallimento contenimento\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Misura di controllo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Misura di controllo del rischio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Misure di controllo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Critica\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Reparto\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Descrizione\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"EMS - Azione\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"EMS - Posizione\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Sentina elettrica\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Eseguita\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Esposizione a materiali pericolosi\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Fuoco / esplosioni\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguito da\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguito da (partner)\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Perdita di gas\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Raggruppa per...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"Ha un messaggio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Rischio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Pericoli\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Pericoli del sistema di gestione salute e sicurezza\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Pesante\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Alto\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se selezionata, nuovi messaggi richiedono attenzione.\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se selezionata, alcuni messaggi hanno un errore di consegna.\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Accensione di gas infiammabili\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Test implementazione\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Test implementazione\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Test implementazione dei rischi\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Intossicazione\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Segue\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Giustificazione\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Basso\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Invecchiamento materiali\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Probabile\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Medio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Errore di consegna messaggio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"Messaggi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Numero di azioni\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Numero di errori\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Numero di messaggi che richiedono un'azione\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Numero di messaggi con errore di consegna\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"OHSAS - Azione\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"OHSAS - Posizione\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Impiego / Utilizzo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Impieghi / Utilizzi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Origine\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Origine del rischio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Origini\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Panico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Probabilità\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Probabilità\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Probabilità del rischio\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Probabilmente\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Responsabile\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Data revisione\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Errore consegna SMS\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Gravità\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Gravità\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Gravità del rischio\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Semplice\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Rovesciamento\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"Tipo di rischio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Tipi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Utilizzo del rischio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Valore\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Molto alto\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Molto probabile\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Molto basso\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Messaggi sito web\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Storico comunicazioni sito web\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Non conformità\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Conteggio non conformità\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Allegato principale\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Numero di messaggi che richiedono un'azione\"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Iscritti (canali)\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Numero di messaggi non letti\"\n\n#~ msgid \"Unread Messages\"\n#~ msgstr \"Messaggi non letti\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Conteggio messaggi non letti\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/ja.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\\n\"\n\"Language: ja\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"会社\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"作成者\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"作成日\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"日付\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"表示名\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"最終更新者\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"最終更新日\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"名称\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"タイプ\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"最終更新日\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/ko.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\\n\"\n\"Language: ko\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"작성자\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"작성일\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"날짜\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"표시 이름\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"최근 갱신한 사람\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"최근 갱신 날짜\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"이름\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"유형\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"최근 수정\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/lt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\\n\"\n\"Language: lt\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"(n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Įmonė\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Sukūrė\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Sukurta\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Vaizduojamas pavadinimas\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Paskutinį kartą atnaujino\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Paskutinį kartą atnaujinta\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Pavadinimas\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipas\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Paskutinį kartą keista\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/lt_LT.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-03-11 04:20+0000\\n\"\n\"PO-Revision-Date: 2017-03-11 04:20+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/\"\n\"23907/lt_LT/)\\n\"\n\"Language: lt_LT\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"(n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Sukūrė\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Sukurta\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Paskutinį kartą atnaujino\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Paskutinį kartą atnaujinta\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/lv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\\n\"\n\"Language: lv\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : \"\n\"2);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Uzņēmums\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Izveidoja\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Izveidots\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datums\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Pēdējo reizi atjaunoja\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Pēdējās izmaiņas\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nosaukums\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tips\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/mgmtsystem_hazard.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_hazard\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/mk.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\\n\"\n\"Language: mk\\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 % 10 == 1 && n % 100 != 11) ? 0 : 1;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Компанија\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Креирано од\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Креирано на\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Датум\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Прикажи име\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Последно ажурирање од\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Последно ажурирање на\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Име\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Тип\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Последна промена на\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/mn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\\n\"\n\"Language: mn\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Компани\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Үүсгэгч\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Үүсгэсэн\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Огноо\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Дэлгэцийн Нэр\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Сүүлийн засвар хийсэн\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Сүүлийн засвар хийсэн огноо\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Нэр\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Төрөл\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Сүүлийн засвар хийсэн огноо\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-26 02:48+0000\\n\"\n\"PO-Revision-Date: 2017-04-26 02:48+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/\"\n\"nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Akseptanse\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Godtatt\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Analyse\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Brudd\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Kommentarer\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Firma\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Svikt i forvaring\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Kontrolltiltak\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Kontrolltiltak av fare\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Kontrolltiltak\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Opprettet av\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Opprettet den\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Kritisk\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Dato\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Avdeling\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Beskrivelse\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Visnings navn\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"EMS - Tiltak\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"EMS - Posisjon\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Elektrisk Lense\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Kjørt\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Eksponering for farlige materialer\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Brann / Eksplosjon\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Gasslekasje\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Grupper etter ...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Fare\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Farer\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Farer i helse og sikkerhets-systemet\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Tung\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Høy\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Opptenning av brennbar gass\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Implementasjonstest\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Implementasjonstester\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Implementasjonstester av risiko\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Forgiftning\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Rettferdiggjøring\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Sist oppdatert av\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Sist oppdatert\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Lav\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Aldrende Materialer\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Kanskje\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Medium\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Navn\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"OHSAS - Tiltak\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"OHSAS - Posisjon\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Opptatt / Bruk\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Opptatt / Bruk\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Opphav\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Opprinnelse til fare\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Opprinnelse\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Panikk\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Sannsynligheter\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Sannsynlighet\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Sannsynlighet for fare\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Sannsynligvis\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Ansvarlig\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Revisjonsdato\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Alvorlighetsgrader\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Alvorlighetsgrad\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Alvorlighet av fare\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Enkel\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Søl\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Typer\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Bruk av fare\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Verdi\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Veldig høy\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Veldig sannsynlig\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Veldig lav\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Sist oppdatert \"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/nb_NO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-26 02:48+0000\\n\"\n\"PO-Revision-Date: 2017-04-26 02:48+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/\"\n\"teams/23907/nb_NO/)\\n\"\n\"Language: nb_NO\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Firma\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Laget av\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Laget den\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Vis navn\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Sist oppdatert av\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Sist oppdatert den\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Sist endret den\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/nl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\\n\"\n\"Language: nl\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Bedrijf\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Aangemaakt door\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Aangemaakt op\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Te tonen naam\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Laatst bijgewerkt op\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Naam\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst bijgewerkt op\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/nl_BE.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/\"\n\"nl_BE/)\\n\"\n\"Language: nl_BE\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Bedrijf\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Gemaakt door\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Gemaakt op\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Schermnaam\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Laatst bijgewerkt op\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Naam:\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst Aangepast op\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-09-09 00:37+0000\\n\"\n\"PO-Revision-Date: 2017-09-09 00:37+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/\"\n\"23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Aangemaakt door\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Aangemaakt op\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Omschrijving\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Weergavenaam\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Laatst bijgewerkt op\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Naam\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst gewijzigd op\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/pl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\\n\"\n\"Language: pl\\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=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && \"\n\"(n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && \"\n\"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Firma\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Utworzone przez\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Utworzono\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Wyświetlana nazwa \"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ostatnio modyfikowane przez\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ostatnia zmiana\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nazwa\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Typ\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ostatnio modyfikowano\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2018-12-15 21:58+0000\\n\"\n\"Last-Translator: alvarorib <alvaro.ribeiro@exo.pt>\\n\"\n\"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\\n\"\n\"Language: 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\"X-Generator: Weblate 3.3\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Aceitabilidade\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Aceite\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Análise\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Ruptura\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Comentários\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Falha de contenção\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Medidas de Controle\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Medida de controle do perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Medidas de Controle\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Crítico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Departamento\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"EMS - Ação\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"EMS - Posição\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Elétrico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Executado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Exposição a materiais perigosos\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Incêndio / Explosão\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Fuga de Gás\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupar Por...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Perigos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Perigos do Sistema de Gestão de Saúde e Segurança\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Pesado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Alta\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Ignição de gás inflamável\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Implementação de teste\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Implementação de testes\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Implementação de testes de perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Intoxicação\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Justificação\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Baixo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Envelhecimento dos Materiais\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Possivelmente\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Médio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"OHSAS - Ação\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"OHSAS - Posição\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Ocupação / Uso\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Ocupações / Usos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Origem\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Origem dos perigos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Origens\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Pânico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Probabilidades\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Probabilidade\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Probabilidade de Perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Provavelmente\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Data de Revisão\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Gravidades\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Gravidade\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Gravidade do perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Simples\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Derramar\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Teste\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"Tipo de perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Tipos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Uso do perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Valor\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Muito Alta\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Muito provavelmente\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Muito Baixo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificado a última vez por\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\n# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatic4@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2024-05-22 02:54+0000\\n\"\n\"Last-Translator: Rodrigo Macedo \"\n\"<sottomaiormacedotec@users.noreply.translation.odoo-community.org>\\n\"\n\"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/\"\n\"23907/pt_BR/)\\n\"\n\"Language: pt_BR\\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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Aceitabilidade\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Aceito\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Ação Necessária\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Análise\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Contador de Anexos\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Ruptura\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Comentarios\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Falha de contenção\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Medidas de Controle\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Medida de controle de risco\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Medidas de Controle\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Crítico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Departamento\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome para Mostrar\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"EMS - Ação\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"EMS - POSIÇÃO\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Elétrico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Executado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Exposição a materiais perigosos\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Incendio / Explosão\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguidores (Parceiros)\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Vazamento de Gás\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupar Por...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"Tem Mensagem\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Perigos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Riscos do Sistema de Gestão de Saúde e Segurança\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Pesado\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Alta\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"Identificação\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se marcada, novas mensagens requerem sua atenção.\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se marcada, algumas mensagens tem um erro de entrega.\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Ignição de gás inflamável\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Implementação de teste\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Implementação de testes\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Implementação de testes de perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Intoxicação\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"É seguidor\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Justificação\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última atualização por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última atualização em\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Baixo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Materias Envelhecidos\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Possivelmente\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Médio\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Mensagem de erro de entrega\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"Mensagens\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Número de Ações\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Número de erros\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensagens que exigem ação\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Número de mensagens com erro de entrega\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"OHSAS - Ação\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"OHSAS - POSIÇÃO\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Ocupação / Uso\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Ocupações / Usos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Origem\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Origem dos perigos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Origens\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Pânico\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Probabilidades\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Probabilidade\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Probabilidade de Perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Provavelmente\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Reveja Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\n#, fuzzy\nmsgid \"SMS Delivery error\"\nmsgstr \"Mensagem de erro de entrega\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Severidades\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Severidade\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Gravidade do perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Simples\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Derramar\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Teste\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"Tipo de Perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Tipos\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Uso de perigo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Valor\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Muito Alta\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Muito provavelmente\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Muito Baixo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Mensagens do website\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Histórico de mensagens do site\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última atualização em\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Anexo Principal\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Número de mensagens que requerem uma ação\"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Seguidores (Canais)\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Número de mensagens não-lidas\"\n\n#~ msgid \"Unread Messages\"\n#~ msgstr \"Mensagens não-lidas\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Contador de Mensagens não-lidas\"\n\n#~ msgid \"If checked new messages require your attention.\"\n#~ msgstr \"Se marcada, novas mensagens requerem sua atenção.\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/pt_PT.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/\"\n\"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: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome a Apresentar\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última Modificação Em\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/ro.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-07-29 04:34+0000\\n\"\n\"PO-Revision-Date: 2017-07-29 04:34+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\\n\"\n\"Language: ro\\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=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?\"\n\"2:1));\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Companie\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat de\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Creat la\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nume Afişat\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualizare făcută de\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualizare la\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Nume\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima actualizare în\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/ru.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\\n\"\n\"Language: ru\\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=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || \"\n\"(n%100>=11 && n%100<=14)? 2 : 3);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Компания\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Создано\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Создан\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Дата\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Последний раз обновлено\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Последний раз обновлено\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Название\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/sk.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\\n\"\n\"Language: sk\\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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Spoločnosť\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Vytvoril\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Vytvorené\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Dátum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Zobraziť meno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Naposledy upravoval\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Naposledy upravované\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Meno\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Typ\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Posledná modifikácia\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-26 02:48+0000\\n\"\n\"PO-Revision-Date: 2023-03-31 21:29+0000\\n\"\n\"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\\n\"\n\"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\\n\"\n\"Language: sl\\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3;\\n\"\n\"X-Generator: Weblate 4.14.1\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Sprejemljivost\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Sprejeto\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Analiza\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Zlom\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Komentarji\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Družba\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Odpoved zadrževanja\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Kontrolna izmera\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Kontrolna izmera nevarnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Kontrolne izmere\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Kritična\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Oddelek\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Opis\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikazani naziv\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"Prva pomoč - ukrep\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"Prva pomoč - pozicija\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Elektro-črpalna drenaža\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Izvedeno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Izpostavljenost nevarnim snovem\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Požar / eksplozija\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Uhajanje plina\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Združi po...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Nevarnost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Nevarnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Nevarnosti v sistemu upravljanja zdravja in varnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Težka\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Visoka\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Vžig vnetljivega plina\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Test implementacije\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Testiranja implementacije\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Testiranja implementacije za nevarnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Zastrupitev\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Razlog\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnji posodobil\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Nizka\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Staranje materialov\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Mogoče\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Srednja\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"Varnost in zdravje pri delu - ukrep\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"Varnost in zdravje pri delu - pozicija\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Poklic / uporaba\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Poklic / uporabe\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Izvor\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Izvor nevarnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Izvori\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Panika\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Verjetnost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Verjetnost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Verjetnost nevarnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Verjetno\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Odgovorni\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Datum revizije\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Resnost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Resnost\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Resnost nevarnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Enostavna\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Izliv\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tip\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"Tip nevarnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Tipi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Raba nevarnosti\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Vrednost\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Zelo visoka\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Zelo verjetna\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Zelo nizka\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič spremenjeno\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/sr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\\n\"\n\"Language: sr\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Kreiran\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Ime\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tip\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/sr@latin.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/\"\n\"sr@latin/)\\n\"\n\"Language: sr@latin\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Kreirao\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Kreiran\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Ime za prikaz\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnja izmjena\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnja izmjena\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Ime:\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tip\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnja izmjena\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-11-18 05:26+0000\\n\"\n\"PO-Revision-Date: 2024-09-04 14:06+0000\\n\"\n\"Last-Translator: jakobkrabbe <jakob@syscare.se>\\n\"\n\"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\\n\"\n\"Language: sv\\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.6.2\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Godtagbarhet\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"Accepterad\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Åtgärd krävs\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"Analys\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Antal bifogade filer\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"Brott\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"Kommentarer\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Bolag\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"Inneslutningsfel\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"Kontrollåtgärd\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"Kontrollåtgärd av risk\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"Kontrollåtgärder\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Skapad av\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Skapad den\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"Kritisk\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"Avdelning\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"Beskrivning\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Visningsnamn\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"EMS - Åtgärder\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"EMS - Position\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"Elektrisk läns\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"Utförd\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"Exponering för farliga material\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"Brand/explosion\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Följare\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Följare (Partners)\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"Gasläcka\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"Gruppera genom...\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"Har meddelande\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"Risk\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"Risker\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Risker med ledningssystemet för hälsa och säkerhet\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"Tung\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"Hög\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Om markerad, nya meddelanden kräver din uppmärksamhet.\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Om markerad, vissa meddelanden får ett leveransfel.\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"Antändning av brandfarlig gas\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"Test av implementering\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"Implementationstester\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"Implementationstester av risk\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"Berusning\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Är följare\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"Motivering\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Senast uppdaterad av\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Senast uppdaterad den\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"Låg\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"Materialets åldrande\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"Kanske\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"Medium\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Fel vid leverans av meddelande\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"Meddelanden\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Namn\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Antal åtgärder\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Antal fel\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Antal meddelanden som kräver åtgärder\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Antal meddelanden med leveransfel\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"OHSAS - Åtgärder\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"OHSAS - Position\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"Yrke / användning\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"Yrke/användning\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"Ursprung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"Riskens ursprung\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"Ursprung\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"Panik\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"Sannolikheter\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"Sannolikhet\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"Sannolikhet för risk\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"Förmodligen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"Ansvarig\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"Datum för granskning\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"Svårighetsgrad\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"Allvarlighetsgrad\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"Riskens allvarlighetsgrad\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"Enkel\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"Spiller\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"Test\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Typ\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"Typ av riskkälla\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"Typer\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"Användning av risk\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"Värde\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"Mycket hög\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"Mycket sannolikt\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"Mycket låg\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Webbplatsmeddelanden\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Webbplatsens kommunikationshistorik\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Senast redigerad den\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Huvudfäste\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/th.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\\n\"\n\"Language: th\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"บริษัท\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"สร้างโดย\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"สร้างเมื่อ\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"วันที่\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"ชื่อที่ใช้แสดง\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"รหัส\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"อัพเดทครั้งสุดท้ายโดย\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"อัพเดทครั้งสุดท้ายเมื่อ\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"ชื่อ\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"ชนิด\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"แก้ไขครั้งสุดท้ายเมื่อ\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/tr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\\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\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Şirket\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Oluşturan\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Oluşturuldu\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Tarih\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Görünen İsim\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Son güncelleyen\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Son güncelleme\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Adı\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tipi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Son değişiklik\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/tr_TR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/\"\n\"tr_TR/)\\n\"\n\"Language: tr_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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"Firma\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Oluşturan\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Oluşturulma tarihi\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Görünen ad\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"Kimlik\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"En son güncelleyen \"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"En son güncelleme tarihi\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Ad\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Tip\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"En son güncelleme tarihi\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/uk.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\\n\"\n\"Language: uk\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Створив\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Дата створення\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Дата\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Назва для відображення\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Востаннє оновив\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Останнє оновлення\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Name\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Тип\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Остання модифікація\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/vi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\\n\"\n\"Language: vi\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Được tạo bởi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Được tạo vào\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"Ngày\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"Tên hiển thị\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Last Updated by\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Cập nhật lần cuối vào\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Tên\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"Loại\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Sửa lần cuối vào\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/vi_VN.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-07-29 04:34+0000\\n\"\n\"PO-Revision-Date: 2017-07-29 04:34+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/\"\n\"23907/vi_VN/)\\n\"\n\"Language: vi_VN\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"Tạo bởi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"Tạo vào\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Cập nhật lần cuối bởi\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Cập nhật lần cuối vào\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"Tên\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/zh_CN.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/\"\n\"zh_CN/)\\n\"\n\"Language: zh_CN\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"公司\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"创建者\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"创建时间\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"日期\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"显示名称\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"最后更新者\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"上次更新日期\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"名称\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"类型\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"最后修改时间\"\n"
  },
  {
    "path": "mgmtsystem_hazard/i18n/zh_TW.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-13 04:19+0000\\n\"\n\"PO-Revision-Date: 2017-05-13 04:19+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/\"\n\"zh_TW/)\\n\"\n\"Language: zh_TW\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Accepted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_breakage\nmsgid \"Breakage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__comments\nmsgid \"Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__company_id\nmsgid \"Company\"\nmsgstr \"公司\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_containment\nmsgid \"Containment Failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_form\nmsgid \"Control Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_control_measure\nmsgid \"Control Measure of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_control_measure_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__control_measure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_control_measure_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Control Measures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_uid\nmsgid \"Created by\"\nmsgstr \"建立者\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__create_date\nmsgid \"Created on\"\nmsgstr \"建立於\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_critical\nmsgid \"Critical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__analysis_date\nmsgid \"Date\"\nmsgstr \"日期\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__display_name\nmsgid \"Display Name\"\nmsgstr \"顯示名稱\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_action\nmsgid \"EMS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ems_position\nmsgid \"EMS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_electric_bilge\nmsgid \"Electric Bilge\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__executed\nmsgid \"Executed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_exposure\nmsgid \"Exposure to Hazardous Materials\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_fire_explosion\nmsgid \"Fire / Explosion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_leak\nmsgid \"Gas Leak\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__hazard_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__hazard_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_heavy\nmsgid \"Heavy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_high\nmsgid \"High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__id\nmsgid \"ID\"\nmsgstr \"編號\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_ignition_gas\nmsgid \"Ignition of Flammable Gas\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_form\nmsgid \"Implementation Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_test_list\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__test_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_test_filter\nmsgid \"Implementation Tests\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_test\nmsgid \"Implementation Tests of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_intoxication\nmsgid \"Intoxication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"最後更新：\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_hazard__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"最後更新於\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_low\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_low\nmsgid \"Low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_aging\nmsgid \"Materials Aging\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_maybe\nmsgid \"Maybe\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_medium\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_medium\nmsgid \"Medium\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__name\nmsgid \"Name\"\nmsgstr \"名稱\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_action\nmsgid \"OHSAS - Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.type,name:mgmtsystem_hazard.type_ohsas_position\nmsgid \"OHSAS - Position\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__usage_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_form\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_usage_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_usage\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_usage_filter\nmsgid \"Occupations / Usages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__origin_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_origin__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_form\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_origin\nmsgid \"Origin of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.origin,name:mgmtsystem_hazard.origin_panic\nmsgid \"Panic\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_probability_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_probability\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_filter\nmsgid \"Probabilities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__probability_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_probability_form\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_probability\nmsgid \"Probability of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_probably\nmsgid \"Probably\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_control_measure__responsible_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__responsible_user_id\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__review_date\nmsgid \"Review Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_severity_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_filter\nmsgid \"Severities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__severity_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_severity_form\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_severity\nmsgid \"Severity of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.severity,name:mgmtsystem_hazard.severity_simple\nmsgid \"Simple\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.hazard,name:mgmtsystem_hazard.hazard_spilling\nmsgid \"Spilling\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_test__name\nmsgid \"Test\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_form\nmsgid \"Type\"\nmsgstr \"類型\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_type\nmsgid \"Type of Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.actions.act_window,name:mgmtsystem_hazard.open_mgmtsystem_hazard_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard.menu_open_hazard_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard.view_mgmtsystem_hazard_type_filter\nmsgid \"Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model,name:mgmtsystem_hazard.model_mgmtsystem_hazard_usage\nmsgid \"Usage of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_probability__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_severity__value\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard_usage__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_high\nmsgid \"Very High\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.probability,name:mgmtsystem_hazard.probability_very_likely\nmsgid \"Very likely\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:mgmtsystem.hazard.usage,name:mgmtsystem_hazard.usage_very_low\nmsgid \"Very low\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard\n#: model:ir.model.fields,help:mgmtsystem_hazard.field_mgmtsystem_hazard__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"最後修改:\"\n"
  },
  {
    "path": "mgmtsystem_hazard/models/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import (\n    mgmtsystem_hazard_type,\n    mgmtsystem_hazard_origin,\n    mgmtsystem_hazard_hazard,\n    mgmtsystem_hazard_probability,\n    mgmtsystem_hazard_severity,\n    mgmtsystem_hazard_usage,\n    mgmtsystem_hazard_control_measure,\n    mgmtsystem_hazard_test,\n    mgmtsystem_hazard,\n)\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazard(models.Model):\n    \"\"\"Hazards of the health and safety management system\"\"\"\n\n    _name = \"mgmtsystem.hazard\"\n    _description = __doc__\n    _inherit = [\"mail.thread\"]\n\n    name = fields.Char(required=True, translate=True)\n    type_id = fields.Many2one(\"mgmtsystem.hazard.type\", \"Type\", required=True)\n    hazard_id = fields.Many2one(\"mgmtsystem.hazard.hazard\", \"Hazard\", required=True)\n    origin_id = fields.Many2one(\"mgmtsystem.hazard.origin\", \"Origin\", required=True)\n    department_id = fields.Many2one(\"hr.department\", \"Department\", required=True)\n    responsible_user_id = fields.Many2one(\"res.users\", \"Responsible\", required=True)\n    analysis_date = fields.Date(\"Date\", required=True)\n    probability_id = fields.Many2one(\"mgmtsystem.hazard.probability\", \"Probability\")\n    severity_id = fields.Many2one(\"mgmtsystem.hazard.severity\", \"Severity\")\n    usage_id = fields.Many2one(\"mgmtsystem.hazard.usage\", \"Occupation / Usage\")\n    acceptability = fields.Boolean()\n    justification = fields.Text()\n    control_measure_ids = fields.One2many(\n        \"mgmtsystem.hazard.control_measure\", \"hazard_id\", \"Control Measures\"\n    )\n    test_ids = fields.One2many(\n        \"mgmtsystem.hazard.test\", \"hazard_id\", \"Implementation Tests\"\n    )\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda s: s.env.user.company_id\n    )\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard_control_measure.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardControlMeasure(models.Model):\n    _name = \"mgmtsystem.hazard.control_measure\"\n    _description = \"Control Measure of hazard\"\n\n    name = fields.Char(\"Control Measure\", required=True, translate=True)\n    responsible_user_id = fields.Many2one(\"res.users\", \"Responsible\", required=True)\n    comments = fields.Text()\n    hazard_id = fields.Many2one(\n        \"mgmtsystem.hazard\", \"Hazard\", ondelete=\"cascade\", required=False, index=True\n    )\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard_hazard.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardHazard(models.Model):\n    _name = \"mgmtsystem.hazard.hazard\"\n    _description = \"Hazard\"\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", required=True, default=lambda self: self.env.company\n    )\n    name = fields.Char(\"Hazard\", required=True, translate=True)\n    description = fields.Text(translate=True)\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard_origin.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardOrigin(models.Model):\n    _name = \"mgmtsystem.hazard.origin\"\n    _description = \"Origin of hazard\"\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", required=True, default=lambda self: self.env.company\n    )\n    name = fields.Char(\"Origin\", required=True, translate=True)\n    description = fields.Text()\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard_probability.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardProbability(models.Model):\n    _name = \"mgmtsystem.hazard.probability\"\n    _description = \"Probability of hazard\"\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", required=True, default=lambda self: self.env.company\n    )\n    name = fields.Char(\"Probability\", required=True, translate=True)\n    value = fields.Integer(required=True)\n    description = fields.Text(required=False, translate=False)\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard_severity.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardSeverity(models.Model):\n    _name = \"mgmtsystem.hazard.severity\"\n    _description = \"Severity of hazard\"\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", required=True, default=lambda self: self.env.company\n    )\n    name = fields.Char(\"Severity\", required=True, translate=True)\n    value = fields.Integer(required=True)\n    description = fields.Text(required=False, translate=False)\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard_test.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardTest(models.Model):\n    _name = \"mgmtsystem.hazard.test\"\n    _description = \"Implementation Tests of hazard\"\n\n    name = fields.Char(\"Test\", required=True, translate=True)\n    responsible_user_id = fields.Many2one(\"res.users\", \"Responsible\", required=True)\n    review_date = fields.Date(required=True)\n    executed = fields.Boolean()\n    hazard_id = fields.Many2one(\n        \"mgmtsystem.hazard\", \"Hazard\", ondelete=\"cascade\", required=False, index=True\n    )\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard_type.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardType(models.Model):\n    _name = \"mgmtsystem.hazard.type\"\n    _description = \"Type of Hazard\"\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", required=True, default=lambda self: self.env.company\n    )\n    name = fields.Char(\"Type\", required=True, translate=True)\n    description = fields.Text()\n"
  },
  {
    "path": "mgmtsystem_hazard/models/mgmtsystem_hazard_usage.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardUsage(models.Model):\n    _name = \"mgmtsystem.hazard.usage\"\n    _description = \"Usage of hazard\"\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", required=True, default=lambda self: self.env.company\n    )\n    name = fields.Char(\"Occupation / Usage\", required=True, translate=True)\n    value = fields.Integer(required=True)\n    description = fields.Text()\n"
  },
  {
    "path": "mgmtsystem_hazard/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_hazard/readme/CONFIGURE.md",
    "content": "To configure this module, you need to:\n\n- review and customize items of dropdown lists in Management Systems \\>\n  Configuration \\> Hazard.\n"
  },
  {
    "path": "mgmtsystem_hazard/readme/CONTRIBUTORS.md",
    "content": "- Maxime Chambreuil \\<<maxime.chambreuil@savoirfairelinux.com>\\>\n- Loïc Lacroix \\<<loic.lacroix@savoirfairelinux.com>\\>\n- Nadège Grandjean \\<<nadege.grandjean@outlook.be>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n- [Guadaltech](https://www.guadaltech.es):\n  - Fernando La Chica \\<<fernando.lachica@guadaltech.es>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_hazard/readme/DESCRIPTION.md",
    "content": "This module enables you to manage the hazards and risks of your health\nand safety management system.\n"
  },
  {
    "path": "mgmtsystem_hazard/readme/ROADMAP.md",
    "content": "- Add multi-system and multi-company support\n"
  },
  {
    "path": "mgmtsystem_hazard/readme/USAGE.md",
    "content": "To use this module, you need to:\n\n- go to Management Systems \\> Manuals \\> Hazard\n- create a new hazard to enter analysis information, risk evaluation,\n  control measures, implementation tests and residual risks evaluation.\n"
  },
  {
    "path": "mgmtsystem_hazard/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_hazard\",\"mgmtsystem.hazard.user\",\"model_mgmtsystem_hazard\",\"mgmtsystem.group_mgmtsystem_user\",1,1,1,0\n\"access_mgmtsystem_hazard_manager\",\"mgmtsystem.hazard.manager\",\"model_mgmtsystem_hazard\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_origin_user\",\"mgmtsystem.hazard.origin.user\",\"model_mgmtsystem_hazard_origin\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_origin_manager\",\"mgmtsystem.hazard.origin.manager\",\"model_mgmtsystem_hazard_origin\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_probability_user\",\"mgmtsystem.hazard.probability.user\",\"model_mgmtsystem_hazard_probability\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_probability_manager\",\"mgmtsystem.hazard.probability.manager\",\"model_mgmtsystem_hazard_probability\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_severity_user\",\"mgmtsystem.hazard.severity.user\",\"model_mgmtsystem_hazard_severity\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_severity_manager\",\"mgmtsystem.hazard.severity.manager\",\"model_mgmtsystem_hazard_severity\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_usage_user\",\"mgmtsystem.hazard.usage.user\",\"model_mgmtsystem_hazard_usage\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_usage_manager\",\"mgmtsystem.hazard.usage.manager\",\"model_mgmtsystem_hazard_usage\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_hazard_user\",\"mgmtsystem.hazard.hazard.user\",\"model_mgmtsystem_hazard_hazard\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_hazard_manager\",\"mgmtsystem.hazard.hazard.manager\",\"model_mgmtsystem_hazard_hazard\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_test_user\",\"mgmtsystem.hazard.test.user\",\"model_mgmtsystem_hazard_test\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_test_manager\",\"mgmtsystem.hazard.test.manager\",\"model_mgmtsystem_hazard_test\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_control_measure_user\",\"mgmtsystem.hazard.control_measure.user\",\"model_mgmtsystem_hazard_control_measure\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_control_measure_manager\",\"mgmtsystem.hazard.control_measure.manager\",\"model_mgmtsystem_hazard_control_measure\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_type_user\",\"mgmtsystem.hazard.type.user\",\"model_mgmtsystem_hazard_type\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_type_manager\",\"mgmtsystem.hazard.type.manager\",\"model_mgmtsystem_hazard_type\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n"
  },
  {
    "path": "mgmtsystem_hazard/security/mgmtsystem_hazard_security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_rule\">\n        <field name=\"name\">mgmtsystem_hazard multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|',('company_id','=',False),('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_hazard_rule\">\n        <field name=\"name\">mgmtsystem_hazard_hazard multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard_hazard\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|',('company_id','=',False),('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_origin_rule\">\n        <field name=\"name\">mgmtsystem_hazard_origin multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard_origin\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|',('company_id','=',False),('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_probability_rule\">\n        <field name=\"name\">mgmtsystem_hazard_probability multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard_probability\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|',('company_id','=',False),('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_severity_rule\">\n        <field name=\"name\">mgmtsystem_hazard_severity multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard_severity\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|',('company_id','=',False),('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_type_rule\">\n        <field name=\"name\">mgmtsystem_hazard_type multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard_type\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|',('company_id','=',False),('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_usage_rule\">\n        <field name=\"name\">mgmtsystem_hazard_usage multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard_usage\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|',('company_id','=',False),('company_id', 'in', company_ids)]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/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=\"hazard\">\n<h1>Hazard</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:e0abf696ae44a7ba5e403e5f7b7566cd787f428286838e0d75082cfa78cb9a29\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/management-system/tree/18.0/mgmtsystem_hazard\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_hazard\"><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/management-system&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 enables you to manage the hazards and risks of your health\nand safety management system.</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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-2\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#known-issues-roadmap\" id=\"toc-entry-3\">Known issues / Roadmap</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>To configure this module, you need to:</p>\n<ul class=\"simple\">\n<li>review and customize items of dropdown lists in Management Systems &gt;\nConfiguration &gt; Hazard.</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Usage</a></h2>\n<p>To use this module, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Manuals &gt; Hazard</li>\n<li>create a new hazard to enter analysis information, risk evaluation,\ncontrol measures, implementation tests and residual risks evaluation.</li>\n</ul>\n</div>\n<div class=\"section\" id=\"known-issues-roadmap\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Known issues / Roadmap</a></h2>\n<ul class=\"simple\">\n<li>Add multi-system and multi-company support</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_hazard%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-5\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:maxime.chambreuil&#64;savoirfairelinux.com\">maxime.chambreuil&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Loïc Lacroix &lt;<a class=\"reference external\" href=\"mailto:loic.lacroix&#64;savoirfairelinux.com\">loic.lacroix&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Nadège Grandjean &lt;<a class=\"reference external\" href=\"mailto:nadege.grandjean&#64;outlook.be\">nadege.grandjean&#64;outlook.be</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://www.guadaltech.es\">Guadaltech</a>:<ul>\n<li>Fernando La Chica &lt;<a class=\"reference external\" href=\"mailto:fernando.lachica&#64;guadaltech.es\">fernando.lachica&#64;guadaltech.es</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-8\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_hazard\">OCA/management-system</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": "mgmtsystem_hazard/views/mgmtsystem_hazard.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <menuitem\n        id=\"menu_mgmtsystem_configuration_hazards\"\n        name=\"Hazards\"\n        parent=\"mgmtsystem.menu_mgmtsystem_configuration\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n        sequence=\"10\"\n    />\n\n    <record id=\"view_mgmtsystem_hazard_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.tree</field>\n        <field name=\"model\">mgmtsystem.hazard</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"type_id\" />\n                <field name=\"name\" />\n                <field name=\"hazard_id\" />\n                <field name=\"origin_id\" />\n                <field name=\"acceptability\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.filter</field>\n        <field name=\"model\">mgmtsystem.hazard</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Hazard\">\n                <group>\n                    <field name=\"type_id\" />\n                    <field name=\"name\" />\n                    <field name=\"hazard_id\" />\n                    <field name=\"origin_id\" />\n                    <field name=\"acceptability\" />\n                    <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                </group>\n                <newline />\n                <group expand=\"0\" string=\"Group By...\">\n                    <filter\n                        name=\"group_by_acceptability\"\n                        string=\"Accepted\"\n                        context=\"{'group_by':'acceptability'}\"\n                    />\n                    <separator orientation=\"vertical\" />\n                    <filter\n                        name=\"group_by_type_id\"\n                        string=\"Type\"\n                        context=\"{'group_by':'type_id'}\"\n                    />\n                </group>\n            </search>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.form</field>\n        <field name=\"model\">mgmtsystem.hazard</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Hazard\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"type_id\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"hazard_id\" />\n                        <field name=\"origin_id\" />\n                    </group>\n                    <notebook name=\"mgmtsystem_hazard\" colspan=\"4\">\n                        <page string=\"Analysis\">\n                            <group>\n                                <field name=\"department_id\" />\n                                <field name=\"responsible_user_id\" />\n                                <field name=\"analysis_date\" />\n                            </group>\n                        </page>\n                        <page string=\"Control Measures\">\n                            <field name=\"control_measure_ids\" nolabel=\"1\" />\n                        </page>\n                        <page string=\"Implementation Tests\">\n                            <field name=\"test_ids\" nolabel=\"1\" />\n                        </page>\n                    </notebook>\n                </sheet>\n                <chatter />\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"open_mgmtsystem_hazard_list\">\n        <field name=\"name\">Hazards</field>\n        <field name=\"res_model\">mgmtsystem.hazard</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" ref=\"view_mgmtsystem_hazard_tree\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_hazard_filter\" />\n    </record>\n\n    <menuitem\n        id=\"menu_open_hazard\"\n        action=\"open_mgmtsystem_hazard_list\"\n        parent=\"mgmtsystem.menu_mgmtsystem_manuals\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor,base.group_user\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/views/mgmtsystem_hazard_control_measure.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_hazard_control_measure_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.control_measure.form</field>\n        <field name=\"model\">mgmtsystem.hazard.control_measure</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Control Measure\">\n                <group colspan=\"4\" col=\"4\">\n                    <field name=\"name\" />\n                    <field name=\"responsible_user_id\" />\n                    <newline />\n                    <field name=\"comments\" />\n                </group>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_control_measure_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.control_measure.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.control_measure</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"responsible_user_id\" />\n                <field name=\"comments\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_control_measure_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Control Measures</field>\n        <field name=\"model\">mgmtsystem.hazard.control_measure</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Control Measures\">\n                <field name=\"name\" />\n                <field name=\"responsible_user_id\" />\n                <field name=\"comments\" />\n            </search>\n        </field>\n    </record>\n\n    <record\n        id=\"open_mgmtsystem_hazard_control_measure_list\"\n        model=\"ir.actions.act_window\"\n    >\n        <field name=\"name\">Control Measures</field>\n        <field name=\"res_model\">mgmtsystem.hazard.control_measure</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field\n            name=\"search_view_id\"\n            ref=\"view_mgmtsystem_hazard_control_measure_filter\"\n        />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/views/mgmtsystem_hazard_origin.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_hazard_origin_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.origin.form</field>\n        <field name=\"model\">mgmtsystem.hazard.origin</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Origin\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"description\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_origin_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.origin.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.origin</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"description\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_origin_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Origins</field>\n        <field name=\"model\">mgmtsystem.hazard.origin</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Origins\">\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <field name=\"name\" />\n                <field name=\"description\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_hazard_origin_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Origins</field>\n        <field name=\"res_model\">mgmtsystem.hazard.origin</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_hazard_origin_filter\" />\n    </record>\n\n    <menuitem\n        id=\"menu_open_hazard_origin\"\n        action=\"open_mgmtsystem_hazard_origin_list\"\n        parent=\"menu_mgmtsystem_configuration_hazards\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/views/mgmtsystem_hazard_probability.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_hazard_probability_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.probability.form</field>\n        <field name=\"model\">mgmtsystem.hazard.probability</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Probability\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"value\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"description\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_probability_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.probability.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.probability</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"value\" />\n                <field name=\"description\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_probability_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Probabilities</field>\n        <field name=\"model\">mgmtsystem.hazard.probability</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Probabilities\">\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <field name=\"name\" />\n                <field name=\"value\" />\n                <field name=\"description\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_hazard_probability_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Probabilities</field>\n        <field name=\"res_model\">mgmtsystem.hazard.probability</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_hazard_type_filter\" />\n    </record>\n\n    <menuitem\n        id=\"menu_open_hazard_probability\"\n        action=\"open_mgmtsystem_hazard_probability_list\"\n        parent=\"menu_mgmtsystem_configuration_hazards\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/views/mgmtsystem_hazard_severity.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_hazard_severity_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.severity.form</field>\n        <field name=\"model\">mgmtsystem.hazard.severity</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Severity\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"value\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"description\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_severity_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.severity.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.severity</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"value\" />\n                <field name=\"description\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_severity_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Origins</field>\n        <field name=\"model\">mgmtsystem.hazard.severity</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Severities\">\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <field name=\"name\" />\n                <field name=\"value\" />\n                <field name=\"description\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_hazard_severity_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Severities</field>\n        <field name=\"res_model\">mgmtsystem.hazard.severity</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_hazard_type_filter\" />\n    </record>\n\n    <menuitem\n        id=\"menu_open_hazard_severity\"\n        action=\"open_mgmtsystem_hazard_severity_list\"\n        parent=\"menu_mgmtsystem_configuration_hazards\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/views/mgmtsystem_hazard_test.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_hazard_test_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.test.form</field>\n        <field name=\"model\">mgmtsystem.hazard.test</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Implementation Test\">\n                <group colspan=\"4\" col=\"4\">\n                    <field name=\"name\" />\n                    <field name=\"responsible_user_id\" />\n                    <newline />\n                    <field name=\"review_date\" />\n                    <field name=\"executed\" />\n                </group>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_test_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.test.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.test</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"responsible_user_id\" />\n                <field name=\"review_date\" />\n                <field name=\"executed\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_test_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Implementation Tests</field>\n        <field name=\"model\">mgmtsystem.hazard.test</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Implementation Tests\">\n                <field name=\"name\" />\n                <field name=\"responsible_user_id\" />\n                <field name=\"review_date\" />\n                <field name=\"executed\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_hazard_test_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Implementation Tests</field>\n        <field name=\"res_model\">mgmtsystem.hazard.test</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_hazard_test_filter\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/views/mgmtsystem_hazard_type.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_hazard_type_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.type.form</field>\n        <field name=\"model\">mgmtsystem.hazard.type</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Type\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"description\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_type_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.type.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.type</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"description\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_type_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Types</field>\n        <field name=\"model\">mgmtsystem.hazard.type</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Types\">\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <field name=\"name\" />\n                <field name=\"description\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_hazard_type_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Types</field>\n        <field name=\"res_model\">mgmtsystem.hazard.type</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_hazard_type_filter\" />\n    </record>\n\n    <menuitem\n        id=\"menu_open_hazard_type\"\n        action=\"open_mgmtsystem_hazard_type_list\"\n        parent=\"menu_mgmtsystem_configuration_hazards\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard/views/mgmtsystem_hazard_usage.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_hazard_usage_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.usage.form</field>\n        <field name=\"model\">mgmtsystem.hazard.usage</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Occupation / Usage\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"value\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"description\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_usage_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.usage.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.usage</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"value\" />\n                <field name=\"description\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_usage_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Origins</field>\n        <field name=\"model\">mgmtsystem.hazard.usage</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Occupations / Usages\">\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <field name=\"name\" />\n                <field name=\"value\" />\n                <field name=\"description\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_hazard_usage_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Occupations / Usages</field>\n        <field name=\"res_model\">mgmtsystem.hazard.usage</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_hazard_type_filter\" />\n    </record>\n\n    <menuitem\n        id=\"menu_open_hazard_usage\"\n        action=\"open_mgmtsystem_hazard_usage_list\"\n        parent=\"menu_mgmtsystem_configuration_hazards\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/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===========\nHazard Risk\n===========\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:4bc000f59026e124edc4c2d269412c2fc9724e239d63e9a3fd25d4e1df6299d0\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_hazard_risk\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_hazard_risk\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module enables you to manage the risks of your health and safety\nmanagement system. This is a sub module of management system hazard.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo configure this module, you need to:\n\n- go to Settings > Management System\n- in Risk computation group, select the risk computation formula\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_hazard_risk%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>\n- Loïc Lacroix <loic.lacroix@savoirfairelinux.com>\n- Nadège Grandjean <nadege.grandjean@outlook.be>\n- `Guadaltech <https://www.guadaltech.es>`__:\n\n  - Fernando La Chica <fernando.lachica@guadaltech.es>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n- `Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>`__\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_hazard_risk>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\nfrom . import models\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n{\n    \"name\": \"Hazard Risk\",\n    \"version\": \"18.0.1.2.0\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem_hazard\", \"hr\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"security/mgmtsystem_hazard_security.xml\",\n        \"data/mgmtsystem_hazard_risk_computation.xml\",\n        \"data/mgmtsystem_hazard_risk_type.xml\",\n        \"views/mgmtsystem_hazard.xml\",\n        \"views/mgmtsystem_hazard_risk_type.xml\",\n        \"views/mgmtsystem_hazard_risk_computation.xml\",\n        \"views/mgmtsystem_hazard_residual_risk.xml\",\n        \"views/res_config_settings_views.xml\",\n    ],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/data/mgmtsystem_hazard_risk_computation.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- risk_computation -->\n\n    <record\n        id=\"risk_computation_a_times_b_times_c\"\n        model=\"mgmtsystem.hazard.risk.computation\"\n    >\n        <field name=\"name\">A * B * C</field>\n        <field\n            name=\"description\"\n        >Risk = Probability (A) x Severity (B) x Usage (C)</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n\n    <record id=\"risk_computation_a_times_b\" model=\"mgmtsystem.hazard.risk.computation\">\n        <field name=\"name\">A * B</field>\n        <field name=\"description\">Risk = Probability (A) x Severity (B)</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n\n    <record id=\"risk_computation_a_plus_b\" model=\"mgmtsystem.hazard.risk.computation\">\n        <field name=\"name\">A + B</field>\n        <field name=\"description\">Risk = Probability (A) + Severity (B)</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n\n    <record\n        id=\"risk_computation_a_times_b_plus_c\"\n        model=\"mgmtsystem.hazard.risk.computation\"\n    >\n        <field name=\"name\">(A * B) + C</field>\n        <field\n            name=\"description\"\n        >Risk = ( Probability (A) x Severity (B) ) + Usage (C)</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n\n    <record\n        id=\"risk_computation_a_plus_b_times_c\"\n        model=\"mgmtsystem.hazard.risk.computation\"\n    >\n        <field name=\"name\">(A + B) * C</field>\n        <field\n            name=\"description\"\n        >Risk = ( Probability (A) + Severity (B) ) x Usage (C)</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n\n    <record\n        id=\"risk_computation_a_plus_b_plus_c\"\n        model=\"mgmtsystem.hazard.risk.computation\"\n    >\n        <field name=\"name\">A + B + C</field>\n        <field\n            name=\"description\"\n        >Risk = Probability (A) + Severity (B) + Usage (C)</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/data/mgmtsystem_hazard_risk_type.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- risk_type -->\n\n    <record id=\"risk_type_physical\" model=\"mgmtsystem.hazard.risk.type\" forcecreate=\"0\">\n        <field name=\"name\">Physical</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n\n    <record id=\"risk_type_chemical\" model=\"mgmtsystem.hazard.risk.type\" forcecreate=\"0\">\n        <field name=\"name\">Chemical</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n\n    <record id=\"risk_type_fire\" model=\"mgmtsystem.hazard.risk.type\" forcecreate=\"0\">\n        <field name=\"name\">Fire</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n\n    <record\n        id=\"risk_type_environment\"\n        model=\"mgmtsystem.hazard.risk.type\"\n        forcecreate=\"0\"\n    >\n        <field name=\"name\">Environment</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard_risk\n#\n# Translators:\n# Rudolf Schnapka <rs@techno-flex.de>, 2016-2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-03-28 04:57+0000\\n\"\n\"PO-Revision-Date: 2017-04-19 11:36+0000\\n\"\n\"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\\n\"\n\"Language-Team: German (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/de/)\\n\"\n\"Language: de\\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: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Akzeptanz\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"Chemisch\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"Unternehmen\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"Risikoberechnung\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Konfigurationseinstellungen\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"Angelegt durch\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"Angelegt am\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"Beschreibung\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"Anzeigebezeichnung\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"Umwelt\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"Feuer\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"Gefahr\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Gefahren des Gesundheits- und Sicherheitsmanagementsystems\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"Rechtfertigung\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zuletzt aktualisiert durch\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zuletzt aktualisiert am\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"Bezeichnung\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"Einsatz / Verwendung\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"Physisch\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"Wahrscheinlichkeit\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"Restrisiko\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"Restrisikoabschätzungen\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"Restrisiken\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"Restrisiken der Gefahr\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\nmsgid \"Risk\"\nmsgstr \"Risiko\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"Risikoberechnung\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk Computation formula\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"Risikoberechnungen\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\n#, fuzzy\nmsgid \"Risk Evaluation\"\nmsgstr \"Restrisikoabschätzungen\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"Risikoart\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk computation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\nmsgid \"Risk formula\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"Riskoart der Gefahr\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"Schweregrad\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zuletzt geändert am\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard_risk\n#\n# Translators:\n# Antonio Trueba, 2016\n# Fernando La Chica, 2020\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-12-21 16:40+0000\\n\"\n\"PO-Revision-Date: 2023-07-07 17:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/es/)\\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: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Aceptabilidad\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"Químico\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"Compañías\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"Riesgo de cómputo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"ajustes de configuración\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"Descripción\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre para Mostrar\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"Entorno\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"Fuego\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"Riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Riesgos del sistema de gestión de la seguridad y salud\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"Justificación\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Actualizado por última vez por\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Actualizado por última vez el\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"Ocupación / Uso\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"Físico\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"Probabilidad\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"Riesgo residual\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"Evaluaciones del riesgo residual\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"Riesgos residuales\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"Riesgos residuales de peligrosidad\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\nmsgid \"Risk\"\nmsgstr \"Riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"Cálculo del riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk Computation formula\"\nmsgstr \"Fórmula de cálculo del riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"Cálculos del riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"Evaluación del riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"Tipo de riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"Tipos de riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk computation\"\nmsgstr \"Cálculo del riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\nmsgid \"Risk formula\"\nmsgstr \"Fórmula del riesgo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"Tipo de riesgo del peligro\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"Severidad\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\"Debe definir la fórmula de cálculo del riesgo de la empresa. Ir a \"\n\"configuración\"\n\n#~ msgid \"\"\n#~ \"<span class=\\\"fa fa-lg fa-building-o\\\" title=\\\"Values set here are \"\n#~ \"company-specific.\\\" role=\\\"img\\\" aria-label=\\\"Values set here are company-\"\n#~ \"specific.\\\" groups=\\\"base.group_multi_company\\\"/>\"\n#~ msgstr \"\"\n#~ \"<span class=\\\"fa fa-lg fa-building-o\\\" title=\\\"Values set here are \"\n#~ \"company-specific.\\\" role=\\\"img\\\" aria-label=\\\"Values set here are company-\"\n#~ \"specific.\\\" groups=\\\"base.group_multi_company\\\"/>\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"modificado por última vez el\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistema de gestión\"\n\n#~ msgid \"Analysis\"\n#~ msgstr \"Análisis\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard_risk\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-11-05 19:53+0000\\n\"\n\"PO-Revision-Date: 2015-11-03 19:11+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: French (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Acceptabilité\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"Chimique\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"Sociétés\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\n#, fuzzy\nmsgid \"Company\"\nmsgstr \"Sociétés\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"Calcul du risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"Description\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"Environnement\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"Feu\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"Danger\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Dangers du système de santé et de sécurité\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"Justification\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"Nom\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"Occupation / Usage\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"Physique\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"Probabilité\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"Risque résiduel\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"Évaluations du risque résiduel\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"Risques résiduels\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"Risques résiduels du danger\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\n#, fuzzy\nmsgid \"Risk\"\nmsgstr \"Type de risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"Calcul du risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk Computation formula\"\nmsgstr \"Calcul du risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"Calculs du risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"Évaluation du risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"Type de risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"Types de risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk computation\"\nmsgstr \"Calcul du risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\n#, fuzzy\nmsgid \"Risk formula\"\nmsgstr \"Calcul du risque\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"Type de risque du danger\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"Sévérité\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Système de gestion\"\n\n#~ msgid \"Analysis\"\n#~ msgstr \"Analyse\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/hr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard_risk\n#\n# Translators:\n# Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-28 00:51+0000\\n\"\n\"PO-Revision-Date: 2016-08-25 12:16+0000\\n\"\n\"Last-Translator: Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>\\n\"\n\"Language-Team: Croatian (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/hr/)\\n\"\n\"Language: hr\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Prihvatljivost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"Kemikalije\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"Poduzeća\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\n#, fuzzy\nmsgid \"Company\"\nmsgstr \"Poduzeća\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"Izračun rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"Stvorio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"Stvoreno na\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"Opis\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikaži naziv\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"Okoliš\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"Požar\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"Opasnost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Opasnost zdravlja i sigurnosti upravljačkog sustava\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"Opravdanje\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnji puta ažurirao\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažuriranje na\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"Iskorištenost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"Fizički\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"Vjerojatnost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"Preostali rizik\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"Evaluacija preostalog rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"Preostali rizici\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"Preostali rizici opasnosti\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\nmsgid \"Risk\"\nmsgstr \"Rizik\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"Izrčun rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk Computation formula\"\nmsgstr \"Izrčun rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"Izračuni rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"Evaluacija rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"Vrsta rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"Vrste rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk computation\"\nmsgstr \"Izrčun rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\n#, fuzzy\nmsgid \"Risk formula\"\nmsgstr \"Izrčun rizika\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"Vrsta rizika od opasnosti\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"Ozbiljnost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnja izmjena na\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Upravljački sustav\"\n\n#~ msgid \"Analysis\"\n#~ msgstr \"Analiza\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/id.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard_risk\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-12-09 13:03+0000\\n\"\n\"PO-Revision-Date: 2015-11-03 19:11+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/id/)\\n\"\n\"Language: id\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"Dibuat oleh\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"Dibuat oleh\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Perubahan terakhir oleh\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Tanggal terakhir dirubah\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\nmsgid \"Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk Computation formula\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk computation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\nmsgid \"Risk formula\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Tanggal terakhir dirubah\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistem Manajemen\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_hazard_risk\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 15.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2026-02-24 10:09+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.15.2\\n\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Accettabilità\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"Chimico\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"Aziende\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"Rischio di valutazione\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"Impostazioni di configurazione\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"Descrizione\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"Ambiente\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"Fuoco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"Pericolo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Pericoli del sistema di gestione salute e sicurezza\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"Giustificazione\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"Impiego / Utilizzo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"Fisico\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"Probabilità\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"Rischio residuo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"Valutazione rischio residuo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"Rischi residui\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"Rischio residuo del pericolo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\nmsgid \"Risk\"\nmsgstr \"Rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"Calcolo del rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk Computation formula\"\nmsgstr \"Formula calcolo del rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"Calcoli del rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"Valutazione del rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"Tipo del rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"Tipi di rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk computation\"\nmsgstr \"Calcolo del rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\nmsgid \"Risk formula\"\nmsgstr \"Formula del rischio\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"Tipo di rischio del pericolo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"Gravità\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"I valori impostati qui sono specifici per azienda.\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\"Bisogna definire la formula per il calcolo del rischio dell'azienda. \"\n\"Accedere alle impostazioni\"\n\n#~ msgid \"\"\n#~ \"<span class=\\\"fa fa-lg fa-building-o\\\" title=\\\"Values set here are \"\n#~ \"company-specific.\\\" role=\\\"img\\\" aria-label=\\\"Values set here are company-\"\n#~ \"specific.\\\" groups=\\\"base.group_multi_company\\\"/>\"\n#~ msgstr \"\"\n#~ \"<span class=\\\"fa fa-lg fa-building-o\\\" title=\\\"I valori impostati qui \"\n#~ \"sono specifici per azienda.\\\" role=\\\"img\\\" aria-label=\\\"I valori \"\n#~ \"impostati qui sono specifici per azienda.\\\" \"\n#~ \"groups=\\\"base.group_multi_company\\\"/>\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/mgmtsystem_hazard_risk.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_hazard_risk\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: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\nmsgid \"Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk Computation formula\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk computation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\nmsgid \"Risk formula\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard_risk\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-11-05 19:53+0000\\n\"\n\"PO-Revision-Date: 2015-11-03 19:11+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Akseptanse\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"Kjemisk\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"Firmaer\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\n#, fuzzy\nmsgid \"Company\"\nmsgstr \"Firmaer\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"Beregning av risiko\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"Beskrivelse\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"Miljø\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"Brann\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"Fare\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Farer i helse og sikkerhets-systemet\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"Rettferdiggjøring\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"Navn\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"Opptatt / Bruk\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"Fysisk\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"Sannsynlighet\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"Restparti Risiko\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"Restparti Risikovurdering\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"Restmateriale Risiko\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"Restparti risiko av faren\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\n#, fuzzy\nmsgid \"Risk\"\nmsgstr \"Risiko Type\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"Risikoberegning\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk Computation formula\"\nmsgstr \"Risikoberegning\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"Risikoberegninger\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"Risikoevaluering\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"Risiko Type\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"Risikotyper\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk computation\"\nmsgstr \"Risikoberegning\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\n#, fuzzy\nmsgid \"Risk formula\"\nmsgstr \"Risikoberegning\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"Risikotyper av denne faren\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"Alvorlighetsgrad\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Styringssystem\"\n\n#~ msgid \"Analysis\"\n#~ msgstr \"Analyse\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard_risk\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-11-05 19:53+0000\\n\"\n\"PO-Revision-Date: 2015-11-03 19:11+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-\"\n\"management-system-8-0/language/pt_BR/)\\n\"\n\"Language: pt_BR\\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: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Aceitabilidade\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"Químico\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"Empresas\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\n#, fuzzy\nmsgid \"Company\"\nmsgstr \"Empresas\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"Calculo Risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"Ambiente\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"Fogo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"Perigo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Riscos do Sistema de Gestão de Saúde e Segurança\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"Justificação\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"Ocupação / Uso\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"Físico\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"Probabilidade\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"Risco Residual\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"Avaliação risco residual\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"Riscos residuais\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"Riscos residuais de perigo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\n#, fuzzy\nmsgid \"Risk\"\nmsgstr \"Tipo de Risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"Cálculo de Risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk Computation formula\"\nmsgstr \"Cálculo de Risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"Cálculos de risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"Avaliação de Risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"Tipo de Risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"Tipos de risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk computation\"\nmsgstr \"Cálculo de Risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\n#, fuzzy\nmsgid \"Risk formula\"\nmsgstr \"Cálculo de Risco\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"Tipo de risco do perigo\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"Severidade\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistema de Gestão\"\n\n#~ msgid \"Analysis\"\n#~ msgstr \"Análise\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_hazard_risk\n#\n# Translators:\n# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-05-12 00:17+0000\\n\"\n\"PO-Revision-Date: 2023-03-31 21:29+0000\\n\"\n\"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\\n\"\n\"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/sl/)\\n\"\n\"Language: sl\\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3;\\n\"\n\"X-Generator: Weblate 4.14.1\\n\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"Sprejemljivost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"Kemično\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"Družbe\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\n#, fuzzy\nmsgid \"Company\"\nmsgstr \"Družbe\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"Izračun tveganja\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"Opis\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikazani naziv\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"Okoljsko\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"Požarno\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"Nevarnost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Nevarnosti v sistemu upravljanja zdravja in varnosti\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"Razlog\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnji posodobil\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"Poklic / uporaba\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"Fizično\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"Verjetnost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"Presežno\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"Vrednotenje presežnih tveganj\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"Presežna tveganja\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"Presežna tveganja nevarnosti\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\nmsgid \"Risk\"\nmsgstr \"Tveganje\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"Izračun tveganja\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk Computation formula\"\nmsgstr \"Izračun tveganja\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"Izračuni tveganj\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"Vrednotenje tveganja\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"Tip tveganja\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"Tipi tveganj\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\n#, fuzzy\nmsgid \"Risk computation\"\nmsgstr \"Izračun tveganja\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\n#, fuzzy\nmsgid \"Risk formula\"\nmsgstr \"Izračun tveganja\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"Tip tveganja nevarnosti\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"Resnost\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič spremenjeno\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistem upravljanja\"\n\n#~ msgid \"Analysis\"\n#~ msgstr \"Analiza\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2013-07-25 21:40+0000\\n\"\n\"PO-Revision-Date: 2014-03-05 02:13+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:30+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__acceptability\nmsgid \"Acceptability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_chemical\nmsgid \"Chemical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_company\nmsgid \"Companies\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_computation\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__name\nmsgid \"Computation Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_res_config_settings\nmsgid \"Config Settings\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__description\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_environment\nmsgid \"Environment\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_fire\nmsgid \"Fire\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__hazard_id\nmsgid \"Hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__justification\nmsgid \"Justification\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_computation__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__usage_id\nmsgid \"Occupation / Usage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:mgmtsystem.hazard.risk.type,name:mgmtsystem_hazard_risk.risk_type_physical\nmsgid \"Physical\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__probability_id\nmsgid \"Probability\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_form\nmsgid \"Residual Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__residual_risk_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Residual Risk Evaluations\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_residual_risk_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_residual_risk_filter\nmsgid \"Residual Risks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_residual_risk\nmsgid \"Residual Risks of hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__risk\nmsgid \"Risk\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_company__risk_computation_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_form\nmsgid \"Risk Computation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk Computation formula\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_computation_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_computation\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_computation_filter\nmsgid \"Risk Computations\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_form\nmsgid \"Risk Evaluation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard__risk_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_risk_type__name\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_form\nmsgid \"Risk Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.actions.act_window,name:mgmtsystem_hazard_risk.open_mgmtsystem_hazard_risk_type_list\n#: model:ir.ui.menu,name:mgmtsystem_hazard_risk.menu_open_hazard_risk_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.view_mgmtsystem_hazard_risk_type_filter\nmsgid \"Risk Types\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Risk computation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_res_config_settings__risk_computation_id\nmsgid \"Risk formula\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model,name:mgmtsystem_hazard_risk.model_mgmtsystem_hazard_risk_type\nmsgid \"Risk type of the hazard\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model:ir.model.fields,field_description:mgmtsystem_hazard_risk.field_mgmtsystem_hazard_residual_risk__severity_id\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_hazard_risk.res_config_settings_view_form\nmsgid \"Values set here are company-specific.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_hazard_risk\n#. odoo-python\n#: code:addons/mgmtsystem_hazard_risk/models/common.py:0\nmsgid \"You must define the company's risk computing formula. Go to settings\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/models/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import mgmtsystem_hazard_risk_computation\nfrom . import mgmtsystem_hazard_residual_risk\nfrom . import mgmtsystem_hazard_risk_type\nfrom . import mgmtsystem_hazard\nfrom . import res_company\nfrom . import res_config_settings\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/models/common.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import _\nfrom odoo.exceptions import UserError\nfrom odoo.tools.safe_eval import safe_eval\n\n\ndef _parse_risk_formula(formula, a, b, c):\n    \"\"\"Calculate the risk replacing the variables A, B, C into the formula.\"\"\"\n    if not formula:\n        raise UserError(\n            _(\"You must define the company's risk computing formula. Go to settings\")\n        )\n    f = formula.replace(\"A\", str(a)).replace(\"B\", str(b)).replace(\"C\", str(c))\n    return safe_eval(f)\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/models/mgmtsystem_hazard.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, fields, models\n\nfrom .common import _parse_risk_formula\n\n\nclass MgmtsystemHazard(models.Model):\n    _inherit = \"mgmtsystem.hazard\"\n\n    risk_type_id = fields.Many2one(\n        \"mgmtsystem.hazard.risk.type\", \"Risk Type\", required=True\n    )\n    risk = fields.Integer(compute=\"_compute_risk\")\n    residual_risk_ids = fields.One2many(\n        \"mgmtsystem.hazard.residual_risk\", \"hazard_id\", \"Residual Risk Evaluations\"\n    )\n\n    @api.depends(\"probability_id\", \"severity_id\", \"usage_id\")\n    def _compute_risk(self):\n        for hazard in self:\n            if hazard.probability_id and hazard.severity_id and hazard.usage_id:\n                hazard.risk = _parse_risk_formula(\n                    self.env.company.risk_computation_id.name,\n                    hazard.probability_id.value,\n                    hazard.severity_id.value,\n                    hazard.usage_id.value,\n                )\n            else:\n                hazard.risk = False\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/models/mgmtsystem_hazard_residual_risk.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, fields, models\n\nfrom .common import _parse_risk_formula\n\n\nclass MgmtsystemHazardResidualRisk(models.Model):\n    _name = \"mgmtsystem.hazard.residual_risk\"\n    _description = \"Residual Risks of hazard\"\n\n    name = fields.Char(required=True, translate=True)\n    probability_id = fields.Many2one(\n        \"mgmtsystem.hazard.probability\", \"Probability\", required=True\n    )\n    severity_id = fields.Many2one(\n        \"mgmtsystem.hazard.severity\", \"Severity\", required=True\n    )\n    usage_id = fields.Many2one(\"mgmtsystem.hazard.usage\", \"Occupation / Usage\")\n    acceptability = fields.Boolean()\n    justification = fields.Text()\n    hazard_id = fields.Many2one(\n        \"mgmtsystem.hazard\", \"Hazard\", ondelete=\"cascade\", index=True\n    )\n\n    @api.depends(\"probability_id\", \"severity_id\", \"usage_id\")\n    def _compute_risk(self):\n        for record in self:\n            if record.probability_id and record.severity_id and record.usage_id:\n                record.risk = _parse_risk_formula(\n                    record.env.company.risk_computation_id.name,\n                    record.probability_id.value,\n                    record.severity_id.value,\n                    record.usage_id.value,\n                )\n            else:\n                record.risk = False\n\n    risk = fields.Integer(compute=_compute_risk)\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/models/mgmtsystem_hazard_risk_computation.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardRiskComputation(models.Model):\n    _name = \"mgmtsystem.hazard.risk.computation\"\n    _description = \"Computation Risk\"\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n    name = fields.Char(\"Computation Risk\", required=True)\n    description = fields.Text()\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/models/mgmtsystem_hazard_risk_type.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazardRiskType(models.Model):\n    _name = \"mgmtsystem.hazard.risk.type\"\n    _description = \"Risk type of the hazard\"\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n    name = fields.Char(\"Risk Type\", required=True, translate=True)\n    description = fields.Text()\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/models/res_company.py",
    "content": "# Copyright (C) 2020 Guadaltech Soluciones Tecnológicas (<http://www.guadaltech.es>).\n# Part of Odoo. See LICENSE file for full copyright and licensing details.\n\nfrom odoo import fields, models\n\n\nclass ResCompany(models.Model):\n    _inherit = \"res.company\"\n\n    risk_computation_id = fields.Many2one(\n        \"mgmtsystem.hazard.risk.computation\", string=\"Risk Computation\"\n    )\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/models/res_config_settings.py",
    "content": "# Part of Odoo. See LICENSE file for full copyright and licensing details.\n\nfrom odoo import fields, models\n\n\nclass ResConfigSettings(models.TransientModel):\n    _inherit = \"res.config.settings\"\n\n    risk_computation_id = fields.Many2one(\n        related=\"company_id.risk_computation_id\", string=\"Risk formula\", readonly=False\n    )\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/readme/CONFIGURE.md",
    "content": "To configure this module, you need to:\n\n- go to Settings \\> Management System\n- in Risk computation group, select the risk computation formula\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/readme/CONTRIBUTORS.md",
    "content": "- Maxime Chambreuil \\<<maxime.chambreuil@savoirfairelinux.com>\\>\n- Loïc Lacroix \\<<loic.lacroix@savoirfairelinux.com>\\>\n- Nadège Grandjean \\<<nadege.grandjean@outlook.be>\\>\n- [Guadaltech](https://www.guadaltech.es):\n  - Fernando La Chica \\<<fernando.lachica@guadaltech.es>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/readme/DESCRIPTION.md",
    "content": "This module enables you to manage the risks of your health and safety\nmanagement system. This is a sub module of management system hazard.\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_hazard_risk_computation_user\",\"mgmtsystem.hazard.risk_computation.user\",\"model_mgmtsystem_hazard_risk_computation\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_risk_computation_manager\",\"mgmtsystem.hazard.risk_computation.manager\",\"model_mgmtsystem_hazard_risk_computation\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_risk_type_user\",\"mgmtsystem.hazard.risk_type.user\",\"model_mgmtsystem_hazard_risk_type\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_risk_type_manager\",\"mgmtsystem.hazard.risk_type.manager\",\"model_mgmtsystem_hazard_risk_type\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_hazard_residual_risk_user\",\"mgmtsystem_hazard.residual_risk.user\",\"model_mgmtsystem_hazard_residual_risk\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_hazard_residual_risk_manager\",\"mgmtsystem_hazard.residual_risk.manager\",\"model_mgmtsystem_hazard_residual_risk\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/security/mgmtsystem_hazard_security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_rule\">\n        <field name=\"name\">mgmtsystem_hazard multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|',('company_id','=',False),('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_risk_computation_rule\">\n        <field name=\"name\">mgmtsystem_hazard_risk_computation multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard_risk_computation\" />\n        <field name=\"global\" eval=\"True\" />\n        <field name=\"domain_force\">[('company_id', 'in', company_ids + [False])]</field>\n    </record>\n    <record model=\"ir.rule\" id=\"mgmtsystem_hazard_risk_type_rule\">\n        <field name=\"name\">mgmtsystem_hazard_risk_type multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_hazard_risk_type\" />\n        <field name=\"global\" eval=\"True\" />\n        <field name=\"domain_force\">[('company_id', 'in', company_ids + [False])]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/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=\"hazard-risk\">\n<h1>Hazard Risk</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:4bc000f59026e124edc4c2d269412c2fc9724e239d63e9a3fd25d4e1df6299d0\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/management-system/tree/18.0/mgmtsystem_hazard_risk\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_hazard_risk\"><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/management-system&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 enables you to manage the risks of your health and safety\nmanagement system. This is a sub module of management system hazard.</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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-6\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>To configure this module, you need to:</p>\n<ul class=\"simple\">\n<li>go to Settings &gt; Management System</li>\n<li>in Risk computation group, select the risk computation formula</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_hazard_risk%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-3\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:maxime.chambreuil&#64;savoirfairelinux.com\">maxime.chambreuil&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Loïc Lacroix &lt;<a class=\"reference external\" href=\"mailto:loic.lacroix&#64;savoirfairelinux.com\">loic.lacroix&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Nadège Grandjean &lt;<a class=\"reference external\" href=\"mailto:nadege.grandjean&#64;outlook.be\">nadege.grandjean&#64;outlook.be</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.guadaltech.es\">Guadaltech</a>:<ul>\n<li>Fernando La Chica &lt;<a class=\"reference external\" href=\"mailto:fernando.lachica&#64;guadaltech.es\">fernando.lachica&#64;guadaltech.es</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.heliconia.io\">Heliconia Solutions Pvt. Ltd.</a></li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_hazard_risk\">OCA/management-system</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": "mgmtsystem_hazard_risk/tests/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import test_mgmtsystem_hazard\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/tests/test_mgmtsystem_hazard.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\nfrom datetime import datetime\n\nfrom odoo import tools\nfrom odoo.tests import common\n\nDATE_FORMAT = tools.DEFAULT_SERVER_DATE_FORMAT\n\n\nclass TestMgmtsystemHazard(common.TransactionCase):\n    \"\"\"\n    Unit Test For mgmtsystem.hazard model\n    \"\"\"\n\n    def test_hazard_risk(self):\n        \"\"\"\n        Test Hazard Risk creation\n        :return: (None)\n        \"\"\"\n        type_rec = self.env.ref(\"mgmtsystem_hazard.type_ohsas_position\")\n        hazard_rec = self.env.ref(\"mgmtsystem_hazard.hazard_spilling\")\n        origin_rec = self.env.ref(\"mgmtsystem_hazard.origin_ignition_gas\")\n        department_rec = self.env[\"hr.department\"].create({\"name\": \"Department 01\"})\n        r_type_rec = self.env.ref(\"mgmtsystem_hazard_risk.risk_type_physical\")\n\n        record = self.env[\"mgmtsystem.hazard\"].create(\n            {\n                \"name\": \"Hazard Test 01\",\n                \"type_id\": type_rec.id,\n                \"hazard_id\": hazard_rec.id,\n                \"origin_id\": origin_rec.id,\n                \"department_id\": department_rec.id,\n                \"responsible_user_id\": self.env.user.id,\n                \"analysis_date\": datetime.now().strftime(DATE_FORMAT),\n                \"risk_type_id\": r_type_rec.id,\n            }\n        )\n        self.assertEqual(record.name, \"Hazard Test 01\")\n        self.assertEqual(record.risk, False)\n\n    def test_hazard_risk_computation_a_time_b_time_c(self):\n        \"\"\"\n        Test the hazard risk computation A * B * C\n        :return: (None)\n        \"\"\"\n        # A * B * C\n        computation_risk = self.env.ref(\n            \"mgmtsystem_hazard_risk\" \".risk_computation_a_times_b_times_c\"\n        )\n        self.env.user.company_id.risk_computation_id = computation_risk\n\n        type_rec = self.env.ref(\"mgmtsystem_hazard.type_ohsas_position\")\n        hazard_rec = self.env.ref(\"mgmtsystem_hazard.hazard_spilling\")\n        origin_rec = self.env.ref(\"mgmtsystem_hazard.origin_ignition_gas\")\n        department_rec = self.env[\"hr.department\"].create({\"name\": \"Department 01\"})\n\n        # Probability = 2\n        probability_rec = self.env.ref(\"mgmtsystem_hazard.probability_maybe\")\n\n        # Severity = 3\n        severity_rec = self.env.ref(\"mgmtsystem_hazard.severity_heavy\")\n\n        # Usage = 5\n        usage_rec = self.env.ref(\"mgmtsystem_hazard.usage_very_high\")\n        r_type_rec = self.env.ref(\"mgmtsystem_hazard_risk.risk_type_physical\")\n\n        record = self.env[\"mgmtsystem.hazard\"].create(\n            {\n                \"name\": \"Hazard Test 02\",\n                \"type_id\": type_rec.id,\n                \"hazard_id\": hazard_rec.id,\n                \"origin_id\": origin_rec.id,\n                \"department_id\": department_rec.id,\n                \"responsible_user_id\": self.env.user.id,\n                \"analysis_date\": datetime.now().strftime(DATE_FORMAT),\n                \"probability_id\": probability_rec.id,\n                \"severity_id\": severity_rec.id,\n                \"usage_id\": usage_rec.id,\n                \"risk_type_id\": r_type_rec.id,\n            }\n        )\n        self.assertEqual(record.risk, 30)  # 2 * 3 * 5\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/views/mgmtsystem_hazard.xml",
    "content": "<odoo>\n    <record id=\"view_mgmtsystem_hazard_tree\" model=\"ir.ui.view\">\n        <field name=\"inherit_id\" ref=\"mgmtsystem_hazard.view_mgmtsystem_hazard_tree\" />\n        <field name=\"model\">mgmtsystem.hazard</field>\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"name\" position=\"after\">\n                <field name=\"risk_type_id\" />\n            </field>\n            <field name=\"origin_id\" position=\"after\">\n                <field name=\"risk\" />\n            </field>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_filter\" model=\"ir.ui.view\">\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_hazard.view_mgmtsystem_hazard_filter\"\n        />\n        <field name=\"model\">mgmtsystem.hazard</field>\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"name\" position=\"after\">\n                <field name=\"risk_type_id\" />\n            </field>\n            <field name=\"origin_id\" position=\"after\">\n                <field name=\"risk\" />\n            </field>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_form\" model=\"ir.ui.view\">\n        <field name=\"inherit_id\" ref=\"mgmtsystem_hazard.view_mgmtsystem_hazard_form\" />\n        <field name=\"model\">mgmtsystem.hazard</field>\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"hazard_id\" position=\"after\">\n                <field name=\"risk_type_id\" />\n            </field>\n            <xpath expr=\"//page[1]\" position=\"after\">\n                <page string=\"Risk Evaluation\">\n                    <group>\n                        <field name=\"probability_id\" />\n                        <field name=\"severity_id\" />\n                        <newline />\n                        <field name=\"usage_id\" />\n                        <field name=\"risk\" />\n                        <newline />\n                        <field name=\"acceptability\" />\n                        <newline />\n                        <field name=\"justification\" />\n                    </group>\n                </page>\n            </xpath>\n            <notebook name=\"mgmtsystem_hazard\" position=\"inside\">\n                <page string=\"Residual Risk Evaluations\">\n                    <field name=\"residual_risk_ids\" nolabel=\"1\" />\n                </page>\n            </notebook>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/views/mgmtsystem_hazard_residual_risk.xml",
    "content": "<odoo>\n    <record id=\"view_mgmtsystem_hazard_residual_risk_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.residual_risk.form</field>\n        <field name=\"model\">mgmtsystem.hazard.residual_risk</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Residual Risk\">\n                <group colspan=\"4\" col=\"4\">\n                    <field name=\"name\" />\n                    <newline />\n                    <field name=\"probability_id\" />\n                    <field name=\"severity_id\" />\n                    <newline />\n                    <field name=\"usage_id\" />\n                    <field name=\"acceptability\" />\n                    <newline />\n                    <field name=\"justification\" />\n                </group>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_residual_risk_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.residual_risk.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.residual_risk</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"probability_id\" />\n                <field name=\"severity_id\" />\n                <field name=\"usage_id\" />\n                <field name=\"acceptability\" />\n                <field name=\"justification\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_residual_risk_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Residual Risks</field>\n        <field name=\"model\">mgmtsystem.hazard.residual_risk</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Residual Risks\">\n                <field name=\"name\" />\n                <field name=\"probability_id\" />\n                <field name=\"severity_id\" />\n                <field name=\"usage_id\" />\n                <field name=\"acceptability\" />\n                <field name=\"justification\" />\n            </search>\n        </field>\n    </record>\n\n    <record\n        id=\"open_mgmtsystem_hazard_residual_risk_list\"\n        model=\"ir.actions.act_window\"\n    >\n        <field name=\"name\">Residual Risks</field>\n        <field name=\"res_model\">mgmtsystem.hazard.residual_risk</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field\n            name=\"search_view_id\"\n            ref=\"view_mgmtsystem_hazard_residual_risk_filter\"\n        />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/views/mgmtsystem_hazard_risk_computation.xml",
    "content": "<odoo>\n    <record id=\"view_mgmtsystem_hazard_risk_computation_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.risk_computation.form</field>\n        <field name=\"type\">form</field>\n        <field name=\"model\">mgmtsystem.hazard.risk.computation</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Risk Computation\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"description\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_risk_computation_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.risk_computation.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.risk.computation</field>\n        <field name=\"type\">list</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"description\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_risk_computation_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Risk Computations</field>\n        <field name=\"model\">mgmtsystem.hazard.risk.computation</field>\n        <field name=\"type\">search</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Risk Computations\">\n                <field name=\"company_id\" />\n                <field name=\"name\" />\n                <field name=\"description\" />\n            </search>\n        </field>\n    </record>\n\n    <record\n        id=\"open_mgmtsystem_hazard_risk_computation_list\"\n        model=\"ir.actions.act_window\"\n    >\n        <field name=\"name\">Risk Computations</field>\n        <field name=\"res_model\">mgmtsystem.hazard.risk.computation</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field\n            name=\"search_view_id\"\n            ref=\"view_mgmtsystem_hazard_risk_computation_filter\"\n        />\n    </record>\n\n    <menuitem\n        id=\"menu_open_hazard_risk_computation\"\n        action=\"open_mgmtsystem_hazard_risk_computation_list\"\n        parent=\"mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/views/mgmtsystem_hazard_risk_type.xml",
    "content": "<odoo>\n    <record id=\"view_mgmtsystem_hazard_risk_type_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.risk_type.form</field>\n        <field name=\"model\">mgmtsystem.hazard.risk.type</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Risk Type\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                        <field name=\"description\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_risk_type_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.hazard.risk_type.tree</field>\n        <field name=\"model\">mgmtsystem.hazard.risk.type</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"description\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_hazard_risk_type_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Risk Types</field>\n        <field name=\"model\">mgmtsystem.hazard.risk.type</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Risk Types\">\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <field name=\"name\" />\n                <field name=\"description\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_hazard_risk_type_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Risk Types</field>\n        <field name=\"res_model\">mgmtsystem.hazard.risk.type</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_hazard_risk_type_filter\" />\n    </record>\n\n    <menuitem\n        id=\"menu_open_hazard_risk_type\"\n        action=\"open_mgmtsystem_hazard_risk_type_list\"\n        parent=\"mgmtsystem_hazard.menu_mgmtsystem_configuration_hazards\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_hazard_risk/views/res_config_settings_views.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"res_config_settings_view_form\" model=\"ir.ui.view\">\n        <field name=\"name\">res.config.settings.view.form.inherit.hazard.risk</field>\n        <field name=\"model\">res.config.settings</field>\n        <field name=\"priority\" eval=\"100\" />\n        <field name=\"inherit_id\" ref=\"mgmtsystem.res_config_settings_view_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <block name=\"mgmtsystem_documentation_setting\" position=\"after\">\n                <block title=\"Risk computation\">\n                    <setting>\n                        <label for=\"risk_computation_id\" />\n                        <span\n                            class=\"fa fa-lg fa-building-o\"\n                            title=\"Values set here are company-specific.\"\n                            role=\"img\"\n                            aria-label=\"Values set here are company-specific.\"\n                            groups=\"base.group_multi_company\"\n                        />\n                        <div class=\"row\">\n                            <div class=\"text-muted col-lg-8\">\n                                Risk Computation formula\n                            </div>\n                        </div>\n\n                        <div class=\"content-group\">\n                            <div class=\"mt16\">\n                                <field\n                                    name=\"risk_computation_id\"\n                                    class=\"o_light_label\"\n                                    domain=\"[('company_id', '=', company_id)]\"\n                                    context=\"{'default_company_id': company_id}\"\n                                />\n                            </div>\n                        </div>\n                    </setting>\n                </block>\n            </block>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/README.rst",
    "content": "=============================================\nInformation Security Management System Manual\n=============================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:43de3ee301f6b983951156be274c8a730102d95b085bd2cb32aa08f6f3993b7c\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_info_security_manual\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_info_security_manual\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module provides an Information Security Manual Template.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nTo enter your information security manual, you need to:\n\n- go to Management Systems > Documentation > Manuals\n- Create a new page and select the Information Security category\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_info_security_manual%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- `Guadaltech <https://www.guadaltech.es>`__:\n\n  - Fernando La Chica <fernando.lachica@guadaltech.es>\n\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_info_security_manual>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/__init__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/__manifest__.py",
    "content": "##############################################################################\n#\n#    OpenERP, Open Source Management Solution\n#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\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\n#    published by the Free Software Foundation, either version 3 of the\n#    License, or (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 <http://www.gnu.org/licenses/>.\n#\n##############################################################################\n{\n    \"name\": \"Information Security Management System Manual\",\n    \"version\": \"18.0.1.0.0\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Generic Modules/Others\",\n    \"depends\": [\"mgmtsystem_manual\"],\n    \"data\": [\"data/information_security_manual.xml\"],\n    \"demo\": [],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/data/information_security_manual.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <record id=\"document_page_information_security_manual\" model=\"document.page\">\n        <field name=\"name\">Information Security Manual</field>\n        <field name=\"type\">category</field>\n        <field name=\"content\">\n<![CDATA[\n<h1>Application Domain</h1>\n\n<h2>General</h2>\n\n<h2>Application Perimeter</h2>\n\n<h1>Normatives References</h1>\n\n<h1>Terms and Definitions</h1>\n\n<h1>Information Security Management System</h1>\n\n<h2>General Requirements</h2>\n\n<h2>Establishment and Management of the ISMS</h2>\n\n<h3>Establishment of the ISMS</h3>\n\n<h3>Implementation and Operation of the ISMS</h3>\n\n<h3>Monitoring and Review of the ISMS</h3>\n\n<h3>Update and Improvement of the ISMS</h3>\n\n<h2>Requirements related to Documentation</h2>\n\n<h3>General</h3>\n\n<h3>Document Control</h3>\n\n<h3>Record Control</h3>\n\n<h1>Management Responsibility</h1>\n\n<h2>Management Involvement</h2>\n\n<h2>Resources Management</h2>\n\n<h3>Resources Provisioning</h3>\n\n<h3>Training, Awareness and Competence</h3>\n\n<h1>Internal Audits of the ISMS</h1>\n\n<h1>Management Review</h1>\n\n<h2>General</h2>\n\n<h2>Input elements</h2>\n\n<h2>Output elements</h2>\n\n<h1>Improvements of the ISMS</h1>\n\n<h2>Continuous Improvement</h2>\n\n<h2>Corrective Action</h2>\n\n<h2>Preventive Action</h2>\n]]>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/i18n/it.po",
    "content": ""
  },
  {
    "path": "mgmtsystem_info_security_manual/i18n/mgmtsystem_info_security_manual.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\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"
  },
  {
    "path": "mgmtsystem_info_security_manual/i18n/sv.po",
    "content": ""
  },
  {
    "path": "mgmtsystem_info_security_manual/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/readme/CONTRIBUTORS.md",
    "content": "- Maxime Chambreuil \\<<maxime.chambreuil@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- [Guadaltech](https://www.guadaltech.es):\n  - Fernando La Chica \\<<fernando.lachica@guadaltech.es>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/readme/DESCRIPTION.md",
    "content": "This module provides an Information Security Manual Template.\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/readme/USAGE.md",
    "content": "To enter your information security manual, you need to:\n\n- go to Management Systems \\> Documentation \\> Manuals\n- Create a new page and select the Information Security category\n"
  },
  {
    "path": "mgmtsystem_info_security_manual/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>Information Security Management System Manual</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=\"information-security-management-system-manual\">\n<h1 class=\"title\">Information Security Management System Manual</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:43de3ee301f6b983951156be274c8a730102d95b085bd2cb32aa08f6f3993b7c\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/management-system/tree/18.0/mgmtsystem_info_security_manual\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_info_security_manual\"><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/management-system&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 an Information Security Manual Template.</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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-6\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>To enter your information security manual, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Documentation &gt; Manuals</li>\n<li>Create a new page and select the Information Security category</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_info_security_manual%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-3\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:maxime.chambreuil&#64;savoirfairelinux.com\">maxime.chambreuil&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.guadaltech.es\">Guadaltech</a>:<ul>\n<li>Fernando La Chica &lt;<a class=\"reference external\" href=\"mailto:fernando.lachica&#64;guadaltech.es\">fernando.lachica&#64;guadaltech.es</a>&gt;</li>\n</ul>\n</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_info_security_manual\">OCA/management-system</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": "mgmtsystem_manual/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==========================\nManagement System - Manual\n==========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:a274ba27bd8b5fdcebb31e0b9f61b2f5f077c3bbb3336c647d30e62b87e0327a\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_manual\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_manual\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module adds a menu item \"Documentation\" and is a dependency of:\n\n- document_page_environment_manual\n- document_page_health_safety_manual\n- mgmtsystem_quality.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nInstallation\n============\n\nNo installation required.\n\nConfiguration\n=============\n\nNo configuration required.\n\nUsage\n=====\n\nTo use this module, you need to:\n\n- go to Management Systems > Documentation > Manuals\n- Create a new page based on existing templates or create your own\n  templates.\n\nChangelog\n=========\n\n13.0.1.0.0 (2019-11-08)\n-----------------------\n\n- [MIG] migration to 13.0.\n\n12.0.1.0.0 (2019-06-04)\n-----------------------\n\n- [MIG] migration to 12.0.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_manual%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Odoo SA <info@odoo.com>\n- Savoir-faire Linux <support@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- Eugen Don <eugen.don@don-systems.de>\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\nTrobz\n\n- Dung Tran <dungtd@trobz.com>\n- Tuan Nguyen <tuanna@trobz.com>\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n\nOther credits\n-------------\n\nThe development of this module has been financially supported by:\n\n- Camptocamp\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_manual>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_manual/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import models\n"
  },
  {
    "path": "mgmtsystem_manual/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Manual\",\n    \"version\": \"18.0.1.0.1\",\n    \"author\": \"Savoir-faire Linux,Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"document_page\", \"mgmtsystem\"],\n    \"data\": [\n        \"data/mgmtsystem_manual.xml\",\n        \"views/mgmtsystem_manual.xml\",\n        \"views/document_page.xml\",\n    ],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_manual/data/mgmtsystem_manual.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo noupdate=\"1\">\n    <record model=\"document.page\" id=\"manuals\">\n        <field name=\"name\">Manuals</field>\n        <field name=\"type\">category</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2019-09-24 17:24+0000\\n\"\n\"Last-Translator: Manuel Stahl <manuel.stahl@awesome-technologies.de>\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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 3.8\\n\"\n\n#. module: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"Kategorien\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"Handbuch\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Handbücher\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Handbücher Ihres Management-Systems.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"System\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# enjolras <yo@miguelrevilla.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-02-10 07:38+0000\\n\"\n\"PO-Revision-Date: 2023-09-04 18:40+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\\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: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"categorías\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"Manual\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Manuales\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Manuales de tus sistemas de gestión.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"sistema\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Manuels\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Manuels de vos systèmes de gestion.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-01 20:06+0000\\n\"\n\"PO-Revision-Date: 2017-05-01 20:06+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"Uputa\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Upute\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_manual\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 11.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2022-11-03 13:44+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 4.14.1\\n\"\n\n#. module: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"Categorie\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"Manuale\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Manuali\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Manuali per i sistemi di gestione.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"Sistema\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/lv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-06-30 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:39+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Latvian (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/lv/)\\n\"\n\"Language: lv\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : \"\n\"2);\\n\"\n\n#. module: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"Sistēma\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/mgmtsystem_manual.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_manual\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: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/\"\n\"nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Manualer\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Manualer til styringssystemet.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 04:24+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 04:24+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/\"\n\"teams/23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"Categorieën \"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"Handleiding\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Handleidingen\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Handleidingen van uw managementsysteem.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/nn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-06-30 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:39+0000\\n\"\n\"Last-Translator: <>\\n\"\n\"Language-Team: Norwegian Nynorsk (http://www.transifex.com/oca/OCA-\"\n\"management-system-9-0/language/nn/)\\n\"\n\"Language: nn\\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: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"Systemet\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2019-08-26 15:01+0000\\n\"\n\"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/\"\n\"teams/23907/pt_BR/)\\n\"\n\"Language: pt_BR\\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 3.8\\n\"\n\n#. module: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"Categorias\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"Manual\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Manuais\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Manuais dos seus sistemas de gestão.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"Sistema\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\\n\"\n\"Language: sl\\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=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3);\\n\"\n\n#. module: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Priročniki\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Priročniki sistemov upravljanja.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:39+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Swedish (http://www.transifex.com/oca/OCA-management-\"\n\"system-9-0/language/sv/)\\n\"\n\"Language: sv\\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: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"Manualer\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"Manualer för ditt Ledningssystem.\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/th.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_manual\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (9.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-03-05 01:40+0000\\n\"\n\"PO-Revision-Date: 2016-03-04 19:39+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>\\n\"\n\"Language-Team: Thai (http://www.transifex.com/oca/OCA-management-system-9-0/\"\n\"language/th/)\\n\"\n\"Language: th\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"คู่มือการใช้งาน\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"คู่มือระบบการจัดการของท่าน\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-09-29 21:28+0000\\n\"\n\"PO-Revision-Date: 2014-03-05 03:31+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem_manual\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_categories\nmsgid \"Categories\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model.fields,field_description:mgmtsystem_manual.field_mgmtsystem_system__manual_id\nmsgid \"Manual\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.actions.act_window,name:mgmtsystem_manual.action_manuals\n#: model:ir.ui.menu,name:mgmtsystem_manual.menu_mgmtsystem_manuals_manuals\nmsgid \"Manuals\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model_terms:ir.actions.act_window,help:mgmtsystem_manual.action_manuals\nmsgid \"Manuals of your management systems.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_manual\n#: model:ir.model,name:mgmtsystem_manual.model_mgmtsystem_system\nmsgid \"System\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_manual/models/__init__.py",
    "content": "from . import mgmtsystem_manual\n"
  },
  {
    "path": "mgmtsystem_manual/models/mgmtsystem_manual.py",
    "content": "# Copyright 2019 Odoo Community Association\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtSystemManual(models.Model):\n    _inherit = \"mgmtsystem.system\"\n\n    manual_id = fields.Many2one(\"document.page\", string=\"Manual\")\n"
  },
  {
    "path": "mgmtsystem_manual/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_manual/readme/CONFIGURE.md",
    "content": "No configuration required.\n"
  },
  {
    "path": "mgmtsystem_manual/readme/CONTRIBUTORS.md",
    "content": "- Odoo SA \\<<info@odoo.com>\\>\n- Savoir-faire Linux \\<<support@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n\nTrobz\n\n- Dung Tran \\<<dungtd@trobz.com>\\>\n- Tuan Nguyen \\<<tuanna@trobz.com>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n"
  },
  {
    "path": "mgmtsystem_manual/readme/CREDITS.md",
    "content": "The development of this module has been financially supported by:\n\n- Camptocamp\n"
  },
  {
    "path": "mgmtsystem_manual/readme/DESCRIPTION.md",
    "content": "This module adds a menu item \"Documentation\" and is a dependency of:\n\n- document_page_environment_manual\n- document_page_health_safety_manual\n- mgmtsystem_quality.\n"
  },
  {
    "path": "mgmtsystem_manual/readme/HISTORY.md",
    "content": "## 13.0.1.0.0 (2019-11-08)\n\n- \\[MIG\\] migration to 13.0.\n\n## 12.0.1.0.0 (2019-06-04)\n\n- \\[MIG\\] migration to 12.0.\n"
  },
  {
    "path": "mgmtsystem_manual/readme/INSTALL.md",
    "content": "No installation required.\n"
  },
  {
    "path": "mgmtsystem_manual/readme/USAGE.md",
    "content": "To use this module, you need to:\n\n- go to Management Systems \\> Documentation \\> Manuals\n- Create a new page based on existing templates or create your own\n  templates.\n"
  },
  {
    "path": "mgmtsystem_manual/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=\"management-system-manual\">\n<h1>Management System - Manual</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:a274ba27bd8b5fdcebb31e0b9f61b2f5f077c3bbb3336c647d30e62b87e0327a\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/management-system/tree/18.0/mgmtsystem_manual\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_manual\"><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/management-system&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 adds a menu item “Documentation” and is a dependency of:</p>\n<ul class=\"simple\">\n<li>document_page_environment_manual</li>\n<li>document_page_health_safety_manual</li>\n<li>mgmtsystem_quality.</li>\n</ul>\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=\"#installation\" id=\"toc-entry-1\">Installation</a></li>\n<li><a class=\"reference internal\" href=\"#configuration\" id=\"toc-entry-2\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-3\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#changelog\" id=\"toc-entry-4\">Changelog</a><ul>\n<li><a class=\"reference internal\" href=\"#section-1\" id=\"toc-entry-5\">13.0.1.0.0 (2019-11-08)</a></li>\n<li><a class=\"reference internal\" href=\"#section-2\" id=\"toc-entry-6\">12.0.1.0.0 (2019-06-04)</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-7\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-8\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-9\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-10\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-11\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-12\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"installation\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Installation</a></h2>\n<p>No installation required.</p>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Configuration</a></h2>\n<p>No configuration required.</p>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Usage</a></h2>\n<p>To use this module, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems &gt; Documentation &gt; Manuals</li>\n<li>Create a new page based on existing templates or create your own\ntemplates.</li>\n</ul>\n</div>\n<div class=\"section\" id=\"changelog\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Changelog</a></h2>\n<div class=\"section\" id=\"section-1\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">13.0.1.0.0 (2019-11-08)</a></h3>\n<ul class=\"simple\">\n<li>[MIG] migration to 13.0.</li>\n</ul>\n</div>\n<div class=\"section\" id=\"section-2\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">12.0.1.0.0 (2019-06-04)</a></h3>\n<ul class=\"simple\">\n<li>[MIG] migration to 12.0.</li>\n</ul>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-7\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_manual%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-8\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-9\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-10\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Odoo SA &lt;<a class=\"reference external\" href=\"mailto:info&#64;odoo.com\">info&#64;odoo.com</a>&gt;</li>\n<li>Savoir-faire Linux &lt;<a class=\"reference external\" href=\"mailto:support&#64;savoirfairelinux.com\">support&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n</ul>\n<p>Trobz</p>\n<ul class=\"simple\">\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Tuan Nguyen &lt;<a class=\"reference external\" href=\"mailto:tuanna&#64;trobz.com\">tuanna&#64;trobz.com</a>&gt;</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-11\">Other credits</a></h3>\n<p>The development of this module has been financially supported by:</p>\n<ul class=\"simple\">\n<li>Camptocamp</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-12\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_manual\">OCA/management-system</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": "mgmtsystem_manual/views/document_page.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <menuitem\n        id=\"menu_mgmtsystem_categories\"\n        name=\"Categories\"\n        action=\"document_page.action_category\"\n        parent=\"mgmtsystem.menu_mgmtsystem_configuration\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_manual/views/mgmtsystem_manual.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <record model=\"ir.actions.act_window\" id=\"action_manuals\">\n        <field name=\"name\">Manuals</field>\n        <field name=\"res_model\">document.page</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_tree\" />\n        <field name=\"search_view_id\" ref=\"document_page.view_wiki_filter\" />\n        <field name=\"help\">Manuals of your management systems.</field>\n        <field name=\"domain\" eval=\"[('parent_id', 'ilike', 'manual')]\" />\n    </record>\n    <record id=\"action_manuals_tree\" model=\"ir.actions.act_window.view\">\n        <field name=\"sequence\" eval=\"0\" />\n        <field name=\"view_mode\">list</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_tree\" />\n        <field name=\"act_window_id\" ref=\"action_manuals\" />\n    </record>\n    <record id=\"action_manuals_form\" model=\"ir.actions.act_window.view\">\n        <field name=\"sequence\" eval=\"5\" />\n        <field name=\"view_mode\">form</field>\n        <field name=\"view_id\" ref=\"document_page.view_wiki_form\" />\n        <field name=\"act_window_id\" ref=\"action_manuals\" />\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_manuals_manuals\"\n        name=\"Manuals\"\n        action=\"action_manuals\"\n        parent=\"mgmtsystem.menu_mgmtsystem_manuals\"\n        sequence=\"0\"\n        groups=\"mgmtsystem.group_mgmtsystem_viewer\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/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=================================\nManagement System - Nonconformity\n=================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:ac5dfaf7ad4439088d78bb0c47a4746e49338a742ee2984019738e51dfaa2aa9\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module enables you to manage the nonconformities of your management\nsystems:\n\n- Quality (ISO 9001)\n- Environment (ISO 14001)\n- Information Security (ISO 27001)\n- Health and Safety (ISO 45001)\n- IT Services (ISO 20000)\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nUsers must be added to the appropriate groups within Odoo as follows:\n\n- Creators: Settings > Users > Groups > Management System / User\n\nUsage\n=====\n\nTo use this module:\n\n- Go to Management System > Nonconformities\n- Click on Create to enter the following information:\n- Partner : Customer, supplier or internal personnel\n- Related to: Any reference pointing to the NC (order id, project id,\n  task id, etc.)\n- Responsible: Person responsible for the NC\n- Manager : Person managing the department or owner of the procedure\n- Filled in by: Originator of NC report\n- Origins: The source of the NC, how was it discover\n- Procedures: Against which procedure is the NC\n- Description: Evidence, reference to the standards\n- Click on Save and then set state from Draft to Analysis.\n\nGo to the newly created NC and fill in the following information:\n\nIn the Causes and Analysis tab:\n\n- Causes: Add root causes\n- Analysis: Describe the results of the investigation\n- Severity: Select the severity among unfounded, minor and major\n\nIn the Description tab:\n\n- Immediate action: Create or select an immediate action if appropriate\n\nClick on the Save button and then on the \"Action Plan\" button in the top\nright corner.\n\nIn the Actions tab, select or create new actions by entering the\nfollowing items:\n\n- Subject: What must be done - Return to Supplier, Use As Is, Scrap,\n  Rework, Re-grade, Repair\n- Deadline: Date by which the action must be completed\n- Responsible: Person in charge for implementing the action\n- Response Type: Immediate, corrective or preventive actions or\n  improvement opportunity\n- Description: Details of the action\n\nWhen the action is created, a notification is sent to the person\nresponsible for the action.\n\nEnter comments into the input field below the \"Plan Review\" section,\nthose comments are required to reach the next stage.\n\nTo begin the work on the planned Actions change the stage of the NC to\nopen by clicking on the \"In Progress\" button in the top right corner.\n\nWhen all actions of the plan are done, their effectiveness must be\nevaluated before closing the NC.\n\nKnown issues / Roadmap\n======================\n\n- The custom emails should be replaced by Mail Tracking features and\n  Subtypes (like in Project Tasks and Project Issues)\n- Automatically add responsible_user_id._uid, manager_user_id._uid,\n  author_user_id._uid to chatter\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Daniel Reis <dreis.pt@hotmail.com>\n- Glen Dromgoole <gdromgoole@tier1engineering.com>\n- Loic Lacroix <loic.lacroix@savoirfairelinux.com>\n- Sandy Carter <sandy.carter@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- Eugen Don <eugen.don@don-systems.de>\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\nTrobz\n\n- Dung Tran <dungtd@trobz.com>\n- Tuan Nguyen <tuanna@trobz.com>\n\nOther credits\n-------------\n\nThe development of this module has been financially supported by:\n\n- Camptocamp\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_nonconformity/__init__.py",
    "content": "# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n\nfrom . import models\n"
  },
  {
    "path": "mgmtsystem_nonconformity/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n{\n    \"name\": \"Management System - Nonconformity\",\n    \"version\": \"18.0.1.3.0\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem_action\", \"document_page_procedure\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"security/mgmtsystem_nonconformity_security.xml\",\n        \"views/mgmtsystem_nonconformity.xml\",\n        \"views/mgmtsystem_origin.xml\",\n        \"views/mgmtsystem_cause.xml\",\n        \"views/mgmtsystem_severity.xml\",\n        \"views/mgmtsystem_action.xml\",\n        \"views/mgmtsystem_nonconformity_stage.xml\",\n        \"data/sequence.xml\",\n        \"data/mgmtsystem_nonconformity_severity.xml\",\n        \"data/mgmtsystem_nonconformity_origin.xml\",\n        \"data/mgmtsystem_nonconformity_cause.xml\",\n        \"data/mgmtsystem_nonconformity_stage.xml\",\n        \"data/mail_message_subtype.xml\",\n        \"reports/mgmtsystem_nonconformity_report.xml\",\n    ],\n    \"demo\": [\n        \"demo/mgmtsystem_nonconformity_origin.xml\",\n        \"demo/mgmtsystem_nonconformity_cause.xml\",\n        \"demo/mgmtsystem_nonconformity.xml\",\n    ],\n    \"assets\": {\n        \"web.assets_backend\": [\n            \"mgmtsystem_nonconformity/static/src/**/*.xml\",\n            \"mgmtsystem_nonconformity/static/src/**/*.esm.js\",\n        ],\n        \"web.assets_unit_tests\": [\n            \"mgmtsystem_nonconformity/static/tests/**/*\",\n        ],\n    },\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_nonconformity/data/mail_message_subtype.xml",
    "content": "<odoo noupdate=\"1\">\n    <!-- Not used at the moment. To use them override the _track_subtype method -->\n    <record id=\"subtype_analysis\" model=\"mail.message.subtype\">\n        <field name=\"name\">Analysis</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity</field>\n        <field name=\"default\" eval=\"False\" />\n        <field name=\"description\">Analysis</field>\n    </record>\n\n    <record id=\"subtype_pending\" model=\"mail.message.subtype\">\n        <field name=\"name\">Pending Approval</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity</field>\n        <field name=\"default\" eval=\"False\" />\n        <field name=\"description\">Pending Approval</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/data/mgmtsystem_nonconformity_cause.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"badly_defined_need\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Badly defined need</field>\n    </record>\n\n    <record id=\"work_conditions\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Work conditions</field>\n    </record>\n\n    <record id=\"information_not_available\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Information not available</field>\n    </record>\n\n    <record id=\"bad_communication\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Bad communication</field>\n    </record>\n\n    <record id=\"bad_partner_relation\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Bad customer/supplier relation</field>\n    </record>\n\n    <record id=\"hr_unavailable_inadequate\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Human resource not available or inadequate</field>\n    </record>\n\n    <record id=\"instruction_not_respected\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Instruction not respected</field>\n    </record>\n\n    <record id=\"procedure_not_respected\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Procedure not respected</field>\n    </record>\n\n    <record id=\"technical_failure\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Technical failure</field>\n    </record>\n\n    <record id=\"procedure_not_defined\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Procedure not defined</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/data/mgmtsystem_nonconformity_origin.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"nc_origin_qc\" model=\"mgmtsystem.nonconformity.origin\">\n        <field name=\"name\">Quality Committee</field>\n    </record>\n\n    <record id=\"nc_origin_dr\" model=\"mgmtsystem.nonconformity.origin\">\n        <field name=\"name\">Direction Review</field>\n    </record>\n\n    <record id=\"nc_origin_internal_client\" model=\"mgmtsystem.nonconformity.origin\">\n        <field name=\"name\">Internal client complaint</field>\n    </record>\n\n    <record id=\"nc_origin_external_client\" model=\"mgmtsystem.nonconformity.origin\">\n        <field name=\"name\">External client complaint</field>\n    </record>\n\n    <record id=\"nc_origin_process\" model=\"mgmtsystem.nonconformity.origin\">\n        <field name=\"name\">Process Execution</field>\n    </record>\n\n    <record id=\"nc_origin_internal_audit\" model=\"mgmtsystem.nonconformity.origin\">\n        <field name=\"name\">Internal Audit</field>\n    </record>\n\n    <record id=\"nc_origin_extenal_audit\" model=\"mgmtsystem.nonconformity.origin\">\n        <field name=\"name\">External Audit</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/data/mgmtsystem_nonconformity_severity.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"nonconformity_severity_maj\" model=\"mgmtsystem.nonconformity.severity\">\n        <field name=\"name\">Major</field>\n        <field name=\"active\" eval=\"True\" />\n    </record>\n\n    <record id=\"nonconformity_severity_min\" model=\"mgmtsystem.nonconformity.severity\">\n        <field name=\"name\">Minor</field>\n        <field name=\"active\" eval=\"True\" />\n    </record>\n\n    <record id=\"nonconformity_severity_no\" model=\"mgmtsystem.nonconformity.severity\">\n        <field name=\"name\">Unfounded</field>\n        <field name=\"active\" eval=\"True\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/data/mgmtsystem_nonconformity_stage.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"stage_draft\" model=\"mgmtsystem.nonconformity.stage\">\n        <field name=\"name\">Draft</field>\n        <field name=\"sequence\">0</field>\n        <field name=\"state\">draft</field>\n    </record>\n    <record id=\"stage_analysis\" model=\"mgmtsystem.nonconformity.stage\">\n        <field name=\"name\">Analysis</field>\n        <field name=\"sequence\">50</field>\n        <field name=\"state\">analysis</field>\n    </record>\n    <record id=\"stage_pending\" model=\"mgmtsystem.nonconformity.stage\">\n        <field name=\"name\">Action Plan</field>\n        <field name=\"sequence\">100</field>\n        <field name=\"state\">pending</field>\n    </record>\n    <record id=\"stage_open\" model=\"mgmtsystem.nonconformity.stage\">\n        <field name=\"name\">In Progress</field>\n        <field name=\"sequence\">150</field>\n        <field name=\"state\">open</field>\n    </record>\n    <record id=\"stage_done\" model=\"mgmtsystem.nonconformity.stage\">\n        <field name=\"name\">Closed</field>\n        <field name=\"sequence\">200</field>\n        <field name=\"state\">done</field>\n    </record>\n    <record id=\"stage_cancel\" model=\"mgmtsystem.nonconformity.stage\">\n        <field name=\"name\">Cancelled</field>\n        <field name=\"sequence\">250</field>\n        <field name=\"state\">cancel</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/data/sequence.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"seq_mgmtsystem_nonconformity\" model=\"ir.sequence\">\n        <field name=\"name\">Management System Nonconformity</field>\n        <field name=\"code\">mgmtsystem.nonconformity</field>\n        <field name=\"padding\">3</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/demo/mgmtsystem_nonconformity.xml",
    "content": "<odoo>\n    <record id=\"demo_nonconformity\" model=\"mgmtsystem.nonconformity\">\n        <field name=\"partner_id\" ref=\"base.res_partner_3\" />\n        <field name=\"create_date\">2010-12-03</field>\n        <field name=\"name\">Demo Nonconformity</field>\n        <field name=\"responsible_user_id\" ref=\"base.user_demo\" />\n        <field name=\"manager_user_id\" ref=\"base.user_root\" />\n        <field name=\"user_id\" ref=\"base.user_demo\" />\n        <field\n            name=\"description\"\n        >The procedure has changed with no comments on the revision.</field>\n        <field\n            name=\"analysis\"\n        >Administrator didn't know he had to add a comment when changing the procedure.</field>\n        <field name=\"origin_ids\" eval=\"[(6,0,[ref('demo_origin')])]\" />\n        <field\n            name=\"procedure_ids\"\n            eval=\"[(6,0,[ref('document_page_procedure.document_page_procedure')])]\"\n        />\n        <field name=\"cause_ids\" eval=\"[(6,0,[ref('demo_cause')])]\" />\n        <field name=\"immediate_action_id\" ref=\"mgmtsystem_action.demo_immediate\" />\n        <field\n            name=\"action_ids\"\n            eval=\"[(6, 0, [ref('mgmtsystem_action.demo_immediate'), ref('mgmtsystem_action.demo_corrective'), ref('mgmtsystem_action.demo_preventive')])]\"\n        />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/demo/mgmtsystem_nonconformity_cause.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"demo_cause\" model=\"mgmtsystem.nonconformity.cause\">\n        <field name=\"name\">Lack of expertise</field>\n        <field\n            name=\"description\"\n        >The cause of the nonconformity is a lack of expertise of the person.</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/demo/mgmtsystem_nonconformity_origin.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"demo_origin\" model=\"mgmtsystem.nonconformity.origin\">\n        <field name=\"name\">Internal Audit</field>\n        <field\n            name=\"description\"\n        >The nonconformity was discovered during an internal audit.</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/am.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\\n\"\n\"Language: am\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/ca.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\\n\"\n\"Language: ca\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat per\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Creat el\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Darrera Actualització per\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Darrera Actualització per\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Darrera Actualització el\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2025-07-07 07:22+0000\\n\"\n\"Last-Translator: Matthias Alles <matthias.alles@posteo.de>\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"Anzahl der Nichtkonformitäten\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Maßnahme\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Maßnahme notwendig\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"Maßnahmenplan\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"Kommentare zum Maßnahmenplan\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\"Kommentare zum Maßnahmenplan werden benötigt, um die Nichtkonformität In \"\n\"Bearbeitung zu setzen.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Maßnahmen\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Aktiv?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"Aktivitäten\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"Aktivitätenstatus\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"Beschreibung hinzufügen...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\"Alle Maßnahmen müssen vor dem Schließen einer Nichtkonformität umgesetzt \"\n\"sein.\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Analyse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"Analysebestätigung\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"Archiviert\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Anzahl der Anhänge\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Verfasser\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"Schlechte Kommunikation\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"Schlechte Kunden-/Lieferantenbeziehung\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Schlecht definierte Anforderung\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"Blockiert\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Abgebrochen\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Ursache\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Ursache der Nichtkonformität des Managementsystems\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Ursachen\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"Ursachen und Analysen\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Ursachen der Nichtkonformität\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"Teilirsachen\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Abgeschlossen\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"Geschlossene Nichtkonformitäten\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Abschlussdatum\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"Kommentare zum Maßnahmenplan.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Unternehmen\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Erstellt von\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Erstellt am\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Zuletzt aktualisiert von\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Beschreibung\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Anzeigename\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Ausgefüllt durch\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Gruppiere nach...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zuletzt aktualisiert von\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zuletzt aktualisiert am\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Vorgesetzter\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Name\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Nichtkonformitäten\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Nichtkonformität\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\n#, fuzzy\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Nichteinhaltungen\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"Gegenwärtige Nichtkonformitäten\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Ursprung\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Ursache der Nichtkonformität des Managementsystems\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Ursprünge\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Ursprünge der Nichtkonformität\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Prozedur\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Prozeduren\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Bezug\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Verantwortlich\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Verantwortlich\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Reihenfolge\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Stufe\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Titel\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Benutzer\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zuletzt aktualisiert am\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Sofort-Maßnahmen\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/el_GR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/\"\n\"el_GR/)\\n\"\n\"Language: el_GR\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Δημιουργήθηκε από \"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Δημιουργήθηκε στις\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Τελευταία ενημέρωση από\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"Κωδικός\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Τελευταία ενημέρωση από\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Τελευταία ενημέρωση στις\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# enjolras <yo@miguelrevilla.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-02-10 07:38+0000\\n\"\n\"PO-Revision-Date: 2024-02-08 20:34+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"# Días para el cierre\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"# de disconformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\"Un estado kanban indica situaciones especiales que le afectan:\\n\"\n\" * Normal es la situación por defecto\\n\"\n\" * Bloqueado indica que algo está impidiendo el progreso de esta tarea\\n\"\n\" * Listo para la siguiente fase indica que la tarea está lista para pasar a \"\n\"la siguiente fase\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Acción\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"acción necesaria\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"Plan de acción\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"Comentarios plan de acción\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\"Los comentarios del plan    de acción son necesarios para poner una no \"\n\"conformidad En curso.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Acciones\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"Activado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Activo?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"actividades\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decoración de excepción de la actividad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"Estado de actividad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Tipo Icono Actividad\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"Añadir una descripción ...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\"Todas las acciones deben estar realizadas antes de cerrar una no conformidad.\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Análisis\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"Confirmación de análisis\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"archivado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"recuento de archivos adjuntos\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Autor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"Mala comunicación\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"Mala relación cliente/proveedor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Necesidad mal definida\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"Bloqueado\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Cancelado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Causa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Causa de la no conformidad del sistema de gestión\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Causas\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"Causas y análisis\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Causas de la no conformidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"Causas hijas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"Hijas\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Cerrado\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"No conformidades cerradas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Fecha de Cierre\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"Comentarios sobre el plan de acción.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"Conclusiones de la última evaluación de la efectividad.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"Días transcurridos desde la actualización\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"Define el orden para presentar los elementos\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Descripción\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"Revisión de la administración\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"Borrador\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"Borrador/Nuevas no conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"Revisión de efectividad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"Hilo de Correo Electrónico\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"Comentarios de evaluación\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\"Los comentarios de evaluación son necesarios para cerrar una no conformidad.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"Auditor externo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"Queja externa del cliente\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Rellenado por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"Doblado en Kanban\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"seguidores\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"seguidores(socios)\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"fuente iconos sorprendentes , por ejemplo fa-tasks\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"Grupo\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupar por...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"Tienes un mensaje\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\"Disponga de una visión general de todas las no conformidades procesadas en \"\n\"el sistema clasificándolas con criterios específicos.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"Recurso humano no disponibles o inadecuado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icono\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Icono para indicar la excepción de la actividad.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"si está marcada, los mensajes nuevos requieren su atención.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"si está marcada, algunos mensajes tienen un error de entrega.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"Acción inmediata\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"En progreso\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"Información no disponible\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"Instrucción no se respeta\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"Auditoría interna\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"Queja internal del cliente\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Es seguidor/a\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"Está comenzando la Etapa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"Estado de Kanban\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"Falta de experiencia\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualización por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización en\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"Mayor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"Análisis del sistema de gestión\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Gestor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Error de entrega del mensaje\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"Mensajes\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"Menor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Mi fecha de límite de actividad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Próximo evento del calendario de actividades\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Fecha Límite para la Próxima Actividad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Resumen de la Siguiente Actividad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo proxima actividad\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"No conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"Disconformidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"No conformidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"No conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"No conformidades pendientes de revisión\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"No conformidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Disconformidad Inmediata\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"Etapa de disconformidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"Etapas de la disconformidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Número de acciones\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Número de errores\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensajes que requieren una acción\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Número de mensajes con error de entrega\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"No conformidades abiertas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Orígen\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Origen de la no conformidad del sistema de gestión\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Orígenes\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Orígenes de la no conformidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"recorrido parental\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"Asociado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"Pendiente de aprobación\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"Plan de revisión\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Procedimiento\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"Procedimiento no definido\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"Procedimiento no respetado\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procedimientos\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"Proceso de ejecución\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"Comité de Calidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"Listo para la siguiente etapa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Referencia\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"Código referencia\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"No conformidades relacionadas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"Relacionado con\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"Resolución\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"Modelo Res\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Usuario Responsable\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Error de entrega de SMS\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Secuencia\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"Severidad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"Severidad de quejas y no conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Etapa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nombre de la etapa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"Etapas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Estado basado en actividades\\n\"\n\"Atrasado: La fecha de vencimiento ya ha pasado\\n\"\n\"Hoy: La fecha de la actividad es hoy\\n\"\n\"Planificado: Actividades futuras.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"Falla técnica\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\"Esta etapa se pliega en la vista kanban cuando no hay \\n\"\n\"registros en esa etapa para mostrar.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Título\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo de la actividad de excepción registrada.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"Infundado\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Mensajes no leídos\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"Se utiliza para ordenar los estados. Cuanto más bajo, mejor.\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Usuario\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"mensajes de la página web\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"historial de la comunicación en la web\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"Condiciones de trabajo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\"seleccione la casilla stis si esta es la etapa por defecto \\n\"\n\"para nuevas disconformidades\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"disconformidad\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Recuento de disconformidades\"\n\n#~ msgid \"Dropdown menu\"\n#~ msgstr \"Menú Desplegable\"\n\n#~ msgid \"Edit\"\n#~ msgstr \"Editar\"\n\n#~ msgid \"Nonconformity Abstract\"\n#~ msgstr \"Resumen de disconformidad\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Archivo adjunto principal\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Número de mensajes que requieren una acción\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Mensajes no leídos\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Mensajes no leídos\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Acción inmediata\"\n\n#~ msgid \"Non-Conformities\"\n#~ msgstr \"No conformidades\"\n\n#~ msgid \"Error! Cannot create recursive cycle.\"\n#~ msgstr \"Error! No se puede crear el ciclo recursivo.\"\n\n#~ msgid \"Parent Right\"\n#~ msgstr \"Padres derecha\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:18+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:18+0000\\n\"\n\"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA \"\n\"<josealejandroeche@gmail.com>, 2018\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procedimientos\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/es_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-05-29 15:34+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"# زمان تبدیل سرنخ به فرصت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"# عدم تطابق‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\"وضعیت کانبان نشان می‌دهد موقعیت‌های خاص بر آن تأثیر می‌گذارند.\\n\"\n\"* نرمال، وضعیت پیش‌فرض است.\\n\"\n\"* مسدود، نشان‌ می‌دهد چیزی مانع انجام این وظیفه است.\\n\"\n\"* آماده برای مرحله‌‎ی بعد، نشان می‌دهد وظیفه آماده‌ی انتقال به مرحله‌ی بعد است\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"اقدام\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"نیاز به اقدام\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"برنامه اجرایی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"توضیحات برنامه‌ی اجرایی\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\"توضیحات برنامه‌ی اجرایی برای در دست اقدام قرار دادن یک عدم تطابق موردنیاز است.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"اقدامات\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"فعال\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"فعال است؟\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"فعالیت‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"ترتیب فعالیت‌های استثناء\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"وضعیت فعالیت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"آیکون نوع فعالیت\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"افزودن یک توضیح ...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"تمام اقدامات باید پیش از بسته شدن یک عدم تطابق انجام شوند.\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"تحلیل\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"تأیید تحلیل\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"بایگانی شده\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"تعداد پیوست‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"مولف\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"ارتباط نامطلوب\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"رابطه با مشتری/عرضه‌‎کننده بد\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"نیازی که به شکل نادرست تعریف شده است\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"مسدود شده\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"لغو شده\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"علت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"علت عدم تطابق سیستم مدیریت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"علل\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"علل و تحلیل\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"علل عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"علل فرعی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"موارد فرعی\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"بسته شده\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"عدم تطابق‌های بسته شده\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"تاریخ پایانی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"توضیحات مربوط به برنامه اجرایی.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"شرکت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"نتیجه‌‌ی آخرین ارزیابی‌های مربوط به کارآمدی.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"ایجاد شده توسط\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"ایجاد شده در تاریخ\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"تعداد روزهای سپری شده از آخرین به روزرسانی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"ترتیب ارائه‌ی موارد را مشخص می‌کند\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"توضیح\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"بازبینی مسیر\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"نام کاربری\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"پیش‌نویس\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"پیش‌نویس/عدم تطابق‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"بررسی کارآمدی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"فهرست ایمیل‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"توضیحات مربوط به ارزیابی\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"توضیحات ارزیابی برای بستن یک عدم تطابق موردنیاز هستند.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"حسابرسی خارج از سازمان\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"شکایت مشتری خارج از سازمان\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"تکمیل شده توسط\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"قرار داده شده در کانبان\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"دنبال‌کننده‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"دنبال‌کننده‌ها (شرکا)\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"آیکون فونت awsome، مانند fa-task\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"گروه\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"گروه‌بندی براساس ...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"پیامی وجود دارد\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\"مروری کلی بر تمام عدم تطابق‌های پردازش شده در سیستم که براساس معیارهای خاصی \"\n\"دسته‎بندی شده‌اند.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"منابع انسانی ناموجود یا ناکافی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"شناسه\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"آیکون\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"آیکونی که نشان‌دهنده‌ی یک فعالیت استثناء است.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"در صورت انتخاب این گزینه، باید پیام‌های جدید را بررسی کنید.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"انتخاب این گزینه نشان می‌دهد که برخی پیام‌ها دارای خطای تحویل هستند.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"اقدام فوری\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"در جریان\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"اطلاعاتی در دسترس نیست\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"دستورالعمل‌ها رعایت نشده‌اند\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"حسابرسی داخلی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"شکایت مشتری داخلی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"آیا دنبال‌کننده است\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"آیا در مرحله‌ی شروع است\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"وضعیت کانبان\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"عدم وجود تخصص\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"به روزرسانی شده توسط\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"تاریخ آخرین به روزرسانی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"اصلی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"تحلیل سیستم مدیریت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"مدیر\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"خطای تحویل پیام\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"پیام‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"فرعی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"سررسید فعالیت من\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"نام\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"رویداد بعدی گاهشمار فعالیت‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"سررسید فعالیت بعدی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"خلاصه‌ی فعالیت بعدی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"نوع فعالیت بعدی\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"عدم تطابق‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"عدم تطابق‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"تأخیر در بازبینی عدم تطابق‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"اقدام فوری برای عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"مرحله‌ی عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"مراحل عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"تعداد اقدامات\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"تعداد خطاها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"تعداد پیام‌هایی که نیاز به اقدام دارند\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"تعداد پیام‌های دارای خطای تحویل\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"بازکردن عدم تطابق‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"مبدأ\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"مبدأ عدم تطابق سیستم مدیریت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"مبادی\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"مبادی عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"مسیر اصلی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"شریک\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"تأخیر در تأیید\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"بازبینی برنامه\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"روند\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"روند نامشخص است\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"روند رعایت نشده است\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"روندها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"اجرای فرآیند\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"کمیته‌ی کیفیت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"آماده برای مرحله‌ی بعدی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"مرجع\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"کد ارجاع\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"عدم تطابق‌های مربوطه\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"مربوط به\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"Res.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \".Res Model\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"مسئول\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"کاربر مسئول\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"ترتیب\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"شدت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"شدت شکایت‌ها و عدم تطابق‌ها\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"مرحله\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"نام مرحله\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"مراحل\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"وضعیت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"وضعیت مبتنی بر فعالیت‌ها\\n\"\n\"معوق: تاریخ سررسید گذشته است\\n\"\n\"امروز: تاریخ اتمام فعالیت امروز است\\n\"\n\"برنامه‌ریزی شده: فعالیت‌های آینده.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"سیستم\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"مشکل فنی\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\"زمانی که هیچ سند بایگانی برای نمایش دادن وجود نداشته باشد، \\n\"\n\"این مرحله در نمای کانبان قرارداده می‌شود.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"عنوان\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"نوع فعالیت استثناء در سند بایگانی.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"ناموجود\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"پیام‌های خوانده نشده\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"برای مرتب‌سازی وضعیت‌ها به کار می‌رود. هرچه پایین‌تر بهتر.\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"کاربر\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"پیام‌های وب‌سایت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"تاریخچه‌ی ارتباطات وب‌سایت\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"شرایط کاری\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\"اگر این مرحله به صورت پیش‌فرض برای عدم تطابق‌ها وجود دارد\\n\"\n\"مربع را علامت بزنید\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"عدم تطابق\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"تعداد عدم تطابق\"\n\n#~ msgid \"Dropdown menu\"\n#~ msgstr \"منوی کشویی\"\n\n#~ msgid \"Edit\"\n#~ msgstr \"ویرایش\"\n\n#~ msgid \"Nonconformity Abstract\"\n#~ msgstr \"چکیده‌ی عدم تطابق\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"آخرین تاریخ اصلاح\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"پیوست اصلی\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/fi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\n# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016\\n\"\n\"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\\n\"\n\"Language: fi\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Peruutettu\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Suljettu\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Luonut\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Luotu\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Viimeksi päivittänyt\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nimi\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"Käynnissä\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Viimeksi päivittänyt\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Viimeksi päivitetty\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Tila\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Viimeksi muokattu\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Action\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Action\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"Plan d'action\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"Commentaires du plan d'action\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Actions\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Active?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Active?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"Ajouter une description...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Analyse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"Confirmation de l'analyse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Auteur\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"Mauvaise communication\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"Mauvaise relation avec le client/fournisseur\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Besoin mal défini\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Annulée\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Cause\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Cause de la non-conformité du système de gestion\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Causes\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"Causes et analyse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Causes de la non-conformité\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"Causes enfants\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"Enfants\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Fermée\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"Non-conformités archivées\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"Commentaires sur le plan d'action\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Société\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"Conclusions de la dernière évaluation d'efficacité.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Créée par\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Créée le \"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Mise à jour par\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"Définit l'ordre de présentation des éléments\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Description\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"Revue de direction\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom à afficher\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"Brouillon\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"Nouvelles non-conformités\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"Revue d'efficacité\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"Commentaires de l'évaluation\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"Audit externe\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"Plainte d'un client externe\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Remplie par\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"Groupe\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Regrouper par...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"Ressource humaine non disponible ou inadéquate\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"En cours\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"Information non disponible\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"Instruction non respectée\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"Audit interne\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"Plainte d'un client interne\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"Manque d'expertise\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Mise à jour par\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Mise à jour le\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"Majeure\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Supérieur\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Messages non-lus\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"Mineure\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Nom\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"Non-conformité\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Nonconformités\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"Non-conformités en attente de révision\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non-conformité\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\n#, fuzzy\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Action immédiate\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"Non-conformités ouvertes\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Origine\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Origine de la non-conformité\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Origines\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Origines de la non-conformité\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\n#, fuzzy\nmsgid \"Parent Path\"\nmsgstr \"Parent gauche\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"Partenaire\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"En attente d'approbation\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"Revue du plan\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Procédure\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"Procédure non définie\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"Procédure non respectée\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procédures\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"Exécution du processus\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"Comité Qualité\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Référence\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"Code de référence\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"Non-conformités liées\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"Associée à\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Responsable\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Séquence\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"Sévérité\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"Sévérité des plaintes et des non-conformités\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Étape\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nom de l'étape\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"Étapes\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"État\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Système\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"Panne technique\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Intitulé\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"Infondée\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Messages non-lus\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Utilisateur\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Messages non-lus\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website communication history\"\nmsgstr \"Mauvaise communication\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"Conditions de travail\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Dernière modification le\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Messages non-lus\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Messages non-lus\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Action immédiate\"\n\n#~ msgid \"Non-Conformities\"\n#~ msgstr \"Non-conformités\"\n\n#~ msgid \"Error! Cannot create recursive cycle.\"\n#~ msgstr \"Erreur! Vous ne pouvez pas créer de cycle récursif.\"\n\n#~ msgid \"Parent Right\"\n#~ msgstr \"Parent droite\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/gl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\\n\"\n\"Language: gl\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"ültima actualización por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"ültima actualización por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-06 02:39+0000\\n\"\n\"PO-Revision-Date: 2017-06-06 02:39+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Tvrtka\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Kreirao\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Kreirano\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Zadnje ažurirao\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnje ažurirao\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažuriranje\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Nesukladnosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\n#, fuzzy\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Nesukladnosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Sustav\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Korisnik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnje modificirano\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/hu.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-30 02:50+0000\\n\"\n\"PO-Revision-Date: 2016-07-30 02:50+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\\n\"\n\"Language: hu\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Lezárt\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Leírás\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Felelős\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Felelős\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Felhasználó\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2025-06-21 13:27+0000\\n\"\n\"Last-Translator: mymage <stefano.consolaro@mymage.it>\\n\"\n\"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"N. di giorni al termine\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"N. di non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\"Uno stato kanban indica situazioni particolari:\\n\"\n\" * Normale è la situazione predefinita\\n\"\n\" * Bloccato indica che qualcosa impedisce l'avanzamento di questa attività\\n\"\n\" * Pronto per la fase successiva indica che l'attività è pronta per essere \"\n\"portata alla fase successiva\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Azione\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Azione richiesta\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"Piano d'azione\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"Commenti al piano d'azione\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\"Per impostare una non conformità a «In corso» sono necessari i commenti al \"\n\"piano d'azione.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Azioni\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"Attivo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Attiva?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"Attività\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decorazione eccezione attività\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"Stato attività\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icona tipo attività\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"Aggiungere una descrizione...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"Per chiudere una non conformità tutte le azioni devono essere evase.\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Analisi\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"Conferma analisi\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"In archivio\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Numero allegati\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Autore\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"Comunicazione errata\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"Problema di relazione cliente/fornitore\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Esigenza definita in modo errato\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"Bloccata\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Annullata\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Causa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Causa della non conformità del sistema di gestione\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Cause\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"Cause e analisi\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Cause delle non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"Cause derivate\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"Derivate\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Chiusa\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"Non conformità chiuse\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Data chiusura\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"Commenti al piano d'azione.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"Conclusioni dall'ultima valutazione dell'efficacia.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"Giorni dall'aggiornamento\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"Definisce l'ordine degli oggetti attuali\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Descrizione\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"Revisione della direzione\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"Bozza\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"Non conformità in bozza/nuova\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"Revisione efficacia\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"Discussione e-mail\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"Commenti di valutazione\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\"Per chiudere una non conformità sono necessari i commenti di valutazione.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"Verifica esterna\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"Reclamo cliente esterno\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Compilato da\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"Minimizzato nel Kanban\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguito da\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguito da (partner)\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Icona Font Awesome es. fa-tasks\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"Gruppo\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Raggruppa per...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"Ha un messaggio\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\"Fornisce una panoramica generale di tutte le non conformità elaborate nel \"\n\"sistema ordinandole con un criterio specifico.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"Risorse umane non disponibili o inadeguate\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icona\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Icona per indicare un'attività eccezione.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se selezionata, nuovi messaggi richiedono attenzione.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se selezionata, alcuni messaggi hanno un errore di consegna.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"Azione immediata\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"In corso\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"Informazioni non disponibili\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"Istruzione non rispettata\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"Verifica interna\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"Reclamo cliente interno\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Segue\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"È la fase iniziale\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"Stato Kanban\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"Mancanza di esperienza\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"Maggiore\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"Analisi sistema di gestione\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Supervisore\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Errore di consegna messaggio\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"Messaggi\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"Minore\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Scadenza mia attività\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Evento calendario attività successiva\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Scadenza prossima attività\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Riepilogo prossima attività\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo prossima attività\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"Revisione non conformità sospese\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Non conformità immediata\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"Fase non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"Fasi non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Numero di azioni\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Numero di errori\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Numero di messaggi che richiedono un'azione\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Numero di messaggi con errore di consegna\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"Non conformità aperte\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Origine\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Origine della non conformità del sistema di gestione\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Origini\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Origini delle non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"Percorso padre\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"Partner\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"In attesa di approvazione\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"Revisione del piano\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Procedura\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"Procedura non definita\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"Procedura non rispettata\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"Esecuzione processo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"Comitato della qualità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"Pronta per la fase successiva\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Riferimento\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"Codice di riferimento\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"Non conformità collegata\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"Collegata a\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"Res\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"Modello res\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Responsabile\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Utente responsabile\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Errore consegna SMS\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sequenza\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"Gravità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"Gravità dei reclami e delle non conformità\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nome fase\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"Fasi\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Stato\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Stato in base alle attività\\n\"\n\"Scaduto: la data richiesta è trascorsa\\n\"\n\"Oggi: la data attività è oggi\\n\"\n\"Pianificato: attività future.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"Guasto tecnico\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\"Questa fase è minimizzata nella vista Kanban quando non ci sono \\n\"\n\"record da mostrare nella fase stessa.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Titolo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo di attività eccezione sul record.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"Infondata\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Messaggi non letti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"Utilizzato per ordinare gli stati. Basso è migliore.\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Utente\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Messaggi sito web\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Storico comunicazioni sito web\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"Condizioni di lavoro\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\"Selezionare questa casella se questa è la fase predefinita \\n\"\n\"per le nuove non conformità\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Non conformità\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Conteggio non conformità\"\n\n#~ msgid \"Dropdown menu\"\n#~ msgstr \"Menu a tendina\"\n\n#~ msgid \"Edit\"\n#~ msgstr \"Modifica\"\n\n#~ msgid \"Nonconformity Abstract\"\n#~ msgstr \"Estratto non conformità\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Allegato principale\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Numero di messaggi che richiedono un'azione\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Numero messaggi non letti\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Conteggio messaggi non letti\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Azione immediata\"\n\n#~ msgid \"Non-Conformities\"\n#~ msgstr \"Non conformità\"\n\n#~ msgid \"Error! Cannot create recursive cycle.\"\n#~ msgstr \"Errore, impossibile creare cicli ricorsivi.\"\n\n#, fuzzy\n#~ msgid \"Parent Right\"\n#~ msgstr \"Riferimento a destra\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/lv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\\n\"\n\"Language: lv\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : \"\n\"2);\\n\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Darbība\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Darbība\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Darbības\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Slēgts\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Apraksts\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"Tiek izpildīts\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Neizlasītās vēstules\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Atsauce\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Atbildīgais\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Atbildīgais\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Stadija\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Sistēma\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Neizlasītās vēstules\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Lietotājs\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Neizlasītās vēstules\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Neizlasītās vēstules\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Neizlasītās vēstules\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/mgmtsystem_nonconformity.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2018-01-15 18:09+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\\n\"\n\"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/\"\n\"nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"Handlingsplan\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"Kommentarer til tiltaksplan\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Aktiv?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Aktiv?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"Legg til en beskrivelse...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Analyse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"Bekrefte analyse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Forfatter.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"Dårlig kommunikasjon\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"Dårlig kunde/leverandør relasjon\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Dårlig definert behov\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Avbrutt\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Årsak\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Årsak til avvik i styringssystemet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Årsaker\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"Årsak og Analyse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Årsak til avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"Avhengige årsaker\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"Barn\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Stengt\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"Stengte avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"Kommentarer til tiltaksplan.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"Konklusjon fra siste effektivitetsevaluering.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"Definerer rekkefølgen i forhold til tilstedeværende objekter.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Beskrivelse\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"Gjennomgang av retning\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"Utkast\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"Utkast/nye avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"Effektivitetsoversikt\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"Kommentar fra evaluering\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"Ekstern revisjon\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"Ekstern klientklage\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Fylt ut av\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"Gruppe\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Grupper etter ...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"Menneskelig ressurs utiligjengelig eller utilstrekkelig\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"Pågår\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"Informasjon ikke tilgjengelig\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"Instruksjon ikke anmodet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"Intern revisjon\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"Intern klientklage\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"Mangel på ekspertise\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"Hoved\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Leder\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Uleste meldinger\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"Delnummer\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Navn\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"Avvik som avventer gjennomgang\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\n#, fuzzy\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"Åpne avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Opphav\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Kilde til avvik i styringssystemet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Opprinnelse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Kilde til avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"Partner\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"Avventer godkjenning\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"Planlegge gjennomgang\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Prosedyre\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"Prosedyren er ikke definert\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"Prosedyre ikke fulgt\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Prosedyrer\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"Prosessevaluering\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"Referansekode\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"Relaterte avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"Relatert til.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Ansvarlig\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Ansvarlig\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Rekkefølge\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"Alvorlighetsgrad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"Alvorlighetsgrad på klager og avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Nivå\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"Teknisk feil\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Tittel\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"Uten grunnlag\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Uleste meldinger\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Bruker\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Uleste meldinger\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website communication history\"\nmsgstr \"Dårlig kommunikasjon\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"Arbeidsforhold\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Uleste meldinger\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Uleste meldinger\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Umiddelbare tiltak\"\n\n#~ msgid \"Non-Conformities\"\n#~ msgstr \"Avvik\"\n\n#~ msgid \"Error! Cannot create recursive cycle.\"\n#~ msgstr \"Feil! Kan lage rekursiv sirkel.\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/nl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\\n\"\n\"Language: nl\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Te tonen naam\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Naam\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"Relatie\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst bijgewerkt op\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 04:24+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 04:24+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/\"\n\"23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"# dagen tot sluiting\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Actie\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Actie\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Acties\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Actief?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Actief?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Gesloten\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Sluitingsdatum\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Bedrijf\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Aangemaakt door\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Aangemaakt op\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Omschrijving\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Weergavenaam\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Laatst bijgewerkt op\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Manager\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Ongelezen berichten\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Naam\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procedures\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Referentie\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Fasenaam\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"Fasen\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Systeem\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Ongelezen berichten\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Gebruiker\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Ongelezen berichten\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst aangepast op\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Ongelezen berichten\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Ongelezen berichten\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/nn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Nynorsk (https://www.transifex.com/oca/teams/23907/\"\n\"nn/)\\n\"\n\"Language: nn\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Stengd\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Beskriving\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"Pågår\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Ulesne meldingar\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Namn\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\n#, fuzzy\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Prosedyre\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Ansvarleg\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Ansvarleg\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Rekkefølge\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Systemet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Ulesne meldingar\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Brukar\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Ulesne meldingar\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Ulesne meldingar\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Ulesne meldingar\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\\n\"\n\"Language: 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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Ações\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Análise\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Autor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Causa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Causa da não conformidade do sistema de gestão\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Causas\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Causas da não conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Preenchido por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupar por...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Gestor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Não conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\n#, fuzzy\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Não conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"Não conformidades em aberto\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Origem\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Origem da não conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Origens\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Origens da não conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Procedimento\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procedimentos\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Etapa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Utilizador\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Correção imediata\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# falexandresilva <falexandresilva@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2024-05-29 21:37+0000\\n\"\n\"Last-Translator: Rodrigo Macedo \"\n\"<sottomaiormacedotec@users.noreply.translation.odoo-community.org>\\n\"\n\"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/\"\n\"23907/pt_BR/)\\n\"\n\"Language: pt_BR\\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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"Nº De dias para fechar\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"# de não-conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\"Um estado kanban indica situações especiais que o afetam:\\n\"\n\"  * Normal é a situação padrão\\n\"\n\"  * Bloqueado indica que algo está impedindo o progresso desta tarefa\\n\"\n\"  * Pronto para o próximo estágio indica que a tarefa está pronta para ser \"\n\"puxada para o próximo estágio\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Ação Necessária\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"Plano de ação\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"Comentários do Plano de Ação\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\"Os comentários do plano de ação são necessários para colocar uma não \"\n\"conformidade em andamento.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Ações\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"Ativo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Ativo?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"Atividades\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decoração de Exceção de Atividade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"Estado de Atividade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Ícone de tipo de atividade\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"Adicionar uma descrição ...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\"Todas as ações devem ser realizadas antes de fechar uma não conformidade.\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Análise\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"Confirmação de análises\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"Arquivado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Contador de Anexo\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Autor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"Falha de Comunicacao\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"Relação clientes/fornecedores ruins\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Necessidade mal definida\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"Bloqueado\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Cancelada\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Causa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Causa da não conformidade do Sistema de Gestão\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Causas\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"Causas e Análises\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Causas da não conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"Sub Causas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"Filhos\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"Não Conformidades fechadas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Data de Encerramento\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"Comentários sobre o plano de ação.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"Conclusoes da avaliação de eficácia.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"Dias desde a atualização\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"Define a ordem para apresentar itens\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Descrição\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"Revisão da direção\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Mostrar nome\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"Rascunho\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"Rascunho/Nova Não Conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"Eficácia da revisão\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"Tópico de e-mail\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"Comentários de avaliações\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\"Comentários de avaliação são necessários para fechar uma não-conformidade.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"Auditoria externa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"Queixa de cliente externo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Preenchido por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"Guardado em Kanban\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguidores (Parceiros)\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Ícone incrível da fonte, por ex. fa-tasks\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"Grupo\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Agrupar Por...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"Tem Mensagem\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\"Tenha uma visão geral de todas as não conformidades processadas no sistema \"\n\"classificando-as com critérios específicos.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"Recursos Humanos não disponivel ou inadequado\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"Identificação\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Ícone\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Ícone para indicar uma atividade de exceção.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se marcada, novas mensagens requerem sua atenção.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se marcada, algumas mensagens tem um erro de entrega.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"Ação Imediata\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"Em andamento\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"Informação não disponível\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"Instrução não respeitada\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"Auditoria interna\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"Reclamação do cliente interno\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"É seguidor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"Está começando o estágio\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"Estado do Kanban\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"Falta de experiência\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última atualização por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última atualização em\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"Maior\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"Sistema de Gestão de Análise\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Gerente\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Mensagem de erro de entrega\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"Mensagens\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"Menor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Prazo da minha atividade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Próximo evento do calendário de atividades\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Prazo para a próxima atividade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Resumo para a próxima atividade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Próximo tipo de atividade\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"Não conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"Não conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"Não-Conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Não Conformidades\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"Não-conformidades pendentes de revisão\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Não Conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Não Conformidades imediatas\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"Estágio de não-conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"Estágios de não-conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Número de Ações\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Número de erros\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensagens que exigem ação\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Número de mensagens com erro de entrega\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"Não conformidades abertas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Origem\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Origem da não-conformidade do sistema de gestão\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Origens\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Origens da não conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"Caminho Pai\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"Parceiro\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"Aprovação pendente\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"Plano de revisão\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Procedimento\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"Procedimento não definido\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"Procedimento não respeitado\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procedimentos\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"Execução do processo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"Comitê de Qualidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"Pronto para a próxima etapa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"Código de Referência\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"Não conformidades relacionadas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"Relacionado a\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"Res.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"Modelo de resolução\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Responsável\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Usuário Responsável\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Erro de entrega de SMS\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sequência\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"Severidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"Gravidade da reclamação ou não conformidade\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Estágio\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Nome estagio\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"Estágios\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Situação\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status baseado em atividades\\n\"\n\"Vencido: a data de vencimento já passou\\n\"\n\"Hoje: a data da atividade é hoje\\n\"\n\"Planejado: Atividades futuras.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"Falha técnica\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\"Este estágio é dobrado na visão kanban quando houver\\n\"\n\"Nenhum registro nesse estágio para exibir.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Título\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo da atividade de exceção registrada.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"Infundada\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Mensagens não lidas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"Usado para ordenar estados. Menor é melhor.\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Usuário\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Mensagens do website\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Histórico de comunicação do site\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"Condições de trabalho\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\"marque a caixa de seleção se este é o estágio padrão\\n\"\n\"para novas não conformidades\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Não conformidade\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Contar Não conformidade\"\n\n#~ msgid \"Dropdown menu\"\n#~ msgstr \"Menu suspenso\"\n\n#~ msgid \"Edit\"\n#~ msgstr \"Editar\"\n\n#~ msgid \"Nonconformity Abstract\"\n#~ msgstr \"Resumo de não conformidade\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificada pela última vez\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Anexo Principal\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Número de mensagens que requerem uma ação\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Número de mensagens não-lidas\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Contador de mensagens não lidas\"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Seguidores (Canais)\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Correção imediata\"\n\n#~ msgid \"Non-Conformities\"\n#~ msgstr \"Não Conformidades\"\n\n#~ msgid \"Error! Cannot create recursive cycle.\"\n#~ msgstr \"Erro! Não é possível criar o ciclo de recursão.\"\n\n#~ msgid \"If checked new messages require your attention.\"\n#~ msgstr \"Se marcada novas mensagens requerem sua atenção.\"\n\n#~ msgid \"Overdue\"\n#~ msgstr \"Inadimplente\"\n\n#~ msgid \"Planned\"\n#~ msgstr \"Planejado\"\n\n#~ msgid \"Today\"\n#~ msgstr \"Hoje\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/pt_PT.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-06 02:39+0000\\n\"\n\"PO-Revision-Date: 2017-06-06 02:39+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/\"\n\"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: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"Rascunho\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Mensagens não lidas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Mensagens não lidas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Mensagens não lidas\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Mensagens não lidas\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Mensagens não lidas\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-15 18:09+0000\\n\"\n\"PO-Revision-Date: 2023-03-31 21:29+0000\\n\"\n\"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\\n\"\n\"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\\n\"\n\"Language: sl\\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3;\\n\"\n\"X-Generator: Weblate 4.14.1\\n\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Ukrep\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"Ukrep\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"Plan ukrepov\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"Komentarji k planu ukrepov\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Ukrepi\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Aktivno?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\n#, fuzzy\nmsgid \"Activities\"\nmsgstr \"Aktivno?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"Dodaj opis...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Analiza\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"Analiza potrjena\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Avtor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"Slaba komunikacija\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"Slab odnos s kupcem/dobaviteljem\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Slabo določena potreba\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Preklicano\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Vzrok\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Vzrok neustreznosti sistema upravljanja\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Vzroki\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"Vzroki in analize\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Vzroki neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"Podrejeni vzroki\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"Podrejeni\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Zaključeno\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"Zaključene neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"Komentarji na plan ukrepov\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Družba\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"Zaključki iz zadnjega vrednotenja učinkovitosti.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Zadnjič posodobil\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"Določitev vrstnega reda pričujočih postavk\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Opis\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"Revizija vodstva\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikazani naziv\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"Osnutek\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"Osnutki/nove neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"Revizija učinkovitosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"Komentarji k vrednotenju\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"Zunanja revizija\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"Pritožba zunanje stranke\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Izpolnil\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"Združi po...\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Združi po...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"Kader ni na voljo ali ni primeren\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"V teku\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"Podatek ni na voljo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"Navodila niso bila spoštovana\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"Notranja revizija\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"Pritožba interne stranke\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"Pomanjkanje strokovnosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnjič posodobil\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"Višja\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Upravitelj\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Neprebrana sporočila\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"Nižja\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"Neustreznost\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"Neustreznosti pred revizijo\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Neustreznost\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\n#, fuzzy\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Takojšen ID neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"Odprte neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Izvor\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Izvor neustreznosti sistema upravljanja\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Izvori\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Izvori neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\n#, fuzzy\nmsgid \"Parent Path\"\nmsgstr \"Levo nadrejeni\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"Partner\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"Čakanje odobritve\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"Revizija plana\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Procedura\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"Procedura ni določena\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"Procedura ni bila spoštovana\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Procedure\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"Izvedba procesa\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"Odbor za kakovost\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Sklic\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"Koda sklica\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"Povezane neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"Povezano z\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Odgovorni\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\n#, fuzzy\nmsgid \"Responsible User\"\nmsgstr \"Odgovorni\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Zaporedje\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"Resnost\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"Resnost pritožb in neustreznosti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Stopnja\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Naziv stopnje\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"Stopnje\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Stanje\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"Sistem\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"Tehnična napaka\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Naslov\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"Neutemeljeno\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Neprebrana sporočila\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Uporabnik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Neprebrana sporočila\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website communication history\"\nmsgstr \"Slaba komunikacija\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"Delovni pogoji\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič spremenjeno\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Neprebrana sporočila\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Neprebrana sporočila\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Takojšnji ukrep\"\n\n#~ msgid \"Non-Conformities\"\n#~ msgstr \"Neustreznosti\"\n\n#~ msgid \"Error! Cannot create recursive cycle.\"\n#~ msgstr \"Napaka! Ne morete ustvariti rekurzivnega cikla.\"\n\n#~ msgid \"Parent Right\"\n#~ msgstr \"Desno nadrejeni\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2024-09-02 15:06+0000\\n\"\n\"Last-Translator: jakobkrabbe <jakob@syscare.se>\\n\"\n\"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\\n\"\n\"Language: sv\\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.6.2\\n\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"# Antal dagar till stängning\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"# Antal avvikelser\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\"En kanbanstatus anger speciella situationer som påverkar den:\\n\"\n\" * Normal är standardsituationen\\n\"\n\" * Blockerad indikerar att något hindrar uppgiften från att fortskrida\\n\"\n\" * Klar för nästa steg indikerar att uppgiften är redo att flyttas till \"\n\"nästa steg\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"Åtgärd\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Åtgärd krävs\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"Handlingsplan\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"Kommentarer till handlingsplanen\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\"Kommentarer till åtgärdsplanen krävs för att en avvikelse ska kunna läggas \"\n\"in i In Progress.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"Åtgärder\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"Aktiv\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"Aktiv?\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"Aktiviteter\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Aktivitet Undantag Dekoration\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"Aktivitet Stat\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Aktivitetstyp Ikon\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"Lägg till en beskrivning ...\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"Alla åtgärder måste vidtas innan en avvikelse stängs.\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"Analys\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"Bekräftelse av analys\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"Arkiverad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Antal bifogade filer\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Upphovsman\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"Dålig kommunikation\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"Dålig relation till kund/leverantör\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Dåligt definierat behov\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"Blockerad\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"Avbruten\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"Orsak\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"Orsaken till bristande avvikelse i ledningssystemet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"Orsaker\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"Orsaker och analys\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"Orsaker till avvikelse\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"Orsaker till barn\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"Underliggande\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"Stängd\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"Stängda avvikelser\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"Sista ansökningsdag\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"Kommentarer till handlingsplanen.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"Företag\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"Slutsatser från den senaste utvärderingen av effektiviteten.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Skapad av\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Skapad på\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"Dagar sedan uppdatering\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"Definierar i vilken ordning artiklarna ska presenteras\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"Beskrivnig\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"Riktningsöversikt\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"Visningsnamn\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"Utkast\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"Utkast/nya avvikelser\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"Effektivitetsgranskning\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"E-post tråd\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"Utvärdering Kommentarer\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"Utvärderingskommentarer krävs för att en avvikelse ska kunna avslutas.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"Extern revision\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"Klagomål från extern kund\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"Ifylld av\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"Fälld i Kanban\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Följare\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Följare (Kontakter)\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Font awesome-ikon, t.ex. fa-tasks\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"Grupp\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Gruppera efter...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"Har meddelande\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\"Få en allmän överblick över alla avvikelser som behandlas i systemet genom \"\n\"att sortera dem efter specifika kriterier.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"Personalresurser saknas eller är otillräckliga\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Ikon\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Ikon för att indikera en undantagsaktivitet.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Om den är markerad kräver nya meddelanden din uppmärksamhet.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Om kryssrutan är markerad får vissa meddelanden ett leveransfel.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"Omedelbar åtgärd\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"Pågående\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"Information ej tillgänglig\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"Instruktioner respekteras inte\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"Internrevision\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"Klagomål från intern kund\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Är följare\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"Börjar Stage\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"Kanban-stat\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"Brist på expertis\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Senast uppdaterad av\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Senast uppdaterad den\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"Huvudsaklig\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"Analys av ledningssystem\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"Chef\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Fel vid leverans av meddelande\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"Meddelanden\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"Mindre\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Min aktivitet Deadline\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"Namn\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Nästa aktivitet i aktivitetskalendern\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Deadline för nästa aktivitet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Nästa Aktivitet Sammanfattning\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Nästa aktivitetstyp\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"Icke överensstämmande\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"Icke-överensstämmelse\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"Icke-konformitet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"Avvikelser\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"Avvikelser som väntar på granskning\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Avvikelse\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"Omedelbara avvikelser\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"Steg för avvikelse\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"Stadier för avvikelser\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Antal åtgärder\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Antal fel\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Antal meddelanden som kräver åtgärder\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Antal meddelanden med leveransfel\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"Öppna Avvikelser\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"Ursprung\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"Ursprung bristande avvikelse i ledningssystemet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"Ursprung\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Ursprung för avvikelse\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"Föräldrarnas väg\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"Kontakt\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"Avvaktar godkännande\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"Granskning av plan\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"Rutin\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"Procedur ej definierad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"Förfarandet inte respekterat\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"Rutiner\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"Verkställande av processer\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"Kvalitetskommittén\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"Redo för nästa steg\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"Referens\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"Referens kod\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"Relaterade avvikelser\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"Relaterat till\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"Res\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"Res modell\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"Ansvarig\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Ansvarig användare\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"Sekvens\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"Allvarlighetsgrad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"Klagomålens och avvikelsernas allvarlighetsgrad\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"Läge\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"Scenens namn\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"Stadier\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status baserad på aktiviteter\\n\"\n\"Försenad: Förfallodatumet har redan passerats\\n\"\n\"Idag: Aktivitetsdatumet är idag\\n\"\n\"Planerad: Framtida aktiviteter.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"System\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"Tekniskt fel\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\"Detta steg viks i kanbanvyn när det inte finns några\\n\"\n\"inga poster i det steget som ska visas.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Titel\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Typ av undantagsaktivitet som registreras.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"Ogrundad\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Olästa meddelanden\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"Används för att beställa stater. Lägre är bättre.\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"Användare\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Webbplatsmeddelanden\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Webbplatsens kommunikationshistorik\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"Arbetsförhållanden\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\"välj kryssrutan stis om detta är standardstadiet\\n\"\n\"för nya avvikelser\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Icke-överensstämmelse\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Antal avvikelser\"\n\n#~ msgid \"Dropdown menu\"\n#~ msgstr \"Rullgardinsmeny\"\n\n#~ msgid \"Edit\"\n#~ msgstr \"Redigera\"\n\n#~ msgid \"Nonconformity Abstract\"\n#~ msgstr \"Icke-konformitet Sammanfattning\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Senast ändrad den\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Huvudfäste\"\n\n#~ msgid \"Immediate action\"\n#~ msgstr \"Omedelbara åtgärder\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/th.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-07-30 02:50+0000\\n\"\n\"PO-Revision-Date: 2016-07-30 02:50+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\\n\"\n\"Language: th\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\n#, fuzzy\nmsgid \"Action Needed\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/tr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_nonconformity\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\\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\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"Yazan\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"Kötü tanımlanmış ihtiyaç\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"Son etkinliği değerlendirme sonuçlar.\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"Oluşturan\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"Oluşturuldu\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\n#, fuzzy\nmsgid \"Days Since Updated\"\nmsgstr \"Son güncelleyen\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"Taslak / Yeni uygunsuzluklar\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"Grupla İle...\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Son güncelleyen\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Son güncelleme\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\n#, fuzzy\nmsgid \"Messages\"\nmsgstr \"Okunmamış Mesajlar\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"Küçük\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"Uygunsuzluğun Kökenleri\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"Onay Bekliyor\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"Prosedürü tanımlanmamış\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"Referans Kodu\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"şiddet\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"Şikayet ve Uygunsuzluk Şiddeti\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"Başlık\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"Okunmamış Mesajlar\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\n#, fuzzy\nmsgid \"Website Messages\"\nmsgstr \"Okunmamış Mesajlar\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n\n#, fuzzy\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Okunmamış Mesajlar\"\n\n#, fuzzy\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Okunmamış Mesajlar\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2013-07-27 19:02+0000\\n\"\n\"PO-Revision-Date: 2015-03-05 03:35+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2015-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_days_to_close\nmsgid \"# of days to close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__number_of_nonconformities\nmsgid \"# of nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"\"\n\"A kanban state indicates special situations affecting it:\\n\"\n\" * Normal is the default situation\\n\"\n\" * Blocked indicates something is preventing the progress of this task\\n\"\n\" * Ready for next stage indicates the task is ready to be pulled to the next \"\n\"stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_action\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_pending\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Action Plan Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"\"\n\"Action plan  comments are required in order to put a nonconformity In \"\n\"Progress.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__active\nmsgid \"Active?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Add a description ...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"All actions must be done before closing a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__analysis\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_analysis\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_analysis\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_analysis\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Analysis Confirmation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Archived\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Author\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_communication\nmsgid \"Bad communication\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.bad_partner_relation\nmsgid \"Bad customer/supplier relation\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.badly_defined_need\nmsgid \"Badly defined need\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__blocked\nmsgid \"Blocked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_cancel\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__cause_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__name\nmsgid \"Cause\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_cause\nmsgid \"Cause of the nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_cause_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_cause\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Causes and Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_cause_form\nmsgid \"Causes of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__child_ids\nmsgid \"Child Causes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__child_ids\nmsgid \"Childs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Closed Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__closing_date\nmsgid \"Closing Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__action_comments\nmsgid \"Comments on the action plan.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\nmsgid \"Conclusions from the last effectiveness evaluation.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__days_since_updated\nmsgid \"Days Since Updated\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\nmsgid \"Defines the order to present items\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__description\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__description\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_dr\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_draft\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Draft/New nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Effectiveness Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mail_thread\nmsgid \"Email Thread\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__evaluation_comments\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Evaluation Comments\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py:0\nmsgid \"Evaluation Comments are required in order to close a Nonconformity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_extenal_audit\nmsgid \"External Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_external_client\nmsgid \"External client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__user_id\nmsgid \"Filled in by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"Folded in Kanban\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_id\nmsgid \"Group\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Group By...\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.actions.act_window,help:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"\"\n\"Have a general overview of all non conformities processed in the system by \"\n\"sorting them with specific criteria.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.hr_unavailable_inadequate\nmsgid \"Human resource not available or inadequate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__id\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__immediate_action_id\nmsgid \"Immediate Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py:0\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__normal\n#: model:mgmtsystem.nonconformity.stage,name:mgmtsystem_nonconformity.stage_open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.information_not_available\nmsgid \"Information not available\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.instruction_not_respected\nmsgid \"Instruction not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.demo_origin\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_audit\nmsgid \"Internal Audit\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_internal_client\nmsgid \"Internal client complaint\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"Is starting Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__kanban_state\nmsgid \"Kanban State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.demo_cause\nmsgid \"Lack of expertise\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_maj\nmsgid \"Major\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.action_report_mgmtsystem_nonconformity\nmsgid \"Management System Analysis\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__manager_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Manager\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_min\nmsgid \"Minor\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#. odoo-javascript\n#: code:addons/mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml:0\nmsgid \"Non conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_graph\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_report_mgmtsystem_nonconformity_pivot\nmsgid \"Non conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Non-Conformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_ids\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_report_mgmtsystem_nonconformity_tree\nmsgid \"Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Nonconformities pending review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_action__nonconformity_immediate_id\nmsgid \"Nonconformity Immediate\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_form_view\nmsgid \"Nonconformity Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_stage\nmsgid \"Nonconformity Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Open Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__origin_ids\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__name\nmsgid \"Origin\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_origin\nmsgid \"Origin of nonconformity of the management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_origin_list\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_origin\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_filter\nmsgid \"Origins\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_origin_form\nmsgid \"Origins of nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__parent_path\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__parent_path\nmsgid \"Parent Path\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__partner_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Partner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mail.message.subtype,description:mgmtsystem_nonconformity.subtype_pending\n#: model:mail.message.subtype,name:mgmtsystem_nonconformity.subtype_pending\nmsgid \"Pending Approval\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Plan Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__procedure_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Procedure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_defined\nmsgid \"Procedure not defined\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.procedure_not_respected\nmsgid \"Procedure not respected\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\nmsgid \"Procedures\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_process\nmsgid \"Process Execution\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.origin,name:mgmtsystem_nonconformity.nc_origin_qc\nmsgid \"Quality Committee\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity.selection__mgmtsystem_nonconformity__kanban_state__done\nmsgid \"Ready for next stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__ref\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__ref_code\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__ref_code\nmsgid \"Reference Code\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_action_form\nmsgid \"Related Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__reference\nmsgid \"Related to\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_id\nmsgid \"Res\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__res_model\nmsgid \"Res Model\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__responsible_user_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"Responsible\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_cause__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_origin__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__sequence\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Sequence\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_severity_list\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__severity_id\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_open_nonconformity_severity\nmsgid \"Severity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model,name:mgmtsystem_nonconformity.model_mgmtsystem_nonconformity_severity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_severity_form\nmsgid \"Severity of Complaints and Nonconformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__stage_id\nmsgid \"Stage\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__name\nmsgid \"Stage Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.actions.act_window,name:mgmtsystem_nonconformity.mgmtsystem_nonconformity_stage_action\n#: model:ir.ui.menu,name:mgmtsystem_nonconformity.menu_mgmtsystem_nonconformity_stages\nmsgid \"Stages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__state\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__system_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.technical_failure\nmsgid \"Technical failure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__fold\nmsgid \"\"\n\"This stage is folded in the kanban view when there are \\n\"\n\"no records in that stage to display.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_severity__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.severity,name:mgmtsystem_nonconformity.nonconformity_severity_no\nmsgid \"Unfounded\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_kanban\nmsgid \"Unread Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__sequence\nmsgid \"Used to order states. Lower is better.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\nmsgid \"User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:mgmtsystem.nonconformity.cause,name:mgmtsystem_nonconformity.work_conditions\nmsgid \"Work conditions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity\n#: model:ir.model.fields,help:mgmtsystem_nonconformity.field_mgmtsystem_nonconformity_stage__is_starting\nmsgid \"\"\n\"select stis checkbox if this is the default stage \\n\"\n\"for new nonconformities\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/migrations/16.0.1.1.0/pre-migrate.py",
    "content": "# Copyright 2023 Camptocamp SA\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)\n\n\ndef migrate(cr, version):\n    \"\"\"Set nonconformity stages from module data as noupdate.\"\"\"\n    cr.execute(\n        \"\"\"\n        UPDATE ir_model_data\n        SET noupdate = TRUE\n        WHERE module = 'mgmtsystem_nonconformity'\n        AND model = 'mgmtsystem.nonconformity.stage';\n    \"\"\"\n    )\n"
  },
  {
    "path": "mgmtsystem_nonconformity/models/__init__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n\nfrom . import mgmtsystem_nonconformity_stage\nfrom . import mgmtsystem_nonconformity_cause\nfrom . import mgmtsystem_nonconformity_origin\nfrom . import mgmtsystem_nonconformity_severity\nfrom . import mgmtsystem_nonconformity\nfrom . import mgmtsystem_action\nfrom . import mail_thread\n"
  },
  {
    "path": "mgmtsystem_nonconformity/models/mail_thread.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import models\n\nfrom odoo.addons.mail.tools.discuss import Store\n\n\nclass MailThread(models.AbstractModel):\n    _inherit = \"mail.thread\"\n\n    def _get_non_conformities_domain(self):\n        return [(\"res_model\", \"=\", self._name), (\"res_id\", \"=\", self.id)]\n\n    def _get_non_conformities_context(self):\n        return {}\n\n    def action_view_non_conformities(self):\n        self.ensure_one()\n        action = self.env.ref(\n            \"mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_list\"\n        ).read()[0]\n        action[\"domain\"] = self._get_non_conformities_domain()\n        action[\"context\"] = self._get_non_conformities_context()\n        return action\n\n    def _thread_to_store(self, store: Store, /, *, request_list=None, **kwargs):\n        result = super()._thread_to_store(store, request_list=request_list, **kwargs)\n        if self.env.user.has_group(\"mgmtsystem.group_mgmtsystem_viewer\"):\n            nonconformity_count = {\n                res_id: res_count\n                for res_id, res_count in self.env[\n                    \"mgmtsystem.nonconformity\"\n                ]._read_group(\n                    [\n                        (\"res_model\", \"=\", self._name),\n                        (\"res_id\", \"in\", self.ids),\n                    ],\n                    [\"res_id\"],\n                    [\"res_id:count\"],\n                )\n            }\n            for thread in self:\n                store.add(\n                    thread,\n                    {\"non_conformity_count\": nonconformity_count.get(thread.id, 0)},\n                    as_thread=True,\n                )\n        return result\n"
  },
  {
    "path": "mgmtsystem_nonconformity/models/mgmtsystem_action.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemAction(models.Model):\n    _inherit = \"mgmtsystem.action\"\n\n    nonconformity_immediate_id = fields.One2many(\n        \"mgmtsystem.nonconformity\", \"immediate_action_id\"\n    )\n    nonconformity_ids = fields.Many2many(\n        \"mgmtsystem.nonconformity\",\n        \"mgmtsystem_nonconformity_action_rel\",\n        \"action_id\",\n        \"nonconformity_id\",\n        \"Nonconformities\",\n    )\n"
  },
  {
    "path": "mgmtsystem_nonconformity/models/mgmtsystem_nonconformity.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n\nfrom odoo import api, fields, models\n\n\nclass MgmtsystemNonconformity(models.Model):\n    _name = \"mgmtsystem.nonconformity\"\n    _description = \"Nonconformity\"\n    _inherit = [\"mail.thread\", \"mail.activity.mixin\"]\n    _order = \"create_date desc\"\n\n    @api.model\n    def _default_stage(self):\n        \"\"\"Return the default stage.\"\"\"\n        return self.env.ref(\"mgmtsystem_nonconformity.stage_draft\", False) or self.env[\n            \"mgmtsystem.nonconformity.stage\"\n        ].search([(\"is_starting\", \"=\", True)], limit=1)\n\n    @api.model\n    def _stage_groups(self, stages, domain):\n        stage_ids = self.env[\"mgmtsystem.nonconformity.stage\"].search([])\n        return stage_ids\n\n    # 1. Description\n    name = fields.Char()\n    ref = fields.Char(\"Reference\", required=True, default=\"NEW\")\n    # Compute data\n    number_of_nonconformities = fields.Integer(\"# of nonconformities\", default=1)\n    days_since_updated = fields.Integer(\n        compute=\"_compute_days_since_updated\", store=True\n    )\n    number_of_days_to_close = fields.Integer(\n        \"# of days to close\",\n        compute=\"_compute_number_of_days_to_close\",\n        store=True,\n    )\n    closing_date = fields.Datetime()\n\n    partner_id = fields.Many2one(\"res.partner\", \"Partner\", required=True)\n    reference = fields.Char(\n        \"Related to\", default=lambda self: self._default_reference()\n    )\n    responsible_user_id = fields.Many2one(\n        \"res.users\", \"Responsible\", required=True, tracking=True\n    )\n    manager_user_id = fields.Many2one(\n        \"res.users\", \"Manager\", required=True, tracking=True\n    )\n    user_id = fields.Many2one(\n        \"res.users\",\n        \"Filled in by\",\n        required=True,\n        default=lambda self: self.env.user,\n        tracking=True,\n    )\n    origin_ids = fields.Many2many(\n        \"mgmtsystem.nonconformity.origin\",\n        \"mgmtsystem_nonconformity_origin_rel\",\n        \"nonconformity_id\",\n        \"origin_id\",\n        \"Origin\",\n        required=True,\n    )\n    procedure_ids = fields.Many2many(\n        \"document.page\",\n        \"mgmtsystem_nonconformity_procedure_rel\",\n        \"nonconformity_id\",\n        \"procedure_id\",\n        \"Procedure\",\n    )\n    description = fields.Text(required=True)\n    system_id = fields.Many2one(\"mgmtsystem.system\", \"System\")\n    stage_id = fields.Many2one(\n        \"mgmtsystem.nonconformity.stage\",\n        \"Stage\",\n        tracking=True,\n        copy=False,\n        default=_default_stage,\n        group_expand=\"_stage_groups\",\n    )\n    state = fields.Selection(related=\"stage_id.state\", store=True)\n    kanban_state = fields.Selection(\n        [\n            (\"normal\", \"In Progress\"),\n            (\"done\", \"Ready for next stage\"),\n            (\"blocked\", \"Blocked\"),\n        ],\n        default=\"normal\",\n        tracking=True,\n        help=\"A kanban state indicates special situations affecting it:\\n\"\n        \" * Normal is the default situation\\n\"\n        \" * Blocked indicates something is preventing\"\n        \" the progress of this task\\n\"\n        \" * Ready for next stage indicates the\"\n        \" task is ready to be pulled to the next stage\",\n        required=True,\n        copy=False,\n    )\n\n    # 2. Root Cause Analysis\n    cause_ids = fields.Many2many(\n        \"mgmtsystem.nonconformity.cause\",\n        \"mgmtsystem_nonconformity_cause_rel\",\n        \"nonconformity_id\",\n        \"cause_id\",\n        \"Cause\",\n    )\n    severity_id = fields.Many2one(\"mgmtsystem.nonconformity.severity\", \"Severity\")\n    analysis = fields.Text()\n    immediate_action_id = fields.Many2one(\n        \"mgmtsystem.action\",\n        domain=\"[('nonconformity_ids', '=', id)]\",\n    )\n\n    # 3. Action Plan\n    action_ids = fields.Many2many(\n        \"mgmtsystem.action\",\n        \"mgmtsystem_nonconformity_action_rel\",\n        \"nonconformity_id\",\n        \"action_id\",\n        \"Actions\",\n    )\n    action_comments = fields.Text(\n        \"Action Plan Comments\", help=\"Comments on the action plan.\"\n    )\n\n    # 4. Effectiveness Evaluation\n    evaluation_comments = fields.Text(\n        help=\"Conclusions from the last effectiveness evaluation.\",\n    )\n\n    # Multi-company\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n    res_model = fields.Char(index=True)\n    res_id = fields.Integer(index=True)\n\n    @api.model\n    def _default_reference(self):\n        if self.env.context.get(\"mgmtsystem_nonconformity\") and self.env.context.get(\n            \"id\"\n        ):\n            return (\n                self.env[self.env.context[\"mgmtsystem_nonconformity\"]]\n                .browse(self.env.context.get(\"id\"))\n                .exists()\n                .display_name\n            )\n        return \"\"\n\n    def _get_all_actions(self):\n        self.ensure_one()\n        return self.action_ids + self.immediate_action_id\n\n    @api.constrains(\"stage_id\")\n    def _check_open_with_action_comments(self):\n        for nc in self:\n            if nc.state == \"open\" and not nc.action_comments:\n                raise models.ValidationError(\n                    self.env._(\n                        \"Action plan  comments are required \"\n                        \"in order to put a nonconformity In Progress.\"\n                    )\n                )\n\n    @api.constrains(\"stage_id\")\n    def _check_close_with_evaluation(self):\n        for nc in self:\n            if nc.state == \"done\":\n                if not nc.evaluation_comments:\n                    raise models.ValidationError(\n                        self.env._(\n                            \"Evaluation Comments are required \"\n                            \"in order to close a Nonconformity.\"\n                        )\n                    )\n                actions_are_closed = nc._get_all_actions().mapped(\"stage_id.is_ending\")\n                if not all(actions_are_closed):\n                    raise models.ValidationError(\n                        self.env._(\n                            \"All actions must be done \"\n                            \"before closing a Nonconformity.\"\n                        )\n                    )\n\n    @api.model\n    def _elapsed_days(self, dt1, dt2):\n        return (dt2 - dt1).days if dt1 and dt2 else 0\n\n    @api.depends(\"closing_date\", \"create_date\")\n    def _compute_number_of_days_to_close(self):\n        for nc in self:\n            nc.number_of_days_to_close = self._elapsed_days(\n                nc.create_date, nc.closing_date\n            )\n\n    @api.depends(\"write_date\")\n    def _compute_days_since_updated(self):\n        for nc in self:\n            nc.days_since_updated = self._elapsed_days(nc.create_date, nc.write_date)\n\n    @api.model_create_multi\n    def create(self, vals):\n        for value in vals:\n            value.update(\n                {\n                    \"ref\": self.env[\"ir.sequence\"].next_by_code(\n                        \"mgmtsystem.nonconformity\"\n                    )\n                }\n            )\n        return super().create(vals)\n\n    def write(self, vals):\n        is_writing = self.env.context.get(\"is_writing\", False)\n        is_state_change = \"stage_id\" in vals or \"state\" in vals\n        # Reset Kanban State on Stage change\n        if is_state_change:\n            was_not_open = {\n                x.id: x.state in (\"draft\", \"analysis\", \"pending\") for x in self\n            }\n            if any(self.filtered(lambda x: x.kanban_state != \"normal\")):\n                vals[\"kanban_state\"] = \"normal\"\n\n        result = super().write(vals)\n\n        # Set/reset the closing date\n        if not is_writing and is_state_change:\n            for nc in self.with_context(is_writing=True):\n                # On Close set Closing Date\n                if nc.state == \"done\" and not nc.closing_date:\n                    nc.closing_date = fields.Datetime.now()\n                # On reopen resete Closing Date\n                elif nc.state != \"done\" and nc.closing_date:\n                    nc.closing_date = None\n                # On action plan approval, Open the Actions\n                if nc.state == \"open\" and was_not_open[nc.id]:\n                    for action in nc._get_all_actions():\n                        if action.stage_id.is_starting:\n                            action.case_open()\n        return result\n"
  },
  {
    "path": "mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_cause.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, fields, models\n\n\nclass MgmtsystemNonconformityCause(models.Model):\n    \"\"\"Cause of the nonconformity of the management system.\"\"\"\n\n    _name = \"mgmtsystem.nonconformity.cause\"\n    _description = \"Cause of the nonconformity of the management system\"\n    _order = \"parent_id, sequence\"\n    _parent_store = True\n\n    name = fields.Char(\"Cause\", required=True, translate=True)\n    description = fields.Text()\n    sequence = fields.Integer(help=\"Defines the order to present items\")\n    parent_path = fields.Char(index=True)\n    parent_id = fields.Many2one(\n        \"mgmtsystem.nonconformity.cause\", \"Group\", ondelete=\"restrict\"\n    )\n    child_ids = fields.One2many(\n        \"mgmtsystem.nonconformity.cause\", \"parent_id\", \"Child Causes\"\n    )\n    ref_code = fields.Char(\"Reference Code\")\n    display_name = fields.Char(compute=\"_compute_display_name\", recursive=True)\n\n    @api.depends(\"name\", \"parent_id.display_name\")\n    def _compute_display_name(self):\n        for obj in self:\n            if obj.parent_id:\n                obj.display_name = f\"{obj.parent_id.display_name} / {obj.name}\"\n            else:\n                obj.display_name = obj.name\n"
  },
  {
    "path": "mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_origin.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, fields, models\n\n\nclass MgmtsystemNonconformityOrigin(models.Model):\n    _name = \"mgmtsystem.nonconformity.origin\"\n    _description = \"Origin of nonconformity of the management system\"\n    _order = \"parent_id, sequence\"\n    _parent_store = True\n\n    name = fields.Char(\"Origin\", required=True, translate=True)\n    description = fields.Text()\n    sequence = fields.Integer(help=\"Defines the order to present items\")\n    parent_path = fields.Char(index=True)\n    parent_id = fields.Many2one(\n        \"mgmtsystem.nonconformity.origin\", \"Group\", ondelete=\"restrict\"\n    )\n    child_ids = fields.One2many(\n        \"mgmtsystem.nonconformity.origin\", \"parent_id\", \"Childs\"\n    )\n    ref_code = fields.Char(\"Reference Code\")\n\n    active = fields.Boolean(default=True)\n\n    @api.depends(\"name\", \"parent_id.name\")\n    def _compute_display_name(self):\n        for obj in self:\n            name = obj.name\n            if obj.parent_id:\n                name = f\"{obj.parent_id.display_name} / {name}\"\n            obj.display_name = name\n"
  },
  {
    "path": "mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_severity.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemNonconformitySeverity(models.Model):\n    \"\"\"Nonconformity Severity - Critical, Major, Minor, Invalid, ...\"\"\"\n\n    _name = \"mgmtsystem.nonconformity.severity\"\n    _description = \"Severity of Complaints and Nonconformities\"\n\n    name = fields.Char(\"Title\", required=True, translate=True)\n    sequence = fields.Integer()\n    description = fields.Text(translate=True)\n    active = fields.Boolean(\"Active?\", default=True)\n"
  },
  {
    "path": "mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_stage.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemNonconformityStage(models.Model):\n    \"\"\"This object is used to defined different state for non conformity.\"\"\"\n\n    _name = \"mgmtsystem.nonconformity.stage\"\n    _description = \"Nonconformity Stages\"\n    _order = \"sequence\"\n\n    def _get_states(self):\n        return [\n            (\"draft\", self.env._(\"Draft\")),\n            (\"analysis\", self.env._(\"Analysis\")),\n            (\"pending\", self.env._(\"Action Plan\")),\n            (\"open\", self.env._(\"In Progress\")),\n            (\"done\", self.env._(\"Closed\")),\n            (\"cancel\", self.env._(\"Cancelled\")),\n        ]\n\n    name = fields.Char(\"Stage Name\", required=True, translate=True)\n    sequence = fields.Integer(\n        help=\"Used to order states. Lower is better.\", default=100\n    )\n    state = fields.Selection(selection=_get_states, default=\"draft\")\n    is_starting = fields.Boolean(\n        string=\"Is starting Stage\",\n        help=\"select stis checkbox if this is the default stage \\n\"\n        \"for new nonconformities\",\n    )\n    fold = fields.Boolean(\n        string=\"Folded in Kanban\",\n        help=\"This stage is folded in the kanban view when there are \\n\"\n        \"no records in that stage to display.\",\n    )\n"
  },
  {
    "path": "mgmtsystem_nonconformity/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity/readme/CONFIGURE.md",
    "content": "Users must be added to the appropriate groups within Odoo as follows:\n\n- Creators: Settings \\> Users \\> Groups \\> Management System / User"
  },
  {
    "path": "mgmtsystem_nonconformity/readme/CONTRIBUTORS.md",
    "content": "- Daniel Reis \\<<dreis.pt@hotmail.com>\\>\n- Glen Dromgoole \\<<gdromgoole@tier1engineering.com>\\>\n- Loic Lacroix \\<<loic.lacroix@savoirfairelinux.com>\\>\n- Sandy Carter \\<<sandy.carter@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n\nTrobz\n\n- Dung Tran \\<<dungtd@trobz.com>\\>\n- Tuan Nguyen \\<<tuanna@trobz.com>\\>"
  },
  {
    "path": "mgmtsystem_nonconformity/readme/CREDITS.md",
    "content": "The development of this module has been financially supported by:\n\n- Camptocamp\n"
  },
  {
    "path": "mgmtsystem_nonconformity/readme/DESCRIPTION.md",
    "content": "This module enables you to manage the nonconformities of your management\nsystems:\n\n- Quality (ISO 9001)\n- Environment (ISO 14001)\n- Information Security (ISO 27001)\n- Health and Safety (ISO 45001)\n- IT Services (ISO 20000)\n"
  },
  {
    "path": "mgmtsystem_nonconformity/readme/ROADMAP.md",
    "content": "- The custom emails should be replaced by Mail Tracking features and\n  Subtypes (like in Project Tasks and Project Issues)\n- Automatically add responsible_user_id.\\_uid, manager_user_id.\\_uid,\n  author_user_id.\\_uid to chatter\n"
  },
  {
    "path": "mgmtsystem_nonconformity/readme/USAGE.md",
    "content": "To use this module:\n\n- Go to Management System \\> Nonconformities\n- Click on Create to enter the following information:\n- Partner : Customer, supplier or internal personnel\n- Related to: Any reference pointing to the NC (order id, project id,\n  task id, etc.)\n- Responsible: Person responsible for the NC\n- Manager : Person managing the department or owner of the procedure\n- Filled in by: Originator of NC report\n- Origins: The source of the NC, how was it discover\n- Procedures: Against which procedure is the NC\n- Description: Evidence, reference to the standards\n- Click on Save and then set state from Draft to Analysis.\n\nGo to the newly created NC and fill in the following information:\n\nIn the Causes and Analysis tab:\n- Causes: Add root causes\n- Analysis: Describe the results of the investigation\n- Severity: Select the severity among unfounded, minor and major\n\nIn the Description tab:\n- Immediate action: Create or select an immediate action if appropriate\n\nClick on the Save button and then on the \"Action Plan\" button in the top\nright corner.\n\nIn the Actions tab, select or create new actions by entering the\nfollowing items:\n\n- Subject: What must be done - Return to Supplier, Use As Is, Scrap,\n  Rework, Re-grade, Repair\n- Deadline: Date by which the action must be completed\n- Responsible: Person in charge for implementing the action\n- Response Type: Immediate, corrective or preventive actions or improvement\n  opportunity\n- Description: Details of the action\n\nWhen the action is created, a notification is sent to the person\nresponsible for the action.\n\nEnter comments into the input field below the \"Plan Review\" section,\nthose comments are required to reach the next stage.\n\nTo begin the work on the planned Actions change the stage of the NC to\nopen by clicking on the \"In Progress\" button in the top right corner.\n\nWhen all actions of the plan are done, their effectiveness must be\nevaluated before closing the NC.\n"
  },
  {
    "path": "mgmtsystem_nonconformity/reports/mgmtsystem_nonconformity_report.xml",
    "content": "<odoo>\n    <!-- Management System Non Conformity Report Pivot View -->\n    <record id=\"view_report_mgmtsystem_nonconformity_pivot\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.report.pivot</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field name=\"arch\" type=\"xml\">\n            <pivot string=\"Non conformity\" disable_linking=\"True\">\n                <field name=\"state\" type=\"row\" />\n                <field name=\"user_id\" type=\"col\" />\n                <field name=\"number_of_nonconformities\" type=\"measure\" />\n            </pivot>\n        </field>\n    </record>\n\n    <!-- Non Conformity Report Graph View -->\n    <record id=\"view_report_mgmtsystem_nonconformity_graph\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.report.graph</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field name=\"arch\" type=\"xml\">\n            <graph string=\"Non conformity\">\n                <field name=\"state\" />\n                <field name=\"user_id\" />\n                <field name=\"number_of_nonconformities\" type=\"measure\" />\n            </graph>\n        </field>\n    </record>\n\n    <!-- Management system Non Conformity Report Action -->\n    <record id=\"action_report_mgmtsystem_nonconformity\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Management System Analysis</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity</field>\n        <field name=\"view_mode\">pivot,graph</field>\n        <field name=\"view_id\" />\n        <!-- force empty -->\n        <field\n            name=\"help\"\n        >Have a general overview of all non conformities processed in the system by sorting them with specific criteria.</field>\n    </record>\n\n    <menuitem\n        name=\"Nonconformities\"\n        id=\"menu_report_mgmtsystem_nonconformity_tree\"\n        action=\"action_report_mgmtsystem_nonconformity\"\n        parent=\"mgmtsystem.menu_mgmtsystem_report\"\n        sequence=\"15\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_nonconformity_user\",\"mgmtsystem.nonconformity.user\",\"model_mgmtsystem_nonconformity\",\"mgmtsystem.group_mgmtsystem_user\",1,1,1,0\n\"access_mgmtsystem_nonconformity_viewer\",\"mgmtsystem.nonconformity.viewer\",\"model_mgmtsystem_nonconformity\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_nonconformity_origin_user\",\"mgmtsystem.nonconformity.origin.user\",\"model_mgmtsystem_nonconformity_origin\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_nonconformity_origin_viewer\",\"mgmtsystem.nonconformity.origin.viewer\",\"model_mgmtsystem_nonconformity_origin\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_nonconformity_origin_manager\",\"mgmtsystem.nonconformity.origin.manager\",\"model_mgmtsystem_nonconformity_origin\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_nonconformity_cause_user\",\"mgmtsystem.nonconformity.cause.user\",\"model_mgmtsystem_nonconformity_cause\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_nonconformity_cause_viewer\",\"mgmtsystem.nonconformity.cause.viewer\",\"model_mgmtsystem_nonconformity_cause\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_nonconformity_cause_manager\",\"mgmtsystem.nonconformity.cause.manager\",\"model_mgmtsystem_nonconformity_cause\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_nonconformity_severity_user\",\"mgmtsystem.nonconformity.severity.user\",\"model_mgmtsystem_nonconformity_severity\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_nonconformity_severity_viewer\",\"mgmtsystem.nonconformity.severity.viewer\",\"model_mgmtsystem_nonconformity_severity\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_nonconformity_severity_manager\",\"mgmtsystem.nonconformity.severity.manager\",\"model_mgmtsystem_nonconformity_severity\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_nonconformity_stage_user\",\"access_mgmtsystem_nonconformity_stage\",\"model_mgmtsystem_nonconformity_stage\",\"mgmtsystem.group_mgmtsystem_user\",1,0,0,0\n\"access_mgmtsystem_nonconformity_stage_viewer\",\"mgmtsystem.nonconformity.stage.viewer\",\"model_mgmtsystem_nonconformity_stage\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_nonconformity_stage_manager\",\"mgmtsystem.nonconformity.stage.manager\",\"model_mgmtsystem_nonconformity_stage\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n"
  },
  {
    "path": "mgmtsystem_nonconformity/security/mgmtsystem_nonconformity_security.xml",
    "content": "<odoo noupdate=\"1\">\n    <!-- Rule -->\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_nonconformity_rule\">\n        <field name=\"name\">mgmtsystem_nonconformity multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_nonconformity\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/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=\"management-system-nonconformity\">\n<h1>Management System - Nonconformity</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:ac5dfaf7ad4439088d78bb0c47a4746e49338a742ee2984019738e51dfaa2aa9\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/management-system/tree/18.0/mgmtsystem_nonconformity\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity\"><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/management-system&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 enables you to manage the nonconformities of your management\nsystems:</p>\n<ul class=\"simple\">\n<li>Quality (ISO 9001)</li>\n<li>Environment (ISO 14001)</li>\n<li>Information Security (ISO 27001)</li>\n<li>Health and Safety (ISO 45001)</li>\n<li>IT Services (ISO 20000)</li>\n</ul>\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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-2\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#known-issues-roadmap\" id=\"toc-entry-3\">Known issues / Roadmap</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-8\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-9\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>Users must be added to the appropriate groups within Odoo as follows:</p>\n<ul class=\"simple\">\n<li>Creators: Settings &gt; Users &gt; Groups &gt; Management System / User</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Usage</a></h2>\n<p>To use this module:</p>\n<ul class=\"simple\">\n<li>Go to Management System &gt; Nonconformities</li>\n<li>Click on Create to enter the following information:</li>\n<li>Partner&nbsp;: Customer, supplier or internal personnel</li>\n<li>Related to: Any reference pointing to the NC (order id, project id,\ntask id, etc.)</li>\n<li>Responsible: Person responsible for the NC</li>\n<li>Manager&nbsp;: Person managing the department or owner of the procedure</li>\n<li>Filled in by: Originator of NC report</li>\n<li>Origins: The source of the NC, how was it discover</li>\n<li>Procedures: Against which procedure is the NC</li>\n<li>Description: Evidence, reference to the standards</li>\n<li>Click on Save and then set state from Draft to Analysis.</li>\n</ul>\n<p>Go to the newly created NC and fill in the following information:</p>\n<p>In the Causes and Analysis tab:</p>\n<ul class=\"simple\">\n<li>Causes: Add root causes</li>\n<li>Analysis: Describe the results of the investigation</li>\n<li>Severity: Select the severity among unfounded, minor and major</li>\n</ul>\n<p>In the Description tab:</p>\n<ul class=\"simple\">\n<li>Immediate action: Create or select an immediate action if appropriate</li>\n</ul>\n<p>Click on the Save button and then on the “Action Plan” button in the top\nright corner.</p>\n<p>In the Actions tab, select or create new actions by entering the\nfollowing items:</p>\n<ul class=\"simple\">\n<li>Subject: What must be done - Return to Supplier, Use As Is, Scrap,\nRework, Re-grade, Repair</li>\n<li>Deadline: Date by which the action must be completed</li>\n<li>Responsible: Person in charge for implementing the action</li>\n<li>Response Type: Immediate, corrective or preventive actions or\nimprovement opportunity</li>\n<li>Description: Details of the action</li>\n</ul>\n<p>When the action is created, a notification is sent to the person\nresponsible for the action.</p>\n<p>Enter comments into the input field below the “Plan Review” section,\nthose comments are required to reach the next stage.</p>\n<p>To begin the work on the planned Actions change the stage of the NC to\nopen by clicking on the “In Progress” button in the top right corner.</p>\n<p>When all actions of the plan are done, their effectiveness must be\nevaluated before closing the NC.</p>\n</div>\n<div class=\"section\" id=\"known-issues-roadmap\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Known issues / Roadmap</a></h2>\n<ul class=\"simple\">\n<li>The custom emails should be replaced by Mail Tracking features and\nSubtypes (like in Project Tasks and Project Issues)</li>\n<li>Automatically add responsible_user_id._uid, manager_user_id._uid,\nauthor_user_id._uid to chatter</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity%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-5\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Daniel Reis &lt;<a class=\"reference external\" href=\"mailto:dreis.pt&#64;hotmail.com\">dreis.pt&#64;hotmail.com</a>&gt;</li>\n<li>Glen Dromgoole &lt;<a class=\"reference external\" href=\"mailto:gdromgoole&#64;tier1engineering.com\">gdromgoole&#64;tier1engineering.com</a>&gt;</li>\n<li>Loic Lacroix &lt;<a class=\"reference external\" href=\"mailto:loic.lacroix&#64;savoirfairelinux.com\">loic.lacroix&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Sandy Carter &lt;<a class=\"reference external\" href=\"mailto:sandy.carter&#64;savoirfairelinux.com\">sandy.carter&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n</ul>\n<p>Trobz</p>\n<ul class=\"simple\">\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Tuan Nguyen &lt;<a class=\"reference external\" href=\"mailto:tuanna&#64;trobz.com\">tuanna&#64;trobz.com</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-8\">Other credits</a></h3>\n<p>The development of this module has been financially supported by:</p>\n<ul class=\"simple\">\n<li>Camptocamp</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-9\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity\">OCA/management-system</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": "mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.esm.js",
    "content": "import {Chatter} from \"@mail/chatter/web_portal/chatter\";\nimport {patch} from \"@web/core/utils/patch\";\n\npatch(Chatter.prototype, {\n    async onClickShowNonConformities() {\n        if (this.isTemporary) {\n            const saved = await this.doSaveRecord();\n            if (!saved) {\n                return;\n            }\n        }\n        this.env.services.action.doAction(\n            \"mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list\",\n            {\n                additionalContext: {\n                    id: this.props.threadId,\n                    mgmtsystem_nonconformity: this.props.threadModel,\n                },\n            }\n        );\n    },\n});\n"
  },
  {
    "path": "mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.xml",
    "content": "<templates xml:space=\"preserve\">\n\n    <t\n        t-name=\"mgmtsystem_nonconformity.ChatterTopbar\"\n        t-inherit=\"mail.Chatter\"\n        t-inherit-mode=\"extension\"\n    >\n        <xpath expr=\"//Dropdown\" position=\"before\">\n            <button\n                class=\"o_ChatterTopbar_button o_ChatterTopbar_buttonNonConformities btn btn-link\"\n                type=\"button\"\n                t-att-disabled=\"!state.thread.isTemporary and !state.thread.hasWriteAccess\"\n                t-on-click=\"onClickShowNonConformities\"\n                t-if=\"state.thread.non_conformity_count !== undefined\"\n            >\n                <i\n                    class=\"fa fa-exclamation-triangle fa-lg me-1\"\n                    role=\"img\"\n                    aria-label=\"Non conformities\"\n                />\n                <sup\n                    class=\"o_ChatterTopbar_buttonCount o_ChatterTopbar_buttonNonConformitiesCount\"\n                    t-esc=\"state.thread.non_conformity_count\"\n                />\n            </button>\n        </xpath>\n    </t>\n</templates>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/static/tests/test_chatter.test.js",
    "content": "import {\n    assertSteps,\n    contains,\n    mailModels,\n    onRpcBefore,\n    openFormView,\n    start,\n    startServer,\n    step,\n} from \"@mail/../tests/mail_test_helpers\";\n\nimport {\n    defineModels,\n    getKwArgs,\n    makeKwArgs,\n    serverState,\n} from \"@web/../tests/web_test_helpers\";\nimport {describe, test} from \"@odoo/hoot\";\n\ndescribe.current.tags(\"desktop\");\n\nclass MailThreadNonConformity extends mailModels.MailThread {\n    _thread_to_store() {\n        const result = super._thread_to_store(...arguments);\n        const kwargs = getKwArgs(arguments, \"ids\", \"store\", \"fields\", \"request_list\");\n        const store = kwargs.store;\n        const id = kwargs.ids[0];\n        store.add(\n            this.env[this._name].browse(id),\n            {\n                non_conformity_count: 0,\n            },\n            makeKwArgs({as_thread: true})\n        );\n        return result;\n    }\n}\n\ndefineModels({...mailModels, MailThread: MailThreadNonConformity});\n\ntest(\"simple chatter on a record\", async () => {\n    const pyEnv = await startServer();\n    onRpcBefore((route, args) => {\n        if (route.startsWith(\"/mail\") || route.startsWith(\"/discuss\")) {\n            step(`${route} - ${JSON.stringify(args)}`);\n        }\n    });\n    await start();\n    await assertSteps([\n        `/mail/data - ${JSON.stringify({\n            init_messaging: {},\n            failures: true,\n            systray_get_activities: true,\n            context: {\n                lang: \"en\",\n                tz: \"taht\",\n                uid: serverState.userId,\n                allowed_company_ids: [1],\n            },\n        })}`,\n    ]);\n    const partnerId = pyEnv[\"res.partner\"].create({name: \"John Doe\"});\n    await openFormView(\"res.partner\", partnerId);\n    await contains(\".o-mail-Chatter-topbar\");\n    await contains(\".o-mail-Thread\");\n    await assertSteps([\n        `/mail/thread/data - {\"request_list\":[\"activities\",\"attachments\",\"followers\",\"scheduledMessages\",\"suggestedRecipients\"],\"thread_id\":${partnerId},\"thread_model\":\"res.partner\"}`,\n        `/mail/thread/messages - {\"thread_id\":${partnerId},\"thread_model\":\"res.partner\",\"limit\":30}`,\n    ]);\n    await contains(\".o_ChatterTopbar_buttonNonConformities\");\n});\n"
  },
  {
    "path": "mgmtsystem_nonconformity/tests/__init__.py",
    "content": "# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom . import test_cause\nfrom . import test_origin\nfrom . import test_nonconformity\nfrom . import test_js\n"
  },
  {
    "path": "mgmtsystem_nonconformity/tests/test_cause.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import exceptions\nfrom odoo.tests import common\n\n\nclass TestModelCause(common.TransactionCase):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        cls.record = cls.env[\"mgmtsystem.nonconformity.cause\"].create(\n            {\"name\": \"TestCause\"}\n        )\n        cls.record2 = cls.env[\"mgmtsystem.nonconformity.cause\"].create(\n            {\"name\": \"test2\", \"parent_id\": cls.record.id}\n        )\n        cls.record3 = cls.env[\"mgmtsystem.nonconformity.cause\"].create(\n            {\"name\": \"test3\", \"parent_id\": cls.record2.id}\n        )\n\n    def test_create_cause(self):\n        self.assertNotEqual(self.record.id, 0)\n        self.assertNotEqual(self.record.id, None)\n\n    def test_display_name(self):\n        name_assoc = self.record\n        name_assoc._compute_display_name()\n        self.assertEqual(name_assoc.display_name, \"TestCause\")\n        self.assertEqual(name_assoc.id, self.record.id)\n\n        name_assoc = self.record2\n        name_assoc._compute_display_name()\n        self.assertEqual(name_assoc.display_name, \"TestCause / test2\")\n        self.assertEqual(name_assoc.id, self.record2.id)\n\n        name_assoc = self.record3\n        name_assoc._compute_display_name()\n        self.assertEqual(name_assoc.display_name, \"TestCause / test2 / test3\")\n        self.assertEqual(name_assoc.id, self.record3.id)\n\n    def test_recursion(self):\n        parent = self.env[\"mgmtsystem.nonconformity.cause\"].create(\n            {\"name\": \"ParentCause\"}\n        )\n        child = self.env[\"mgmtsystem.nonconformity.cause\"].create(\n            {\"name\": \"ChildCause\", \"parent_id\": parent.id}\n        )\n        # no recursion\n        with self.assertRaises(exceptions.UserError), self.cr.savepoint():\n            parent.write({\"parent_id\": child.id})\n"
  },
  {
    "path": "mgmtsystem_nonconformity/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 TestNonConformityFrontend(WebSuite):\n    \"\"\"Test Non Conformity OCA Frontend\"\"\"\n\n    def get_hoot_filters(self):\n        self._test_params = [(\"+\", \"@mgmtsystem_nonconformity\")]\n        return super().get_hoot_filters()\n\n    def test_non_conformity(self):\n        self.test_unit_desktop()\n"
  },
  {
    "path": "mgmtsystem_nonconformity/tests/test_nonconformity.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo.exceptions import ValidationError\nfrom odoo.tests import common\n\n\nclass TestModelNonConformity(common.TransactionCase):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        cls.nc_model = cls.env[\"mgmtsystem.nonconformity\"]\n        cls.partner = cls.env[\"res.partner\"].search([])[0]\n        cls.nc_test = cls.nc_model.create(\n            {\n                \"partner_id\": cls.partner.id,\n                \"manager_user_id\": cls.env.user.id,\n                \"description\": \"description\",\n                \"responsible_user_id\": cls.env.user.id,\n            }\n        )\n        action_vals = {\"name\": \"An Action\", \"type_action\": \"immediate\"}\n        action1 = cls.nc_model.action_ids.create(action_vals)\n        cls.nc_test.immediate_action_id = action1\n\n    def test_stage_group(self):\n        \"\"\"Group by Stage shows all stages\"\"\"\n        group_stages = self.nc_test.read_group(\n            domain=[], fields=[\"stage_id\"], groupby=[\"stage_id\"]\n        )\n        num_stages = len(self.nc_model.stage_id.search([]))\n        self.assertEqual(len(group_stages), num_stages)\n\n    def test_reset_kanban_state(self):\n        \"\"\"Reset Kanban State on Stage change\"\"\"\n        self.nc_test.kanban_state = \"done\"\n        self.nc_test.stage_id = self.env.ref(\"mgmtsystem_nonconformity.stage_analysis\")\n        self.assertEqual(self.nc_test.kanban_state, \"normal\")\n\n    def test_open_validation(self):\n        \"\"\"Don't allow approving/In Progress action comments\"\"\"\n        open_stage = self.env.ref(\"mgmtsystem_nonconformity.stage_open\")\n        with self.assertRaises(ValidationError):\n            self.nc_test.stage_id = open_stage\n\n    def test_done_validation(self):\n        \"\"\"Don't allow closing an NC without evaluation comments\"\"\"\n        done_stage = self.env.ref(\"mgmtsystem_nonconformity.stage_done\")\n        self.nc_test.action_comments = \"OK!\"\n        with self.assertRaises(ValidationError):\n            self.nc_test.stage_id = done_stage\n\n    def test_done_actions_validation(self):\n        \"\"\"Don't allow closing an NC with open actions\"\"\"\n        done_stage = self.env.ref(\"mgmtsystem_nonconformity.stage_done\")\n        self.nc_test.immediate_action_id.stage_id = self.env.ref(\n            \"mgmtsystem_action.stage_open\"\n        )\n        self.nc_test.evaluation_comments = \"OK!\"\n        with self.assertRaises(ValidationError):\n            self.nc_test.stage_id = done_stage\n\n    def test_state_transition(self):\n        \"\"\"Close and reopen Nonconformity\"\"\"\n        self.nc_test.action_comments = \"OK!\"\n        self.nc_test.stage_id = self.env.ref(\"mgmtsystem_nonconformity.stage_open\")\n        self.assertEqual(\n            self.nc_test.immediate_action_id.stage_id,\n            self.env.ref(\"mgmtsystem_action.stage_open\"),\n            \"Plan Approval starts Actions\",\n        )\n\n        self.nc_test.immediate_action_id.stage_id = self.env.ref(\n            \"mgmtsystem_action.stage_open\"\n        )\n        self.nc_test.evaluation_comments = \"OK!\"\n        self.nc_test.immediate_action_id.stage_id = self.env.ref(\n            \"mgmtsystem_action.stage_close\"\n        )\n        self.nc_test.stage_id = self.env.ref(\"mgmtsystem_nonconformity.stage_done\")\n        self.assertEqual(self.nc_test.state, \"done\")\n        self.assertTrue(self.nc_test.closing_date, \"Set close date on Done\")\n\n        self.nc_test.stage_id = self.env.ref(\"mgmtsystem_nonconformity.stage_open\")\n        self.assertEqual(self.nc_test.state, \"open\")\n        self.assertFalse(self.nc_test.closing_date, \"Reset close date on reopen\")\n"
  },
  {
    "path": "mgmtsystem_nonconformity/tests/test_origin.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo.tests import common\n\n\nclass TestModelOrigin(common.TransactionCase):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        cls.record = cls.env[\"mgmtsystem.nonconformity.origin\"].create(\n            {\"name\": \"TestOrigin\"}\n        )\n        cls.record2 = cls.env[\"mgmtsystem.nonconformity.origin\"].create(\n            {\"name\": \"test2\", \"parent_id\": cls.record.id}\n        )\n        cls.record3 = cls.env[\"mgmtsystem.nonconformity.origin\"].create(\n            {\"name\": \"test3\", \"parent_id\": cls.record2.id}\n        )\n\n    def test_create_origin(self):\n        self.assertNotEqual(self.record.id, 0)\n        self.assertNotEqual(self.record.id, None)\n\n    def test_display_name(self):\n        name_assoc = self.record\n        name_assoc._compute_display_name()\n        self.assertEqual(name_assoc.display_name, \"TestOrigin\")\n        self.assertEqual(name_assoc.id, self.record.id)\n\n        name_assoc = self.record2\n        name_assoc._compute_display_name()\n        self.assertEqual(name_assoc.display_name, \"TestOrigin / test2\")\n        self.assertEqual(name_assoc.id, self.record2.id)\n\n        name_assoc = self.record3\n        name_assoc._compute_display_name()\n        self.assertEqual(name_assoc.display_name, \"TestOrigin / test2 / test3\")\n        self.assertEqual(name_assoc.id, self.record3.id)\n"
  },
  {
    "path": "mgmtsystem_nonconformity/views/mgmtsystem_action.xml",
    "content": "<odoo>\n    <!-- Actions: add link to NCs -->\n    <record id=\"view_mgmtsystem_action_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.action.form</field>\n        <field name=\"model\">mgmtsystem.action</field>\n        <field name=\"inherit_id\" ref=\"mgmtsystem_action.view_mgmtsystem_action_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"description\" position=\"after\">\n                <separator string=\"Related Nonconformities\" colspan=\"4\" />\n                <field\n                    name=\"nonconformity_ids\"\n                    colspan=\"4\"\n                    nolabel=\"1\"\n                    invisible=\"nonconformity_ids == False\"\n                    readonly=\"1\"\n                />\n            </field>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/views/mgmtsystem_cause.xml",
    "content": "<odoo>\n    <!-- Cause -->\n\n    <record id=\"view_mgmtsystem_nonconformity_cause_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.cause.form</field>\n        <field name=\"type\">form</field>\n        <field name=\"model\">mgmtsystem.nonconformity.cause</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Causes of nonconformity\">\n                <group>\n                    <field name=\"name\" />\n                    <field name=\"sequence\" />\n                    <field name=\"parent_id\" />\n                    <field name=\"ref_code\" />\n                    <field name=\"description\" />\n                </group>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_nonconformity_cause_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.cause.list</field>\n        <field name=\"model\">mgmtsystem.nonconformity.cause</field>\n        <field name=\"type\">list</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"sequence\" widget=\"handle\" />\n                <field name=\"parent_id\" />\n                <field name=\"name\" />\n                <field name=\"description\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_nonconformity_cause_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Causes</field>\n        <field name=\"model\">mgmtsystem.nonconformity.cause</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Causes\">\n                <field name=\"parent_id\" />\n                <field name=\"name\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_nonconformity_cause_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Causes</field>\n        <field name=\"type\">ir.actions.act_window</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity.cause</field>\n        <field name=\"view_id\" eval=\"view_mgmtsystem_nonconformity_cause_tree\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_nonconformity_cause_filter\" />\n    </record>\n\n    <menuitem\n        id=\"menu_open_nonconformity_cause\"\n        action=\"open_mgmtsystem_nonconformity_cause_list\"\n        parent=\"menu_mgmtsystem_configuration_nonconformities\"\n        sequence=\"30\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/views/mgmtsystem_nonconformity.xml",
    "content": "<odoo>\n    <menuitem\n        id=\"menu_mgmtsystem_configuration_nonconformities\"\n        name=\"Nonconformities\"\n        parent=\"mgmtsystem.menu_mgmtsystem_configuration\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n        sequence=\"10\"\n    />\n\n    <record id=\"view_mgmtsystem_nonconformity_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.list</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"ref\" readonly=\"True\" />\n                <field name=\"create_date\" />\n                <field name=\"partner_id\" />\n                <field name=\"description\" />\n                <field name=\"user_id\" />\n                <field name=\"responsible_user_id\" />\n                <field name=\"manager_user_id\" />\n                <field name=\"system_id\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <field name=\"stage_id\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_nonconformity_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.filter</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field name=\"arch\" type=\"xml\">\n            <search>\n                <group name=\"filters\">\n                    <filter\n                        name=\"draft\"\n                        icon=\"terp-document-new\"\n                        domain=\"[('state','=','draft')]\"\n                        string=\"Draft\"\n                        help=\"Draft/New nonconformities\"\n                    />\n                    <filter\n                        name=\"pending\"\n                        icon=\"terp-gtk-media-pause\"\n                        domain=\"[('state','in',['analysis','pending'])]\"\n                        string=\"Analysis\"\n                        help=\"Nonconformities pending review\"\n                    />\n                    <filter\n                        name=\"current\"\n                        icon=\"terp-check\"\n                        domain=\"[('state','=','open')]\"\n                        string=\"In Progress\"\n                        help=\"Open Nonconformities\"\n                    />\n                    <filter\n                        name=\"icon\"\n                        icon=\"terp-camera_test\"\n                        domain=\"[('state','=','done')]\"\n                        string=\"Closed\"\n                        help=\"Closed Nonconformities\"\n                    />\n                    <separator orientation=\"vertical\" />\n                    <field name=\"ref\" />\n                    <field name=\"create_date\" />\n                    <filter\n                        name=\"current_user\"\n                        string=\"User\"\n                        domain=\"['|','|',('user_id','=',uid),('responsible_user_id','=',uid),('manager_user_id','=',uid)]\"\n                    />\n                    <field name=\"system_id\" />\n                    <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                </group>\n                <newline />\n                <group expand=\"0\" string=\"Group By...\">\n                    <filter\n                        name=\"groupby_author\"\n                        string=\"Author\"\n                        icon=\"gtk-edit\"\n                        context=\"{'group_by':'user_id'}\"\n                    />\n                    <filter\n                        name=\"groupby_responsible\"\n                        string=\"Responsible\"\n                        icon=\"terp-personal\"\n                        context=\"{'group_by':'responsible_user_id'}\"\n                    />\n                    <filter\n                        name=\"groupby_manager\"\n                        string=\"Manager\"\n                        icon=\"terp-personal+\"\n                        context=\"{'group_by':'manager_user_id'}\"\n                    />\n                    <separator orientation=\"vertical\" />\n                    <filter\n                        name=\"groupby_system\"\n                        string=\"System\"\n                        icon=\"gtk-execute\"\n                        context=\"{'group_by':'system_id'}\"\n                    />\n                    <filter\n                        name=\"groupby_partner\"\n                        string=\"Partner\"\n                        icon=\"terp-personal+\"\n                        domain=\"[]\"\n                        context=\"{'group_by':'partner_id'}\"\n                    />\n                    <filter\n                        name=\"groupby_procedure\"\n                        string=\"Procedure\"\n                        icon=\"terp-stock_symbol-selection\"\n                        context=\"{'group_by':'procedure_ids'}\"\n                    />\n                </group>\n            </search>\n        </field>\n    </record>\n\n    <!-- Kanban view -->\n    <record id=\"view_mgmtsystem_nonconformity_kanban\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.kanban</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field name=\"arch\" type=\"xml\">\n            <kanban\n                quick_create=\"false\"\n                default_group_by=\"stage_id\"\n                class=\"o_kanban_small_column\"\n            >\n                <field name=\"stage_id\" />\n                <field name=\"responsible_user_id\" />\n                <field name=\"ref\" />\n                <field name=\"name\" />\n                <field name=\"message_needaction_counter\" />\n                <templates>\n                    <t t-name=\"card\">\n                        <div>\n                            <div class=\"d-flex justify-content-between\">\n                                <strong>\n                                    <field name=\"ref\" />\n                                    -\n                                    <field name=\"name\" />\n                                </strong>\n                                <field name=\"kanban_state\" widget=\"state_selection\" />\n                            </div>\n                            <div>\n                                <br />\n                            </div>\n                            <div class=\"d-flex justify-content-between\">\n                                <span title='Unread Messages'>\n                                    <i class='fa fa-comments' />\n                                    <t\n                                        t-esc=\"record.message_needaction_counter.raw_value\"\n                                    />\n                                </span>\n                                <field\n                                    name=\"responsible_user_id\"\n                                    widget=\"many2one_avatar_user\"\n                                />\n                            </div>\n                        </div>\n                    </t>\n                </templates>\n            </kanban>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_nonconformity_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.form</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Non-Conformity\">\n                <header>\n                    <field\n                        name=\"stage_id\"\n                        widget=\"statusbar\"\n                        options=\"{'clickable': 1}\"\n                    />\n                </header>\n                <sheet string=\"Non-Conformity\">\n                    <div class=\"oe_button_box\" name=\"button_box\" />\n                    <field name=\"kanban_state\" widget=\"state_selection\" />\n                    <group name=\"main\">\n                        <group name=\"config\">\n                            <field name=\"name\" readonly=\"state not in 'draft'\" />\n                            <field name=\"ref\" readonly=\"state not in 'draft'\" />\n                            <field name=\"create_date\" readonly=\"1\" />\n                            <field\n                                name=\"partner_id\"\n                                readonly=\"state not in ('draft', 'analysis')\"\n                            />\n                            <field name=\"reference\" readonly=\"state not in 'draft'\" />\n                            <field\n                                name=\"origin_ids\"\n                                widget=\"many2many_tags\"\n                                readonly=\"state not in ('draft', 'analysis')\"\n                            />\n                        </group>\n                        <group name=\"meta\">\n                            <field\n                                name=\"responsible_user_id\"\n                                readonly=\"state not in ('draft', 'analysis')\"\n                            />\n                            <field\n                                name=\"manager_user_id\"\n                                readonly=\"state not in ('draft', 'analysis')\"\n                            />\n                            <field name=\"user_id\" readonly=\"state not in 'draft'\" />\n                            <field\n                                name=\"system_id\"\n                                readonly=\"state not in ('draft', 'analysis')\"\n                            />\n                            <field\n                                name=\"company_id\"\n                                groups=\"base.group_multi_company\"\n                            />\n                        </group>\n                    </group>\n\n                    <notebook>\n                        <page string=\"Description\" name=\"description\">\n                            <field\n                                name=\"description\"\n                                placeholder=\"Add a description ...\"\n                                readonly=\"state not in ('draft', 'analysis')\"\n                            />\n                            <group name=\"state\">\n                                <field\n                                    name=\"immediate_action_id\"\n                                    domain=\"[('type_action','=','immediate')]\"\n                                    readonly=\"state not in ('draft', 'analysis')\"\n                                />\n                            </group>\n                        </page>\n\n                        <page string=\"Procedures\" name=\"procedures\">\n                            <field\n                                name=\"procedure_ids\"\n                                readonly=\"state not in ('draft', 'analysis')\"\n                                domain=\"[('parent_id','child_of',('Procedure','Environmental Aspect','Manuals'))]\"\n                            />\n                        </page>\n\n                        <page\n                            string=\"Causes and Analysis\"\n                            invisible=\"state in ('draft', 'cancel')\"\n                            name=\"causes_analysis\"\n                        >\n                            <separator string=\"Analysis\" />\n                            <field name=\"analysis\" readonly=\"state not in 'analysis'\" />\n\n                            <separator string=\"Causes\" />\n                            <field\n                                name=\"cause_ids\"\n                                readonly=\"state not in 'analysis'\"\n                                options=\"{'no_create': True}\"\n                            >\n                                <list create=\"1\" delete=\"1\" decoration-info=\"parent_id\">\n                                    <field name=\"parent_id\" />\n                                    <field name=\"name\" />\n                                    <field name=\"description\" />\n                                    <field name=\"sequence\" />\n                                </list>\n                            </field>\n\n                            <separator string=\"Analysis Confirmation\" />\n                            <group>\n                                <group>\n                                    <field\n                                        name=\"severity_id\"\n                                        readonly=\"state not in 'analysis'\"\n                                    />\n                                </group>\n                            </group>\n                        </page>\n\n                        <page\n                            string=\"Actions\"\n                            invisible=\"state in ('draft', 'analysis', 'cancel')\"\n                            name=\"actions\"\n                        >\n                            <separator string=\"Action Plan\" />\n                            <field\n                                name=\"action_ids\"\n                                readonly=\"state not in 'pending'\"\n                            />\n\n                            <group string=\"Plan Review\" name=\"plan_review\">\n                                <field\n                                    name=\"action_comments\"\n                                    readonly=\"state not in 'pending'\"\n                                    nolabel=\"1\"\n                                    colspan=\"2\"\n                                    placeholder=\"Action Plan Comments\"\n                                />\n                            </group>\n\n                            <group\n                                name=\"effectiveness_review\"\n                                invisible=\"state not in 'open' and state not in 'done'\"\n                                string=\"Effectiveness Review\"\n                            >\n                                <field\n                                    name=\"evaluation_comments\"\n                                    readonly=\"state not in 'open'\"\n                                    nolabel=\"1\"\n                                    colspan=\"2\"\n                                    placeholder=\"Evaluation Comments\"\n                                />\n                            </group>\n                        </page>\n                    </notebook>\n                </sheet>\n\n                <chatter />\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"open_mgmtsystem_nonconformity_list\">\n        <field name=\"name\">Nonconformities</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity</field>\n        <field name=\"view_mode\">kanban,list,form</field>\n        <field name=\"view_id\" ref=\"view_mgmtsystem_nonconformity_kanban\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_nonconformity_filter\" />\n        <field name=\"context\">{\"search_default_user_id\":uid}</field>\n    </record>\n\n    <record\n        model=\"ir.actions.act_window\"\n        id=\"open_mgmtsystem_nonconformity_thread_list\"\n    >\n        <field name=\"name\">Nonconformities</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity</field>\n        <field name=\"view_mode\">kanban,list,form</field>\n        <field\n            name=\"domain\"\n        >[('res_id', '=', id), ('res_model', '=', mgmtsystem_nonconformity)]\n        </field>\n        <field name=\"view_id\" ref=\"view_mgmtsystem_nonconformity_kanban\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_nonconformity_filter\" />\n        <field\n            name=\"context\"\n        >{\"search_default_user_id\":uid, \"default_res_model\": mgmtsystem_nonconformity, \"default_res_id\": id}\n        </field>\n    </record>\n\n    <menuitem\n        id=\"menu_open_nonconformity\"\n        name=\"Nonconformities\"\n        action=\"open_mgmtsystem_nonconformity_list\"\n        parent=\"mgmtsystem.menu_mgmtsystem_main\"\n        sequence=\"30\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor,base.group_user\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/views/mgmtsystem_nonconformity_stage.xml",
    "content": "<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_nonconformity_stage_tree_view\">\n        <field name=\"name\">Management System Nonconformity Stage List</field>\n        <field name=\"model\">mgmtsystem.nonconformity.stage</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"sequence\" widget=\"handle\" />\n                <field name=\"name\" />\n                <field name=\"state\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"mgmtsystem_nonconformity_stage_form_view\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.stage.form.view</field>\n        <field name=\"model\">mgmtsystem.nonconformity.stage</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Nonconformity Stage\">\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                    </group>\n                    <group>\n                        <field name=\"fold\" />\n                        <field name=\"sequence\" groups=\"base.group_no_one\" />\n                        <field name=\"is_starting\" />\n                        <field name=\"state\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"mgmtsystem_nonconformity_stage_action\">\n        <field name=\"name\">Stages</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity.stage</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"context\">{}</field>\n    </record>\n\n    <menuitem\n        id=\"menu_mgmtsystem_nonconformity_stages\"\n        name=\"Stages\"\n        parent=\"menu_mgmtsystem_configuration_nonconformities\"\n        action=\"mgmtsystem_nonconformity_stage_action\"\n        sequence=\"90\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager,mgmtsystem.group_mgmtsystem_auditor,base.group_user\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/views/mgmtsystem_origin.xml",
    "content": "<odoo>\n    <!-- Origin -->\n\n    <record id=\"view_mgmtsystem_nonconformity_origin_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.origin.form</field>\n        <field name=\"type\">form</field>\n        <field name=\"model\">mgmtsystem.nonconformity.origin</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Origins of nonconformity\">\n                <sheet>\n                    <widget\n                        name=\"web_ribbon\"\n                        title=\"Archived\"\n                        bg_color=\"bg-danger\"\n                        invisible=\"active\"\n                    />\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"sequence\" />\n                        <field name=\"parent_id\" />\n                        <field name=\"ref_code\" />\n                        <field name=\"description\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_nonconformity_origin_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.origin.list</field>\n        <field name=\"model\">mgmtsystem.nonconformity.origin</field>\n        <field name=\"type\">list</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"sequence\" widget=\"handle\" />\n                <field name=\"parent_id\" />\n                <field name=\"name\" />\n                <field name=\"description\" />\n                <field name=\"active\" column_invisible=\"1\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_nonconformity_origin_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">Origins</field>\n        <field name=\"model\">mgmtsystem.nonconformity.origin</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Origins\">\n                <field name=\"parent_id\" />\n                <field name=\"name\" />\n            </search>\n        </field>\n    </record>\n\n    <record\n        id=\"open_mgmtsystem_nonconformity_origin_list\"\n        model=\"ir.actions.act_window\"\n    >\n        <field name=\"name\">Origins</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity.origin</field>\n        <field name=\"view_mode\">list,form</field>\n        <field name=\"view_id\" eval=\"False\" />\n        <field\n            name=\"search_view_id\"\n            ref=\"view_mgmtsystem_nonconformity_origin_filter\"\n        />\n    </record>\n\n    <menuitem\n        id=\"menu_open_nonconformity_origin\"\n        action=\"open_mgmtsystem_nonconformity_origin_list\"\n        parent=\"menu_mgmtsystem_configuration_nonconformities\"\n        sequence=\"20\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity/views/mgmtsystem_severity.xml",
    "content": "<odoo>\n    <!-- Severity -->\n    <record id=\"view_mgmtsystem_nonconformity_severity_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.nonconformity.severity.form</field>\n        <field name=\"type\">form</field>\n        <field name=\"model\">mgmtsystem.nonconformity.severity</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Severity of Complaints and Nonconformities\">\n                <sheet>\n                    <field name=\"active\" invisible=\"1\" />\n                    <widget\n                        name=\"web_ribbon\"\n                        title=\"Archived\"\n                        bg_color=\"bg-danger\"\n                        invisible=\"active\"\n                    />\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"sequence\" />\n                        <field name=\"description\" colspan=\"2\" />\n                    </group>\n                </sheet>\n            </form>\n        </field>\n    </record>\n\n    <record\n        id=\"open_mgmtsystem_nonconformity_severity_list\"\n        model=\"ir.actions.act_window\"\n    >\n        <field name=\"name\">Severity</field>\n        <field name=\"res_model\">mgmtsystem.nonconformity.severity</field>\n        <field name=\"view_mode\">list,form</field>\n    </record>\n\n    <menuitem\n        id=\"menu_open_nonconformity_severity\"\n        action=\"open_mgmtsystem_nonconformity_severity_list\"\n        parent=\"mgmtsystem_nonconformity.menu_mgmtsystem_configuration_nonconformities\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/README.rst",
    "content": "========================================\nManagement System - Nonconformity Hazard\n========================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:100deca140cb619756e73e756453c8b44d08e54f8d7615c69507021141650285\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_hazard\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_hazard\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module allows the user to relate hazards to a nonconformity.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nNC Maintenance\n\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Go to the \"Hazards\" tab.\n- Select the related hazards.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_hazard%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* Escodoo\n\nContributors\n------------\n\n`Escodoo <https://www.escodoo.com.br>`__:\n\n- Marcel Savegnago <marcel.savegnago@escodoo.com.br>\n- Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>\n- Douglas Custodio <douglas.custodio@escodoo.com.br>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_hazard>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/__manifest__.py",
    "content": "# Copyright 2024 - TODAY, Escodoo\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Nonconformity Hazard\",\n    \"version\": \"18.0.1.0.0\",\n    \"author\": \"Escodoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem_hazard\", \"mgmtsystem_nonconformity\"],\n    \"data\": [\n        \"views/mgmtsystem_hazard.xml\",\n        \"views/mgmtsystem_nonconformity.xml\",\n    ],\n    \"autoinstall\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_hazard\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-04-02 11:36+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 4.17\\n\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_hazard.mgmtsystem_nonconformity_form_view\nmsgid \"Hazards\"\nmsgstr \"Pericoli\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model:ir.model,name:mgmtsystem_nonconformity_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"Pericoli del sistema di gestione salute e sicurezza\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_hazard.mgmtsystem_hazard_form_view\nmsgid \"Nonconfomity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model:ir.model,name:mgmtsystem_nonconformity_hazard.model_mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hazard.field_mgmtsystem_hazard__nonconformity_ids\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hazard.field_mgmtsystem_nonconformity__hazard_ids\nmsgid \"Risk Analysis\"\nmsgstr \"Analisi del rischio\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/i18n/mgmtsystem_nonconformity_hazard.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_hazard\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: mgmtsystem_nonconformity_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_hazard.mgmtsystem_nonconformity_form_view\nmsgid \"Hazards\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model:ir.model,name:mgmtsystem_nonconformity_hazard.model_mgmtsystem_hazard\nmsgid \"Hazards of the health and safety management system\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_hazard.mgmtsystem_hazard_form_view\nmsgid \"Nonconfomity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model:ir.model,name:mgmtsystem_nonconformity_hazard.model_mgmtsystem_nonconformity\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hazard.field_mgmtsystem_hazard__nonconformity_ids\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_hazard\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hazard.field_mgmtsystem_nonconformity__hazard_ids\nmsgid \"Risk Analysis\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/models/__init__.py",
    "content": "from . import mgmtsystem_nonconformity\nfrom . import mgmtsystem_hazard\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/models/mgmtsystem_hazard.py",
    "content": "# Copyright 2024 - TODAY, Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemHazard(models.Model):\n    _inherit = \"mgmtsystem.hazard\"\n\n    nonconformity_ids = fields.Many2many(\n        \"mgmtsystem.nonconformity\", string=\"Nonconformity\"\n    )\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/models/mgmtsystem_nonconformity.py",
    "content": "# Copyright 2024 - TODAY, Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemNonconformity(models.Model):\n    _inherit = \"mgmtsystem.nonconformity\"\n\n    hazard_ids = fields.Many2many(\"mgmtsystem.hazard\", string=\"Risk Analysis\")\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/readme/CONTRIBUTORS.md",
    "content": "[Escodoo](https://www.escodoo.com.br):\n\n- Marcel Savegnago \\<<marcel.savegnago@escodoo.com.br>\\>\n- Kaynnan Lemes \\<<kaynnan.lemes@escodoo.com.br>\\>\n- Douglas Custodio \\<<douglas.custodio@escodoo.com.br>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/readme/DESCRIPTION.md",
    "content": "This module allows the user to relate hazards to a nonconformity.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/readme/USAGE.md",
    "content": "NC Maintenance\n\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Go to the \"Hazards\" tab.\n- Select the related hazards.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/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>Management System - Nonconformity Hazard</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=\"management-system-nonconformity-hazard\">\n<h1 class=\"title\">Management System - Nonconformity Hazard</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:100deca140cb619756e73e756453c8b44d08e54f8d7615c69507021141650285\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/management-system/tree/18.0/mgmtsystem_nonconformity_hazard\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_hazard\"><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/management-system&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 user to relate hazards to a nonconformity.</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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-6\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>NC Maintenance</p>\n<ul class=\"simple\">\n<li>Go to Management System → Nonconformity</li>\n<li>Create new Nonconformity</li>\n<li>Go to the “Hazards” tab.</li>\n<li>Select the related hazards.</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_hazard%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-3\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Escodoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h2>\n<p><a class=\"reference external\" href=\"https://www.escodoo.com.br\">Escodoo</a>:</p>\n<ul class=\"simple\">\n<li>Marcel Savegnago &lt;<a class=\"reference external\" href=\"mailto:marcel.savegnago&#64;escodoo.com.br\">marcel.savegnago&#64;escodoo.com.br</a>&gt;</li>\n<li>Kaynnan Lemes &lt;<a class=\"reference external\" href=\"mailto:kaynnan.lemes&#64;escodoo.com.br\">kaynnan.lemes&#64;escodoo.com.br</a>&gt;</li>\n<li>Douglas Custodio &lt;<a class=\"reference external\" href=\"mailto:douglas.custodio&#64;escodoo.com.br\">douglas.custodio&#64;escodoo.com.br</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_hazard\">OCA/management-system</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": "mgmtsystem_nonconformity_hazard/views/mgmtsystem_hazard.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2024 - TODAY, Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_hazard_form_view\">\n        <field\n            name=\"name\"\n        >mgmtsystem.hazard.form (in mgmtsystem_nonconformity_hazard)</field>\n        <field name=\"model\">mgmtsystem.hazard</field>\n        <field name=\"inherit_id\" ref=\"mgmtsystem_hazard.view_mgmtsystem_hazard_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <xpath expr=\"//notebook\" position=\"inside\">\n                <page string=\"Nonconfomity\" name=\"nonconformity\">\n                    <field name=\"nonconformity_ids\" />\n                </page>\n            </xpath>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hazard/views/mgmtsystem_nonconformity.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2024 - TODAY, Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_nonconformity_form_view\">\n        <field\n            name=\"name\"\n        >mgmtsystem.nonconformity.form (in mgmtsystem_nonconformity_hazard)</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <xpath expr=\"//page[@name='procedures']\" position=\"after\">\n                <page string=\"Hazards\" name=\"hazards\">\n                    <field\n                        name=\"hazard_ids\"\n                        readonly=\"state not in ('draft', 'analysis')\"\n                    />\n                </page>\n            </xpath>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/README.rst",
    "content": "====================================\nManagement System - Nonconformity HR\n====================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:e01a473583855ec5027956f4f2da662e142ab8c8a6daee8d609214f53c1bf79f\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_hr\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_hr\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis is a bridge module between Management System and Human Resource\n\nThis module contains some new features for Management System modules.\n\nNonconformity (NC)\n\n- Department: add a field to link a specific department.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nNC Department\n\n- Go to Employees → Department → create a new one\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Departament on the list\n\nChangelog\n=========\n\n13.0.1.0.0 (2020-04-01)\n-----------------------\n\n- [INI] Initial development\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_hr%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* Associazione PNLUG - Gruppo Odoo\n\nContributors\n------------\n\n- Marcelo Frare <mf2965@gmail.com>\n- Stefano Consolaro <stefano.consolaro@mymage.it>\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_hr>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/__manifest__.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Nonconformity HR\",\n    \"summary\": \"Bridge module between hr and mgmsystem and\",\n    \"version\": \"18.0.1.0.0\",\n    \"author\": \"Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"hr\", \"mgmtsystem_nonconformity\"],\n    \"data\": [\"views/mgmtsystem_nonconformity_views.xml\"],\n    \"application\": False,\n    \"installable\": True,\n    \"auto_install\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_hr\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 14:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: mgmtsystem_nonconformity_hr\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id\nmsgid \"Department\"\nmsgstr \"Departamento\"\n\n#. module: mgmtsystem_nonconformity_hr\n#: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Disconformidad\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_hr\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-05-29 11:34+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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: mgmtsystem_nonconformity_hr\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id\nmsgid \"Department\"\nmsgstr \"بخش\"\n\n#. module: mgmtsystem_nonconformity_hr\n#: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"عدم تطابق\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_hr\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-12-01 18:34+0000\\n\"\n\"Last-Translator: yassine-rhimi <yassinrhimi67@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fr\\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: mgmtsystem_nonconformity_hr\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id\nmsgid \"Department\"\nmsgstr \"Département\"\n\n#. module: mgmtsystem_nonconformity_hr\n#: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non-conformité\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_extended_hr\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 11.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2019-10-20 11:55+0000\\n\"\n\"PO-Revision-Date: 2024-04-02 11:36+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: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 4.17\\n\"\n\n#. module: mgmtsystem_nonconformity_hr\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id\nmsgid \"Department\"\nmsgstr \"Reparto\"\n\n#. module: mgmtsystem_nonconformity_hr\n#: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/i18n/mgmtsystem_nonconformity_hr.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_hr\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: mgmtsystem_nonconformity_hr\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id\nmsgid \"Department\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_hr\n#: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_hr\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 13.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2021-11-26 15:36+0000\\n\"\n\"Last-Translator: Daniel Reis <dgreis@sapo.pt>\\n\"\n\"Language-Team: none\\n\"\n\"Language: 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\"X-Generator: Weblate 4.3.2\\n\"\n\n#. module: mgmtsystem_nonconformity_hr\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id\nmsgid \"Department\"\nmsgstr \"Departamento\"\n\n#. module: mgmtsystem_nonconformity_hr\n#: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Não conformidade\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/models/__init__.py",
    "content": "from . import mgmtsystem_nonconformity_hr\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/models/mgmtsystem_nonconformity_hr.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemMgmHR(models.Model):\n    _inherit = [\"mgmtsystem.nonconformity\"]\n\n    department_id = fields.Many2one(\"hr.department\", \"Department\")\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/readme/CONTRIBUTORS.md",
    "content": "- Marcelo Frare \\<<mf2965@gmail.com>\\>\n- Stefano Consolaro \\<<stefano.consolaro@mymage.it>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/readme/DESCRIPTION.md",
    "content": "This is a bridge module between Management System and Human Resource\n\nThis module contains some new features for Management System modules.\n\nNonconformity (NC)\n\n- Department: add a field to link a specific department.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/readme/HISTORY.md",
    "content": "## 13.0.1.0.0 (2020-04-01)\n\n- \\[INI\\] Initial development\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/readme/USAGE.md",
    "content": "NC Department\n\n- Go to Employees → Department → create a new one\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Departament on the list\n"
  },
  {
    "path": "mgmtsystem_nonconformity_hr/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>Management System - Nonconformity HR</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=\"management-system-nonconformity-hr\">\n<h1 class=\"title\">Management System - Nonconformity HR</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:e01a473583855ec5027956f4f2da662e142ab8c8a6daee8d609214f53c1bf79f\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/management-system/tree/18.0/mgmtsystem_nonconformity_hr\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_hr\"><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/management-system&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 is a bridge module between Management System and Human Resource</p>\n<p>This module contains some new features for Management System modules.</p>\n<p>Nonconformity (NC)</p>\n<ul class=\"simple\">\n<li>Department: add a field to link a specific department.</li>\n</ul>\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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#changelog\" id=\"toc-entry-2\">Changelog</a><ul>\n<li><a class=\"reference internal\" href=\"#section-1\" id=\"toc-entry-3\">13.0.1.0.0 (2020-04-01)</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>NC Department</p>\n<ul class=\"simple\">\n<li>Go to Employees → Department → create a new one</li>\n<li>Go to Management System → Nonconformity</li>\n<li>Create new Nonconformity</li>\n<li>Select a Departament on the list</li>\n</ul>\n</div>\n<div class=\"section\" id=\"changelog\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Changelog</a></h1>\n<div class=\"section\" id=\"section-1\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">13.0.1.0.0 (2020-04-01)</a></h2>\n<ul class=\"simple\">\n<li>[INI] Initial development</li>\n</ul>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_hr%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-5\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Associazione PNLUG - Gruppo Odoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Marcelo Frare &lt;<a class=\"reference external\" href=\"mailto:mf2965&#64;gmail.com\">mf2965&#64;gmail.com</a>&gt;</li>\n<li>Stefano Consolaro &lt;<a class=\"reference external\" href=\"mailto:stefano.consolaro&#64;mymage.it\">stefano.consolaro&#64;mymage.it</a>&gt;</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-8\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_hr\">OCA/management-system</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": "mgmtsystem_nonconformity_hr/views/mgmtsystem_nonconformity_views.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2019 Marcelo Frare (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     Copyright 2019 Stefano Consolaro (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) -->\n<odoo>\n    <record id=\"view_mgmtsystem_nonconformity_form\" model=\"ir.ui.view\">\n        <field name=\"name\">view.mgmtsystem.nonconformity.department</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"create_date\" position=\"after\">\n                <field name=\"department_id\" />\n            </field>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/README.rst",
    "content": "=======================================================\nManagement System - Nonconformity Maintenance Equipment\n=======================================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:afa7f6f0f3edc6596b628dcb965cad61a988a131bed380a7d3e2552107694513\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_maintenance_equipment\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_maintenance_equipment\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module allows the user to relate maintenance equipment to a\nnonconformity.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nNC Maintenance\n\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Equipment\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_maintenance_equipment%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* Escodoo\n\nContributors\n------------\n\n- `Escodoo <https://www.escodoo.com.br>`__:\n\n  - Marcel Savegnago <marcel.savegnago@escodoo.com.br>\n  - Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>\n  - Douglas Custodio <douglas.custodio@escodoo.com.br>\n\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_maintenance_equipment>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/__manifest__.py",
    "content": "# Copyright 2024 - TODAY, Escodoo\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Nonconformity Maintenance Equipment\",\n    \"version\": \"18.0.1.0.0\",\n    \"author\": \"Escodoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"maintenance\", \"mgmtsystem_nonconformity\"],\n    \"data\": [\n        \"views/mgmtsystem_nonconformity.xml\",\n    ],\n}\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_maintenance_equipment\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-04-02 11:36+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 4.17\\n\"\n\n#. module: mgmtsystem_nonconformity_maintenance_equipment\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_maintenance_equipment.field_mgmtsystem_nonconformity__equipment_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_maintenance_equipment.mgmtsystem_nonconformity_filter_view\nmsgid \"Equipment\"\nmsgstr \"Attrezzatura\"\n\n#. module: mgmtsystem_nonconformity_maintenance_equipment\n#: model:ir.model,name:mgmtsystem_nonconformity_maintenance_equipment.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/i18n/mgmtsystem_nonconformity_maintenance_equipment.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_maintenance_equipment\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: mgmtsystem_nonconformity_maintenance_equipment\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_maintenance_equipment.field_mgmtsystem_nonconformity__equipment_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_maintenance_equipment.mgmtsystem_nonconformity_filter_view\nmsgid \"Equipment\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_maintenance_equipment\n#: model:ir.model,name:mgmtsystem_nonconformity_maintenance_equipment.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/models/__init__.py",
    "content": "from . import mgmtsystem_nonconformity\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/models/mgmtsystem_nonconformity.py",
    "content": "# Copyright 2024 - TODAY, Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemNonconformity(models.Model):\n    _inherit = \"mgmtsystem.nonconformity\"\n\n    equipment_id = fields.Many2one(\"maintenance.equipment\", string=\"Equipment\")\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/readme/CONTRIBUTORS.md",
    "content": "- [Escodoo](https://www.escodoo.com.br):\n  - Marcel Savegnago \\<<marcel.savegnago@escodoo.com.br>\\>\n  - Kaynnan Lemes \\<<kaynnan.lemes@escodoo.com.br>\\>\n  - Douglas Custodio \\<<douglas.custodio@escodoo.com.br>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/readme/DESCRIPTION.md",
    "content": "This module allows the user to relate maintenance equipment to a\nnonconformity.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/readme/USAGE.md",
    "content": "NC Maintenance\n\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Equipment\n"
  },
  {
    "path": "mgmtsystem_nonconformity_maintenance_equipment/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>Management System - Nonconformity Maintenance Equipment</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=\"management-system-nonconformity-maintenance-equipment\">\n<h1 class=\"title\">Management System - Nonconformity Maintenance Equipment</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:afa7f6f0f3edc6596b628dcb965cad61a988a131bed380a7d3e2552107694513\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/management-system/tree/18.0/mgmtsystem_nonconformity_maintenance_equipment\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_maintenance_equipment\"><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/management-system&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 user to relate maintenance equipment to a\nnonconformity.</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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-6\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>NC Maintenance</p>\n<ul class=\"simple\">\n<li>Go to Management System → Nonconformity</li>\n<li>Create new Nonconformity</li>\n<li>Select a Equipment</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_maintenance_equipment%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-3\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Escodoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h2>\n<ul class=\"simple\">\n<li><a class=\"reference external\" href=\"https://www.escodoo.com.br\">Escodoo</a>:<ul>\n<li>Marcel Savegnago &lt;<a class=\"reference external\" href=\"mailto:marcel.savegnago&#64;escodoo.com.br\">marcel.savegnago&#64;escodoo.com.br</a>&gt;</li>\n<li>Kaynnan Lemes &lt;<a class=\"reference external\" href=\"mailto:kaynnan.lemes&#64;escodoo.com.br\">kaynnan.lemes&#64;escodoo.com.br</a>&gt;</li>\n<li>Douglas Custodio &lt;<a class=\"reference external\" href=\"mailto:douglas.custodio&#64;escodoo.com.br\">douglas.custodio&#64;escodoo.com.br</a>&gt;</li>\n</ul>\n</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_maintenance_equipment\">OCA/management-system</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": "mgmtsystem_nonconformity_maintenance_equipment/views/mgmtsystem_nonconformity.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2024 - TODAY, Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_nonconformity_form_view\">\n        <field name=\"name\">mgmtsystem.nonconformity.form (in\n            mgmtsystem_nonconformity_maintenance_equipment)</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <xpath expr=\"//field[@name='create_date']\" position=\"before\">\n                <field name=\"equipment_id\" />\n            </xpath>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_nonconformity_tree_view\">\n        <field name=\"name\">mgmtsystem.nonconformity.tree (in\n            mgmtsystem_nonconformity_maintenance_equipment)</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_tree\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <xpath expr=\"//field[@name='partner_id']\" position=\"after\">\n                <field name=\"equipment_id\" />\n            </xpath>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_nonconformity_filter_view\">\n        <field name=\"name\">mgmtsystem.nonconformity.filter (in\n            mgmtsystem_nonconformity_maintenance_equipment)</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_filter\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <xpath expr=\"//filter[@name='groupby_manager']\" position=\"after\">\n                <filter\n                    name=\"groupby_equipment\"\n                    string=\"Equipment\"\n                    icon=\"terp-personal\"\n                    context=\"{'group_by':'equipment_id'}\"\n                />\n            </xpath>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/README.rst",
    "content": "=====================================\nManagement System - Nonconformity MRP\n=====================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:02a07e8ff707a192020188869ca41827debb716599dcf23dfae9f04bf3c4ab4c\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_mrp\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_mrp\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis is a bridge module between Management System and MRP\n\nThis module contains some new features for Management System modules.\n\nNonconformity (NC)\n\n- Workcenter: add a field to link a specific workcenter. Manage Work\n  Order Operations option has to be checked to show the field.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nInstallation\n============\n\nThis module will be automatically installed\n\nConfiguration\n=============\n\nWorkcenter has to be enabled:\n\n- Go to Settings → Users and select a user.\n- Go to Technical Settings and check Manage Work Order Operations\n\nUsage\n=====\n\nNC Workcenter\n\n- Go to Manufacturing → Work Centers → create a new one\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Workcenter on the list\n\nKnown issues / Roadmap\n======================\n\n\n\nChangelog\n=========\n\n11.0.1.0.0 (2019-04-01)\n-----------------------\n\n- [INI] Initial development\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_mrp%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* Associazione PNLUG - Gruppo Odoo\n\nContributors\n------------\n\n- Marcelo Frare <mf2965@gmail.com>\n- Stefano Consolaro <stefano.consolaro@mymage.it>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_mrp>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/__init__.py",
    "content": "from . import (\n    models,\n)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/__manifest__.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Nonconformity MRP\",\n    \"summary\": \"Bridge module between mrp and mgmsystem\",\n    \"version\": \"18.0.1.0.0\",\n    \"development_status\": \"Beta\",\n    \"author\": \"Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\n        \"mgmtsystem_nonconformity\",\n        \"mrp\",\n    ],\n    \"data\": [\n        \"views/mgmtsystem_nonconformity_views.xml\",\n    ],\n    \"application\": False,\n    \"installable\": True,\n    \"auto_install\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_mrp\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 14:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: mgmtsystem_nonconformity_mrp\n#: model:ir.model,name:mgmtsystem_nonconformity_mrp.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Disconformidad\"\n\n#. module: mgmtsystem_nonconformity_mrp\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_mrp.field_mgmtsystem_nonconformity__workcenter_id\nmsgid \"Workcenter\"\nmsgstr \"Centro de trabajo\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_mrp\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-12-01 18:34+0000\\n\"\n\"Last-Translator: yassine-rhimi <yassinrhimi67@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fr\\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: mgmtsystem_nonconformity_mrp\n#: model:ir.model,name:mgmtsystem_nonconformity_mrp.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non-conformité\"\n\n#. module: mgmtsystem_nonconformity_mrp\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_mrp.field_mgmtsystem_nonconformity__workcenter_id\nmsgid \"Workcenter\"\nmsgstr \"Poste de travail\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_extended_mrp\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 11.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2019-10-20 11:55+0000\\n\"\n\"PO-Revision-Date: 2024-04-02 11:36+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: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 4.17\\n\"\n\n#. module: mgmtsystem_nonconformity_mrp\n#: model:ir.model,name:mgmtsystem_nonconformity_mrp.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity_mrp\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_mrp.field_mgmtsystem_nonconformity__workcenter_id\nmsgid \"Workcenter\"\nmsgstr \"Centro di lavoro\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/i18n/mgmtsystem_nonconformity_mrp.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_mrp\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: mgmtsystem_nonconformity_mrp\n#: model:ir.model,name:mgmtsystem_nonconformity_mrp.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_mrp\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_mrp.field_mgmtsystem_nonconformity__workcenter_id\nmsgid \"Workcenter\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/models/__init__.py",
    "content": "from . import mgmtsystem_nonconformity_mrp\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/models/mgmtsystem_nonconformity_mrp.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemMgmMRP(models.Model):\n    \"\"\"\n    Extend nonconformity adding fields for workcenter\n    \"\"\"\n\n    _inherit = [\"mgmtsystem.nonconformity\"]\n\n    # new fields\n    # workcenter reference\n    workcenter_id = fields.Many2one(\"mrp.workcenter\", \"Workcenter\")\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/readme/CONFIGURE.md",
    "content": "Workcenter has to be enabled:\n\n- Go to Settings → Users and select a user.\n- Go to Technical Settings and check Manage Work Order Operations\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/readme/CONTRIBUTORS.md",
    "content": "- Marcelo Frare \\<<mf2965@gmail.com>\\>\n- Stefano Consolaro \\<<stefano.consolaro@mymage.it>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/readme/DESCRIPTION.md",
    "content": "This is a bridge module between Management System and MRP\n\nThis module contains some new features for Management System modules.\n\nNonconformity (NC)\n\n- Workcenter: add a field to link a specific workcenter. Manage Work\n  Order Operations option has to be checked to show the field.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/readme/HISTORY.md",
    "content": "## 11.0.1.0.0 (2019-04-01)\n\n- \\[INI\\] Initial development\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/readme/INSTALL.md",
    "content": "This module will be automatically installed\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/readme/ROADMAP.md",
    "content": "\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/readme/USAGE.md",
    "content": "NC Workcenter\n\n- Go to Manufacturing → Work Centers → create a new one\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Workcenter on the list\n"
  },
  {
    "path": "mgmtsystem_nonconformity_mrp/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>Management System - Nonconformity MRP</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=\"management-system-nonconformity-mrp\">\n<h1 class=\"title\">Management System - Nonconformity MRP</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:02a07e8ff707a192020188869ca41827debb716599dcf23dfae9f04bf3c4ab4c\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/management-system/tree/18.0/mgmtsystem_nonconformity_mrp\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_mrp\"><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/management-system&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 is a bridge module between Management System and MRP</p>\n<p>This module contains some new features for Management System modules.</p>\n<p>Nonconformity (NC)</p>\n<ul class=\"simple\">\n<li>Workcenter: add a field to link a specific workcenter. Manage Work\nOrder Operations option has to be checked to show the field.</li>\n</ul>\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=\"#installation\" id=\"toc-entry-1\">Installation</a></li>\n<li><a class=\"reference internal\" href=\"#configuration\" id=\"toc-entry-2\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-3\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#known-issues-roadmap\" id=\"toc-entry-4\">Known issues / Roadmap</a></li>\n<li><a class=\"reference internal\" href=\"#changelog\" id=\"toc-entry-5\">Changelog</a><ul>\n<li><a class=\"reference internal\" href=\"#section-1\" id=\"toc-entry-6\">11.0.1.0.0 (2019-04-01)</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-7\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-8\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-9\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-10\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-11\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"installation\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Installation</a></h1>\n<p>This module will be automatically installed</p>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Configuration</a></h1>\n<p>Workcenter has to be enabled:</p>\n<ul class=\"simple\">\n<li>Go to Settings → Users and select a user.</li>\n<li>Go to Technical Settings and check Manage Work Order Operations</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-3\">Usage</a></h1>\n<p>NC Workcenter</p>\n<ul class=\"simple\">\n<li>Go to Manufacturing → Work Centers → create a new one</li>\n<li>Go to Management System → Nonconformity</li>\n<li>Create new Nonconformity</li>\n<li>Select a Workcenter on the list</li>\n</ul>\n</div>\n<div class=\"section\" id=\"known-issues-roadmap\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-4\">Known issues / Roadmap</a></h1>\n</div>\n<div class=\"section\" id=\"changelog\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-5\">Changelog</a></h1>\n<div class=\"section\" id=\"section-1\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">11.0.1.0.0 (2019-04-01)</a></h2>\n<ul class=\"simple\">\n<li>[INI] Initial development</li>\n</ul>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-7\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_mrp%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-8\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-9\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Associazione PNLUG - Gruppo Odoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-10\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Marcelo Frare &lt;<a class=\"reference external\" href=\"mailto:mf2965&#64;gmail.com\">mf2965&#64;gmail.com</a>&gt;</li>\n<li>Stefano Consolaro &lt;<a class=\"reference external\" href=\"mailto:stefano.consolaro&#64;mymage.it\">stefano.consolaro&#64;mymage.it</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-11\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_mrp\">OCA/management-system</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": "mgmtsystem_nonconformity_mrp/views/mgmtsystem_nonconformity_views.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2019 Marcelo Frare (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     Copyright 2019 Stefano Consolaro (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) -->\n<odoo>\n    <!-- inherit NC form view\n            adding workcenter -->\n    <record id=\"view_mgmtsystem_nonconformity_form\" model=\"ir.ui.view\">\n        <field name=\"name\">view.mgmtsystem.nonconformity.department</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"create_date\" position=\"after\">\n                <field name=\"workcenter_id\" groups=\"mrp.group_mrp_routings\" />\n            </field>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/README.rst",
    "content": "=========================================\nManagement System - Nonconformity Product\n=========================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:8d71773a3dda75b564bc248ba09b5a0ef0955f51b944d3345ce14a37083b3e33\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_product\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_product\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis is a bridge module between Management System and Product\n\nAdd the product_id field to link a specific product.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nNC Product\n\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Product\n\nChangelog\n=========\n\n13.0.1.0.0 (2022-01-01)\n-----------------------\n\n- [INI] Porting to 13.0\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_product%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* Associazione PNLUG - Gruppo Odoo\n\nContributors\n------------\n\n- Marcelo Frare <mf2965@gmail.com>\n- Stefano Consolaro <stefano.consolaro@mymage.it>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_product>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/__manifest__.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n\n{\n    \"name\": \"Management System - Nonconformity Product\",\n    \"summary\": \"Bridge module between Product and Management System.\",\n    \"version\": \"18.0.1.0.0\",\n    \"development_status\": \"Beta\",\n    \"author\": \"Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"product\", \"mgmtsystem_nonconformity\"],\n    \"data\": [\"views/mgmtsystem_nonconformity_views.xml\"],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_product\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 17:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: mgmtsystem_nonconformity_product\n#: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Disconformidad\"\n\n#. module: mgmtsystem_nonconformity_product\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id\nmsgid \"Product\"\nmsgstr \"Producto\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_product\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-05-29 15:34+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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: mgmtsystem_nonconformity_product\n#: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"عدم تطابق\"\n\n#. module: mgmtsystem_nonconformity_product\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id\nmsgid \"Product\"\nmsgstr \"محصول\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_product\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 13.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2019-10-20 11:56+0000\\n\"\n\"PO-Revision-Date: 2024-04-02 11:35+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: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 4.17\\n\"\n\n#. module: mgmtsystem_nonconformity_product\n#: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity_product\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id\nmsgid \"Product\"\nmsgstr \"Prodotto\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/i18n/mgmtsystem_nonconformity_product.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_product\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: mgmtsystem_nonconformity_product\n#: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_product\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id\nmsgid \"Product\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_product\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 13.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2020-07-10 17:19+0000\\n\"\n\"Last-Translator: Fernando Colus <fcolus1@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: pt_BR\\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 3.10\\n\"\n\n#. module: mgmtsystem_nonconformity_product\n#: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Não Conformidade\"\n\n#. module: mgmtsystem_nonconformity_product\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id\nmsgid \"Product\"\nmsgstr \"Produto\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/models/__init__.py",
    "content": "from . import mgmtsystem_nonconformity\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/models/mgmtsystem_nonconformity.py",
    "content": "# Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemNonconformity(models.Model):\n    \"\"\"\n    Extend nonconformity adding fields for product\n    \"\"\"\n\n    _inherit = [\"mgmtsystem.nonconformity\"]\n\n    # new fields\n    # product reference\n    product_id = fields.Many2one(\"product.product\", \"Product\")\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/readme/CONTRIBUTORS.md",
    "content": "- Marcelo Frare \\<<mf2965@gmail.com>\\>\n- Stefano Consolaro \\<<stefano.consolaro@mymage.it>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/readme/DESCRIPTION.md",
    "content": "This is a bridge module between Management System and Product\n\nAdd the product_id field to link a specific product.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/readme/HISTORY.md",
    "content": "## 13.0.1.0.0 (2022-01-01)\n\n- \\[INI\\] Porting to 13.0\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/readme/USAGE.md",
    "content": "NC Product\n\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Product\n"
  },
  {
    "path": "mgmtsystem_nonconformity_product/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>Management System - Nonconformity Product</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=\"management-system-nonconformity-product\">\n<h1 class=\"title\">Management System - Nonconformity Product</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:8d71773a3dda75b564bc248ba09b5a0ef0955f51b944d3345ce14a37083b3e33\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/management-system/tree/18.0/mgmtsystem_nonconformity_product\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_product\"><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/management-system&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 is a bridge module between Management System and Product</p>\n<p>Add the product_id field to link a specific product.</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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#changelog\" id=\"toc-entry-2\">Changelog</a><ul>\n<li><a class=\"reference internal\" href=\"#section-1\" id=\"toc-entry-3\">13.0.1.0.0 (2022-01-01)</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>NC Product</p>\n<ul class=\"simple\">\n<li>Go to Management System → Nonconformity</li>\n<li>Create new Nonconformity</li>\n<li>Select a Product</li>\n</ul>\n</div>\n<div class=\"section\" id=\"changelog\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Changelog</a></h1>\n<div class=\"section\" id=\"section-1\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">13.0.1.0.0 (2022-01-01)</a></h2>\n<ul class=\"simple\">\n<li>[INI] Porting to 13.0</li>\n</ul>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_product%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-5\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Associazione PNLUG - Gruppo Odoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Marcelo Frare &lt;<a class=\"reference external\" href=\"mailto:mf2965&#64;gmail.com\">mf2965&#64;gmail.com</a>&gt;</li>\n<li>Stefano Consolaro &lt;<a class=\"reference external\" href=\"mailto:stefano.consolaro&#64;mymage.it\">stefano.consolaro&#64;mymage.it</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-8\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_product\">OCA/management-system</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": "mgmtsystem_nonconformity_product/views/mgmtsystem_nonconformity_views.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2019 Marcelo Frare (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     Copyright 2019 Stefano Consolaro (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     -->\n<odoo>\n    <!-- inherit NC form view adding product -->\n    <record id=\"view_mgmtsystem_nonconformity_form\" model=\"ir.ui.view\">\n        <field name=\"name\">view.mgmtsystem.nonconformity.product</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"create_date\" position=\"after\">\n                <field name=\"product_id\" />\n            </field>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/README.rst",
    "content": "===============================\nMgmtsystem Nonconformity Repair\n===============================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:84070481ff673f76070fa27b3c4055e61649d9b44804c7935b90ddbc10edf974\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_repair\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_repair\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis is a bridge module between Management System and Repair\n\nThis module contains some new features for Management System modules.\n\nNonconformity (NC)\n\n- Repair Order: add a field to link a specific repair order.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nNC Repair\n\n- Go to Repair → create a new one\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Repair Order on the list\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_repair%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* Escodoo\n\nContributors\n------------\n\n- `Escodoo <https://www.escodoo.com.br>`__:\n\n  - Marcel Savegnago <marcel.savegnago@escodoo.com.br>\n\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_repair>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/__manifest__.py",
    "content": "# Copyright 2020 - TODAY, Escodoo\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Mgmtsystem Nonconformity Repair\",\n    \"summary\": \"\"\"\n        Bridge module between Repair and Non Conformities\"\"\",\n    \"version\": \"18.0.1.0.0\",\n    \"license\": \"AGPL-3\",\n    \"author\": \"Escodoo,Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"depends\": [\n        \"mgmtsystem_nonconformity\",\n        \"repair\",\n    ],\n    \"data\": [\n        \"views/mgmtsystem_nonconformity.xml\",\n    ],\n    \"demo\": [],\n}\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_repair\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 14:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: mgmtsystem_nonconformity_repair\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_repair_order__mgmtsystem_nonconformity_count\nmsgid \"# Non-Conformities\"\nmsgstr \"# No-Conformidades\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_repair_order__mgmtsystem_nonconformity_ids\nmsgid \"Non-Conformities\"\nmsgstr \"No-Conformidades\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model,name:mgmtsystem_nonconformity_repair.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Disconformidad\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model,name:mgmtsystem_nonconformity_repair.model_repair_order\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_mgmtsystem_nonconformity__repair_order_id\nmsgid \"Repair Order\"\nmsgstr \"Orden de reparación\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_repair\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 12.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-03-22 16:29+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 4.14.1\\n\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_repair_order__mgmtsystem_nonconformity_count\nmsgid \"# Non-Conformities\"\nmsgstr \"N° non conformità\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_repair_order__mgmtsystem_nonconformity_ids\nmsgid \"Non-Conformities\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model,name:mgmtsystem_nonconformity_repair.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model,name:mgmtsystem_nonconformity_repair.model_repair_order\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_mgmtsystem_nonconformity__repair_order_id\nmsgid \"Repair Order\"\nmsgstr \"Ordine di riparazione\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/i18n/mgmtsystem_nonconformity_repair.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_repair\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: mgmtsystem_nonconformity_repair\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_repair_order__mgmtsystem_nonconformity_count\nmsgid \"# Non-Conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_repair_order__mgmtsystem_nonconformity_ids\nmsgid \"Non-Conformities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model,name:mgmtsystem_nonconformity_repair.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model,name:mgmtsystem_nonconformity_repair.model_repair_order\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_mgmtsystem_nonconformity__repair_order_id\nmsgid \"Repair Order\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_repair\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 12.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-09-28 16:02+0000\\n\"\n\"PO-Revision-Date: 2020-09-28 13:03-0300\\n\"\n\"Last-Translator: Marcel Savegnago <marcel.savegnago@gmail.com>\\n\"\n\"Language-Team: \\n\"\n\"Language: pt_BR\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n > 1);\\n\"\n\"X-Generator: Poedit 2.4.1\\n\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_repair_order__mgmtsystem_nonconformity_count\nmsgid \"# Non-Conformities\"\nmsgstr \"# Não Conformidades\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_repair_order__mgmtsystem_nonconformity_ids\nmsgid \"Non-Conformities\"\nmsgstr \"Não Conformidades\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model,name:mgmtsystem_nonconformity_repair.model_mgmtsystem_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Não Conformidade\"\n\n#. module: mgmtsystem_nonconformity_repair\n#: model:ir.model,name:mgmtsystem_nonconformity_repair.model_repair_order\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_repair.field_mgmtsystem_nonconformity__repair_order_id\nmsgid \"Repair Order\"\nmsgstr \"Ordem de Reparo\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/models/__init__.py",
    "content": "from . import mgmtsystem_nonconformity\nfrom . import repair_order\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/models/mgmtsystem_nonconformity.py",
    "content": "# Copyright 2020 - TODAY, Marcel Savegnago - Escodoo\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemNonconformity(models.Model):\n    _inherit = \"mgmtsystem.nonconformity\"\n\n    repair_order_id = fields.Many2one(\"repair.order\", \"Repair Order\")\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/models/repair_order.py",
    "content": "# Copyright 2020 - TODAY, Marcel Savegngo - Escodoo\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, fields, models\n\n\nclass RepairOrder(models.Model):\n    _inherit = \"repair.order\"\n\n    mgmtsystem_nonconformity_ids = fields.One2many(\n        \"mgmtsystem.nonconformity\", \"repair_order_id\", string=\"Non-Conformities\"\n    )\n\n    mgmtsystem_nonconformity_count = fields.Integer(\n        compute=\"_compute_mgmtsystem_nonconformity_count\", string=\"# Non-Conformities\"\n    )\n\n    @api.depends(\"mgmtsystem_nonconformity_ids\")\n    def _compute_mgmtsystem_nonconformity_count(self):\n        for rec in self:\n            rec.mgmtsystem_nonconformity_count = len(rec.mgmtsystem_nonconformity_ids)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/readme/CONTRIBUTORS.md",
    "content": "- [Escodoo](https://www.escodoo.com.br):\n  - Marcel Savegnago \\<<marcel.savegnago@escodoo.com.br>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/readme/DESCRIPTION.md",
    "content": "This is a bridge module between Management System and Repair\n\nThis module contains some new features for Management System modules.\n\nNonconformity (NC)\n\n- Repair Order: add a field to link a specific repair order.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/readme/USAGE.md",
    "content": "NC Repair\n\n- Go to Repair → create a new one\n- Go to Management System → Nonconformity\n- Create new Nonconformity\n- Select a Repair Order on the list\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/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>Mgmtsystem Nonconformity Repair</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=\"mgmtsystem-nonconformity-repair\">\n<h1 class=\"title\">Mgmtsystem Nonconformity Repair</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:84070481ff673f76070fa27b3c4055e61649d9b44804c7935b90ddbc10edf974\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/management-system/tree/18.0/mgmtsystem_nonconformity_repair\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_repair\"><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/management-system&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 is a bridge module between Management System and Repair</p>\n<p>This module contains some new features for Management System modules.</p>\n<p>Nonconformity (NC)</p>\n<ul class=\"simple\">\n<li>Repair Order: add a field to link a specific repair order.</li>\n</ul>\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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-6\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>NC Repair</p>\n<ul class=\"simple\">\n<li>Go to Repair → create a new one</li>\n<li>Go to Management System → Nonconformity</li>\n<li>Create new Nonconformity</li>\n<li>Select a Repair Order on the list</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_repair%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-3\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Escodoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h2>\n<ul class=\"simple\">\n<li><a class=\"reference external\" href=\"https://www.escodoo.com.br\">Escodoo</a>:<ul>\n<li>Marcel Savegnago &lt;<a class=\"reference external\" href=\"mailto:marcel.savegnago&#64;escodoo.com.br\">marcel.savegnago&#64;escodoo.com.br</a>&gt;</li>\n</ul>\n</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_repair\">OCA/management-system</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": "mgmtsystem_nonconformity_repair/tests/__init__.py",
    "content": "from . import test_nonconformity_repair\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/tests/test_nonconformity_repair.py",
    "content": "from odoo.tests import common\n\n\nclass TestRepairOrder(common.TransactionCase):\n    def setUp(self):\n        super().setUp()\n\n        self.product = self.env[\"product.product\"].create(\n            {\n                \"name\": \"Product Test\",\n                \"uom_id\": self.env.ref(\"uom.product_uom_unit\").id,\n                \"uom_po_id\": self.env.ref(\"uom.product_uom_unit\").id,\n            }\n        )\n\n        self.location_id = self.env[\"stock.location\"].create(\n            {\n                \"name\": \"Test Location\",\n                \"usage\": \"internal\",\n                \"location_id\": self.env.ref(\"stock.stock_location_stock\").id,\n            }\n        )\n\n        self.repair_order = self.env[\"repair.order\"].create(\n            {\n                \"name\": \"Test Repair Order\",\n                \"product_id\": self.product.id,\n                \"product_uom\": self.product.uom_id.id,\n                \"location_id\": self.location_id.id,\n            }\n        )\n\n        self.user = self.env[\"res.users\"].create(\n            {\n                \"name\": \"Test User\",\n                \"login\": \"testuser\",\n                \"email\": \"testuser@example.com\",\n                \"password\": \"password\",\n            }\n        )\n\n        self.user2 = self.env[\"res.users\"].create(\n            {\n                \"name\": \"Test User2\",\n                \"login\": \"testuser2\",\n                \"email\": \"testuser2@example.com\",\n                \"password\": \"password\",\n            }\n        )\n\n        self.partner = self.env[\"res.partner\"].create({\"name\": \"Test Partner\"})\n\n        self.request1 = self.env[\"mgmtsystem.nonconformity\"].create(\n            {\n                \"name\": \"Request 1\",\n                \"partner_id\": self.partner.id,\n                \"responsible_user_id\": self.user.id,\n                \"manager_user_id\": self.user2.id,\n                \"description\": \"desc1\",\n            }\n        )\n\n        self.request2 = self.env[\"mgmtsystem.nonconformity\"].create(\n            {\n                \"name\": \"Request 2\",\n                \"partner_id\": self.partner.id,\n                \"responsible_user_id\": self.user.id,\n                \"manager_user_id\": self.user2.id,\n                \"description\": \"desc1\",\n            }\n        )\n\n        self.repair_order.mgmtsystem_nonconformity_ids += self.request1\n        self.repair_order.mgmtsystem_nonconformity_ids += self.request2\n\n    def test_compute_mgmtsystem_nonconformity_count(self):\n        self.repair_order._compute_mgmtsystem_nonconformity_count()\n        assert self.repair_order.mgmtsystem_nonconformity_count == 2\n"
  },
  {
    "path": "mgmtsystem_nonconformity_repair/views/mgmtsystem_nonconformity.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2020 - TODAY, Marcel Savegnago - Escodoo\n     License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->\n<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_nonconformity_form_view\">\n        <field\n            name=\"name\"\n        >mgmtsystem.nonconformity.form (in mgmtsystem_nonconformity_repair)</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"system_id\" position=\"after\">\n                <field name=\"repair_order_id\" />\n            </field>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_nonconformity_tree_view\">\n        <field\n            name=\"name\"\n        >mgmtsystem.nonconformity.tree (in mgmtsystem_nonconformity_repair)</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_tree\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <field name=\"system_id\" position=\"after\">\n                <field name=\"repair_order_id\" />\n            </field>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/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======================================\nManagement System - Nonconformity Type\n======================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:b85ace095f45d39abd6c8f3685b3a92a4f22cf6fb1758771ba4ede4016032ffc\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_type\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_type\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module add classification for the Nonconformity of Management\nSystem module.\n\nNonconformity (NC)\n\n- Type: add a field to classify a NC in Internal, Partner, Customer,\n  External.\n\n  - Internal: when the NC is due and revealed in an internal process\n  - Partner: when the NC is due to a Partner\n  - Customer: when the NC si due and connected to a claim of the\n    Customer\n  - External: when the NC si due and connected to a claim of an External\n    entity (e.g. an Authority)\n\n- Add a button to send an email to the Partner associated with the\n  Nonconformity: to do this, mgmtsystem_nonconformity_partner has to be\n  installed and a Partner's Contact of type Quality has to be set\n\n- Quantity checked (qty-ck) and not compliant (qty-nc): a check is\n  performed on the quantity to ensure that qty-nc isn't greater than\n  qty-ck and in case perform an auto-set.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nNC Type\n\n- Go to Management System → Management System → Nonconformities\n- Create new Nonconformity\n- Select a Nonconformity Type: default is Internal\n\nNC Partner Quality E-mail\n\n- Go to Contacts\n- Open a Partner\n- On tab Contacts & Adresses create/select a contact of type Quality\n  Address\n- Go to Management System → Management System → Nonconformity\n- Create a new Nonconformity\n- Click «Send by Email»\n\nKnown issues / Roadmap\n======================\n\n- manage Template Action on statistic analysis\n\nChangelog\n=========\n\n12.0.1.0.0 (2020-07-01)\n-----------------------\n\n- [INI] Initial development\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_type%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* Associazione PNLUG - Gruppo Odoo\n\nContributors\n------------\n\n- Stefano Consolaro <stefano.consolaro@mymage.it>\n- `Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>`__\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_type>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/__manifest__.py",
    "content": "# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n\n{\n    \"name\": \"Management System - Nonconformity Type\",\n    \"summary\": \"Add Nonconformity classification for the root context.\",\n    \"version\": \"18.0.1.1.0\",\n    \"development_status\": \"Beta\",\n    \"author\": \"Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem\", \"mgmtsystem_nonconformity\", \"mgmtsystem_partner\"],\n    \"data\": [\n        \"views/mgmtsystem_nonconformity_views.xml\",\n        \"data/mgmtsystem_nonconformity_mail_data.xml\",\n    ],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/data/mgmtsystem_nonconformity_mail_data.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- email template to sent to partner with nonconformity informations -->\n    <record id=\"email_template_nonconformity\" model=\"mail.template\">\n        <field name=\"name\">Nonconformity</field>\n        <field name=\"email_from\">test@test.it</field>\n        <field name=\"subject\">Nonconformity N° {{object.id}}: {{object.name}}</field>\n        <field name=\"partner_to\">{{object.quality_contact_email}}</field>\n        <field\n            name=\"model_id\"\n            ref=\"mgmtsystem_nonconformity.model_mgmtsystem_nonconformity\"\n        />\n        <field name=\"auto_delete\" eval=\"True\" />\n        <field name=\"lang\">{{object.partner_id.lang}}</field>\n        <field name=\"body_html\" type=\"html\">\n            <div>\n                <p>\n                        Dear <t t-out=\"object.quality_contact_name or ''\" />,<br /><br\n                />\n                        In the attachment, you will find the Nonconformity report:<br />\n                        <strong>Nonconformity N°:</strong> <t\n                    t-out=\"object.id or ''\"\n                /><br />\n                        <strong>Name:</strong> <t t-out=\"object.name or ''\" /><br />\n                        <strong>Description:</strong> <t\n                    t-out=\"object.description or ''\"\n                /><br />\n                        <br />\n                        Best regards,<br />\n                        <t t-if=\"user.signature\">\n                    <t t-out=\"user.signature or ''\" />\n                </t>\n                    </p>\n            </div>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_type\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 14:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: mgmtsystem_nonconformity_type\n#: model:mail.template,body_html:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"\"\n\"<div>\\n\"\n\"                <p>\\n\"\n\"                        Dear <t t-out=\\\"object.quality_contact_name or ''\\\"/\"\n\">,<br/><br/>\\n\"\n\"                        In the attachment, you will find the Nonconformity \"\n\"report:<br/>\\n\"\n\"                        <strong>Nonconformity N°:</strong> <t t-out=\\\"object.\"\n\"id or ''\\\"/><br/>\\n\"\n\"                        <strong>Name:</strong> <t t-out=\\\"object.name or \"\n\"''\\\"/><br/>\\n\"\n\"                        <strong>Description:</strong> <t t-out=\\\"object.\"\n\"description or ''\\\"/><br/>\\n\"\n\"                        <br/>\\n\"\n\"                        Best regards,<br/>\\n\"\n\"                        <t t-if=\\\"user.signature\\\">\\n\"\n\"                    <t t-out=\\\"user.signature or ''\\\"/>\\n\"\n\"                </t>\\n\"\n\"                    </p>\\n\"\n\"            </div>\\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__quality_contact_name\nmsgid \"Contact Name\"\nmsgstr \"Nombre Contacto\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__customer\nmsgid \"Customer\"\nmsgstr \"Cliente\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__quality_contact_email\nmsgid \"Email\"\nmsgstr \"Correo Electrónico\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__external\nmsgid \"External\"\nmsgstr \"Externo\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__internal\nmsgid \"Internal\"\nmsgstr \"Interno\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model,name:mgmtsystem_nonconformity_type.model_mgmtsystem_nonconformity\n#: model:mail.template,name:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Disconformidad\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:mail.template,subject:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"Nonconformity N° {{object.id}}: {{object.name}}\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__qty_checked\nmsgid \"Quantity checked\"\nmsgstr \"Cantidad verificada\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__qty_noncompliant\nmsgid \"Quantity non-compliant\"\nmsgstr \"Cantidad no conformada\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_type.view_mgmtsystem_nonconformity_form\nmsgid \"Send by Email\"\nmsgstr \"Enviar por correo electrónico\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__supplier\nmsgid \"Supplier\"\nmsgstr \"Proveedor\"\n\n#. module: mgmtsystem_nonconformity_type\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py:0\n#: code:addons/mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py:0\nmsgid \"\"\n\"The partner's contacts quality type isn't available.\\n\"\n\" Check if module mgmtsystem_nonconformity_partner is installed.\"\nmsgstr \"\"\n\"El tipo de calidad de los contactos del interlocutor no está disponible.\\n\"\n\" Compruebe si el módulo mgmtsystem_nonconformity_partner está instalado.\"\n\n#. module: mgmtsystem_nonconformity_type\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py:0\n#: code:addons/mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py:0\nmsgid \"\"\n\"The partner's quality contact email is required in order to send the message.\"\nmsgstr \"\"\n\"Para enviar el mensaje, se necesita el correo electrónico de contacto de \"\n\"calidad del socio.\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__nc_type\nmsgid \"Type\"\nmsgstr \"tipo\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"                    <p>Dear ${object.quality_contact_name},<br/><br/>\\n\"\n#~ \"                    in attachment you have the Nonconformity report:<br/\"\n#~ \">\\n\"\n#~ \"                    <strong>Nonconformity N°</strong>: ${object.id}<br/>\\n\"\n#~ \"                    <strong>Name</strong>: ${object.name}<br/>\\n\"\n#~ \"                    <strong>Description</strong>: ${object.description}\"\n#~ \"<br/>\\n\"\n#~ \"                    <br/>\\n\"\n#~ \"                    Best regards<br>\\n\"\n#~ \"                    </p>\\n\"\n#~ \"                      \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"                    <p>Dear ${object.quality_contact_name},<br/><br/>\\n\"\n#~ \"                                              in attachment you have the \"\n#~ \"Nonconformity report:<br/>\\n\"\n#~ \"                                              <strong>Nonconformity N°</\"\n#~ \"strong>: ${object.id}<br/>\\n\"\n#~ \"                                              <strong>Name</strong>: \"\n#~ \"${object.name}<br/>\\n\"\n#~ \"                                              <strong>Description</\"\n#~ \"strong>: ${object.description}<br/>\\n\"\n#~ \"                                              <br/>\\n\"\n#~ \"                                              Best regards<br>\\n\"\n#~ \"                                              </p>\\n\"\n#~ \"                      \\n\"\n#~ \"            \"\n\n#~ msgid \"Nonconformity N° ${object.id}: ${object.name}\"\n#~ msgstr \"Disconformidad N° ${object.id}: ${object.name}\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_type\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-12-01 18:34+0000\\n\"\n\"Last-Translator: yassine-rhimi <yassinrhimi67@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fr\\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: mgmtsystem_nonconformity_type\n#: model:mail.template,body_html:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"\"\n\"<div>\\n\"\n\"                <p>\\n\"\n\"                        Dear <t t-out=\\\"object.quality_contact_name or ''\\\"/\"\n\">,<br/><br/>\\n\"\n\"                        In the attachment, you will find the Nonconformity \"\n\"report:<br/>\\n\"\n\"                        <strong>Nonconformity N°:</strong> <t t-out=\\\"object.\"\n\"id or ''\\\"/><br/>\\n\"\n\"                        <strong>Name:</strong> <t t-out=\\\"object.name or \"\n\"''\\\"/><br/>\\n\"\n\"                        <strong>Description:</strong> <t t-out=\\\"object.\"\n\"description or ''\\\"/><br/>\\n\"\n\"                        <br/>\\n\"\n\"                        Best regards,<br/>\\n\"\n\"                        <t t-if=\\\"user.signature\\\">\\n\"\n\"                    <t t-out=\\\"user.signature or ''\\\"/>\\n\"\n\"                </t>\\n\"\n\"                    </p>\\n\"\n\"            </div>\\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__quality_contact_name\nmsgid \"Contact Name\"\nmsgstr \"Nom du contact\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__customer\nmsgid \"Customer\"\nmsgstr \"Client\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__quality_contact_email\nmsgid \"Email\"\nmsgstr \"email\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__external\nmsgid \"External\"\nmsgstr \"Externe\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__internal\nmsgid \"Internal\"\nmsgstr \"Interne\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model,name:mgmtsystem_nonconformity_type.model_mgmtsystem_nonconformity\n#: model:mail.template,name:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non-conformité\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:mail.template,subject:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"Nonconformity N° {{object.id}}: {{object.name}}\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__qty_checked\nmsgid \"Quantity checked\"\nmsgstr \"Quantité vérifiée\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__qty_noncompliant\nmsgid \"Quantity non-compliant\"\nmsgstr \"Quantité non conforme\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_type.view_mgmtsystem_nonconformity_form\nmsgid \"Send by Email\"\nmsgstr \"Envoyer par email\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__supplier\nmsgid \"Supplier\"\nmsgstr \"Fournisseur\"\n\n#. module: mgmtsystem_nonconformity_type\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py:0\n#: code:addons/mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py:0\nmsgid \"\"\n\"The partner's contacts quality type isn't available.\\n\"\n\" Check if module mgmtsystem_nonconformity_partner is installed.\"\nmsgstr \"\"\n\"Le type de qualité des contacts du partenaire n'est pas disponible.\\n\"\n\" Vérifier si le module mgmtsystem_nonconformity_partner est installé.\"\n\n#. module: mgmtsystem_nonconformity_type\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py:0\n#: code:addons/mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py:0\nmsgid \"\"\n\"The partner's quality contact email is required in order to send the message.\"\nmsgstr \"\"\n\"L'email de contact de qualité du partenaire est nécessaire pour envoyer le \"\n\"message.\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__nc_type\nmsgid \"Type\"\nmsgstr \"\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"                    <p>Dear ${object.quality_contact_name},<br/><br/>\\n\"\n#~ \"                    in attachment you have the Nonconformity report:<br/\"\n#~ \">\\n\"\n#~ \"                    <strong>Nonconformity N°</strong>: ${object.id}<br/>\\n\"\n#~ \"                    <strong>Name</strong>: ${object.name}<br/>\\n\"\n#~ \"                    <strong>Description</strong>: ${object.description}\"\n#~ \"<br/>\\n\"\n#~ \"                    <br/>\\n\"\n#~ \"                    Best regards<br>\\n\"\n#~ \"                    </p>\\n\"\n#~ \"                      \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"                    <p>Cher ${object.quality_contact_name},<br/><br/>\\n\"\n#~ \"                    En pièce jointe, vous trouverez le rapport de non-\"\n#~ \"conformité :<br/>\\n\"\n#~ \"                    <strong>Non-conformité N°</strong> : ${object.id}<br/\"\n#~ \">\\n\"\n#~ \"                   <strong>Nom</strong> : ${object.name}<br/>\\n\"\n#~ \"                   <strong>Description</strong> : ${object.description}\"\n#~ \"<br/>\\n\"\n#~ \"                   <br/>\\n\"\n#~ \"                   Cordialement<br>\\n\"\n#~ \"                    </p>\\n\"\n#~ \"                      \\n\"\n#~ \"            \"\n\n#~ msgid \"Nonconformity N° ${object.id}: ${object.name}\"\n#~ msgstr \"Non-conformité N° ${object.id} : ${object.name}\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_type\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 12.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2020-07-17 09:56+0000\\n\"\n\"PO-Revision-Date: 2025-11-28 11:42+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: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.10.4\\n\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:mail.template,body_html:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"\"\n\"<div>\\n\"\n\"                <p>\\n\"\n\"                        Dear <t t-out=\\\"object.quality_contact_name or ''\\\"/\"\n\">,<br/><br/>\\n\"\n\"                        In the attachment, you will find the Nonconformity \"\n\"report:<br/>\\n\"\n\"                        <strong>Nonconformity N°:</strong> <t t-out=\\\"object.\"\n\"id or ''\\\"/><br/>\\n\"\n\"                        <strong>Name:</strong> <t t-out=\\\"object.name or \"\n\"''\\\"/><br/>\\n\"\n\"                        <strong>Description:</strong> <t t-out=\\\"object.\"\n\"description or ''\\\"/><br/>\\n\"\n\"                        <br/>\\n\"\n\"                        Best regards,<br/>\\n\"\n\"                        <t t-if=\\\"user.signature\\\">\\n\"\n\"                    <t t-out=\\\"user.signature or ''\\\"/>\\n\"\n\"                </t>\\n\"\n\"                    </p>\\n\"\n\"            </div>\\n\"\n\"        \"\nmsgstr \"\"\n\"<div>\\n\"\n\"                <p>\\n\"\n\"                        Egregio <t t-out=\"\n\"\\\"object.quality_contact_name or ''\\\"/>,<br/><br/>\\n\"\n\"                        in allegato trova il resoconto nonconformità:<br/>\\n\"\n\"                        <strong>Nonconformità N°:</strong> <t t-out=\"\n\"\\\"object.id or ''\\\"/><br/>\\n\"\n\"                        <strong>Titolo:</strong> <t t-out=\"\n\"\\\"object.name or ''\\\"/><br/>\\n\"\n\"                        <strong>Descrizione:</strong> <t t-out=\"\n\"\\\"object.description or ''\\\"/><br/>\\n\"\n\"                        <br/>\\n\"\n\"                        Cordiali saluti,<br/>\\n\"\n\"                        <t t-if=\\\"user.signature\\\">\\n\"\n\"                    <t t-out=\\\"user.signature or ''\\\"/>\\n\"\n\"                </t>\\n\"\n\"                    </p>\\n\"\n\"            </div>\\n\"\n\"        \"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__quality_contact_name\nmsgid \"Contact Name\"\nmsgstr \"Nome contatto\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__customer\nmsgid \"Customer\"\nmsgstr \"Cliente\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__quality_contact_email\nmsgid \"Email\"\nmsgstr \"E-mail\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__external\nmsgid \"External\"\nmsgstr \"Esterna\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__internal\nmsgid \"Internal\"\nmsgstr \"Interna\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model,name:mgmtsystem_nonconformity_type.model_mgmtsystem_nonconformity\n#: model:mail.template,name:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:mail.template,subject:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"Nonconformity N° {{object.id}}: {{object.name}}\"\nmsgstr \"Nonconformità N° {{object.id}}: {{object.name}}\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__qty_checked\nmsgid \"Quantity checked\"\nmsgstr \"Quantità controllata\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__qty_noncompliant\nmsgid \"Quantity non-compliant\"\nmsgstr \"Quantità non conforme\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_type.view_mgmtsystem_nonconformity_form\nmsgid \"Send by Email\"\nmsgstr \"Invia per e-mail\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__supplier\nmsgid \"Supplier\"\nmsgstr \"Fornitore\"\n\n#. module: mgmtsystem_nonconformity_type\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py:0\n#: code:addons/mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py:0\nmsgid \"\"\n\"The partner's contacts quality type isn't available.\\n\"\n\" Check if module mgmtsystem_nonconformity_partner is installed.\"\nmsgstr \"\"\n\"Il riferimento e-mail del fornitore non è disponibile.\\n\"\n\"Verificare che il modulo mgmtsystem_nonconformity_partner sia installato.\"\n\n#. module: mgmtsystem_nonconformity_type\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py:0\n#: code:addons/mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py:0\nmsgid \"\"\n\"The partner's quality contact email is required in order to send the message.\"\nmsgstr \"\"\n\"Per inviare l'e-mail bisogna compilare il riferimento qualità \"\n\"nell'anagrafica fornitore.\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__nc_type\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"                    <p>Dear ${object.quality_contact_name},<br/><br/>\\n\"\n#~ \"                    in attachment you have the Nonconformity report:<br/\"\n#~ \">\\n\"\n#~ \"                    <strong>Nonconformity N°</strong>: ${object.id}<br/>\\n\"\n#~ \"                    <strong>Name</strong>: ${object.name}<br/>\\n\"\n#~ \"                    <strong>Description</strong>: ${object.description}\"\n#~ \"<br/>\\n\"\n#~ \"                    <br/>\\n\"\n#~ \"                    Best regards<br>\\n\"\n#~ \"                    </p>\\n\"\n#~ \"                      \\n\"\n#~ \"            \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"                \\n\"\n#~ \"                    <p>Spettabile ${object.quality_contact_name},<br/><br/\"\n#~ \">\\n\"\n#~ \"                    inviamo in allegato il verbale di non conformità:<br/\"\n#~ \">\\n\"\n#~ \"                    <strong>Non conformità N°</strong>: ${object.id}<br/\"\n#~ \">\\n\"\n#~ \"                    <strong>Titolo</strong>: ${object.name}<br/>\\n\"\n#~ \"                    <strong>Descrizione</strong>: ${object.description}\"\n#~ \"<br/>\\n\"\n#~ \"                    <br/>\\n\"\n#~ \"                    Distinti saluti<br>\\n\"\n#~ \"                    </p>\\n\"\n#~ \"                      \\n\"\n#~ \"            \"\n\n#~ msgid \"Nonconformity N° ${object.id}: ${object.name}\"\n#~ msgstr \"Non conformità N° ${object.id}: ${object.name}\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/i18n/mgmtsystem_nonconformity_type.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_nonconformity_type\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: mgmtsystem_nonconformity_type\n#: model:mail.template,body_html:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"\"\n\"<div>\\n\"\n\"                <p>\\n\"\n\"                        Dear <t t-out=\\\"object.quality_contact_name or ''\\\"/>,<br/><br/>\\n\"\n\"                        In the attachment, you will find the Nonconformity report:<br/>\\n\"\n\"                        <strong>Nonconformity N°:</strong> <t t-out=\\\"object.id or ''\\\"/><br/>\\n\"\n\"                        <strong>Name:</strong> <t t-out=\\\"object.name or ''\\\"/><br/>\\n\"\n\"                        <strong>Description:</strong> <t t-out=\\\"object.description or ''\\\"/><br/>\\n\"\n\"                        <br/>\\n\"\n\"                        Best regards,<br/>\\n\"\n\"                        <t t-if=\\\"user.signature\\\">\\n\"\n\"                    <t t-out=\\\"user.signature or ''\\\"/>\\n\"\n\"                </t>\\n\"\n\"                    </p>\\n\"\n\"            </div>\\n\"\n\"        \"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__quality_contact_name\nmsgid \"Contact Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__customer\nmsgid \"Customer\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__quality_contact_email\nmsgid \"Email\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__external\nmsgid \"External\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__internal\nmsgid \"Internal\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model,name:mgmtsystem_nonconformity_type.model_mgmtsystem_nonconformity\n#: model:mail.template,name:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:mail.template,subject:mgmtsystem_nonconformity_type.email_template_nonconformity\nmsgid \"Nonconformity N° {{object.id}}: {{object.name}}\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__qty_checked\nmsgid \"Quantity checked\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__qty_noncompliant\nmsgid \"Quantity non-compliant\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_nonconformity_type.view_mgmtsystem_nonconformity_form\nmsgid \"Send by Email\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields.selection,name:mgmtsystem_nonconformity_type.selection__mgmtsystem_nonconformity__nc_type__supplier\nmsgid \"Supplier\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py:0\n#: code:addons/mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py:0\nmsgid \"\"\n\"The partner's contacts quality type isn't available.\\n\"\n\" Check if module mgmtsystem_nonconformity_partner is installed.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#. odoo-python\n#: code:addons/mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py:0\n#: code:addons/mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py:0\nmsgid \"\"\n\"The partner's quality contact email is required in order to send the \"\n\"message.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_nonconformity_type\n#: model:ir.model.fields,field_description:mgmtsystem_nonconformity_type.field_mgmtsystem_nonconformity__nc_type\nmsgid \"Type\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/models/__init__.py",
    "content": "from . import mgmtsystem_nonconformity\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/models/mgmtsystem_nonconformity.py",
    "content": "# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n\nfrom odoo import _, api, fields, models\n\n\nclass MgmtsystemNonconformity(models.Model):\n    \"\"\"\n    Extend nonconformity adding fields for type,\n    quantity checked and quantity non compliant,\n    adding method to send email\n    \"\"\"\n\n    _inherit = [\"mgmtsystem.nonconformity\"]\n\n    # new fields\n    # nonconformity type\n    nc_type = fields.Selection(\n        [\n            (\"internal\", \"Internal\"),\n            (\"supplier\", \"Supplier\"),\n            (\"customer\", \"Customer\"),\n            (\"external\", \"External\"),\n        ],\n        \"Type\",\n        default=\"internal\",\n    )\n    # quantity checked to reveal the nonconformity [qty-ck]\n    qty_checked = fields.Float(\"Quantity checked\")\n    # quantity found to be non-compliant with the inspection [qty-nc]\n    qty_noncompliant = fields.Float(\"Quantity non-compliant\")\n    # utility name of quality contact\n    quality_contact_name = fields.Char(\"Contact Name\")\n    # utility e-mail of quality contact\n    quality_contact_email = fields.Char(\"Email\")\n\n    # define constraints for quantities\n\n    @api.onchange(\"qty_noncompliant\")\n    def _onchange_qty_noncompliant(self):\n        \"\"\"\n        set qty checked equal to qty non compliant if it is lower\n        (qty-ck can not be lower to qty-nc)\n        \"\"\"\n        if self.qty_noncompliant > self.qty_checked:\n            self.qty_checked = self.qty_noncompliant\n\n    @api.onchange(\"qty_checked\")\n    def _onchange_qty_checked(self):\n        \"\"\"\n        set qty non compliant equal to qty checked if it is higher\n        qty-nc can not be greater to qty-ck\n        \"\"\"\n        if self.qty_checked < self.qty_noncompliant:\n            self.qty_noncompliant = self.qty_checked\n\n    # new method\n    def action_nc_sent(self, test_module=False):\n        \"\"\"\n        send document to partner email\n        if address not exists raises an error message\n        todo: use a better way to test module availability\n        \"\"\"\n        if (\n            \"quality\" not in self.env[\"res.partner\"]._fields[\"type\"].get_values([])\n            or test_module\n        ):\n            # raise an error for module not installed\n            message = _(\n                \"The partner's contacts quality type isn't available.\\n \"\n                \"Check if module mgmtsystem_nonconformity_partner is installed.\"\n            )\n            raise models.ValidationError(message)\n\n        # get first contact of type quality\n        contact_quality = self.partner_id[\"child_ids\"].search(\n            [(\"parent_id\", \"=\", self.partner_id.id), (\"type\", \"=\", \"quality\")], limit=1\n        )\n\n        if contact_quality[\"email\"]:\n            self.quality_contact_name = contact_quality[\"name\"]\n            self.quality_contact_email = contact_quality[\"email\"]\n            # find the e-mail template\n            report_tmplt = self.env.ref(\n                \"mgmtsystem_nonconformity_type.email_template_nonconformity\"\n            )\n\n            # send out the e-mail template to the partner\n            self.env[\"mail.template\"].browse(report_tmplt.id).send_mail(self.id)\n\n        else:\n            # raise an error for field not compiled\n            raise models.ValidationError(\n                _(\n                    \"The partner's quality contact email \"\n                    \"is required in order to send the message.\"\n                )\n            )\n\n        return True\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/readme/CONTRIBUTORS.md",
    "content": "- Stefano Consolaro \\<<stefano.consolaro@mymage.it>\\>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/readme/DESCRIPTION.md",
    "content": "This module add classification for the Nonconformity of Management\nSystem module.\n\nNonconformity (NC)\n\n- Type: add a field to classify a NC in Internal, Partner, Customer, External.\n  - Internal: when the NC is due and revealed in an internal process\n  - Partner: when the NC is due to a Partner\n  - Customer: when the NC si due and connected to a claim of the\n    Customer\n  - External: when the NC si due and connected to a claim of an External\n    entity (e.g. an Authority)\n\n- Add a button to send an email to the Partner associated with the Nonconformity:\n  to do this, mgmtsystem_nonconformity_partner has to be installed and\n  a Partner's Contact of type Quality has to be set\n\n- Quantity checked (qty-ck) and not compliant (qty-nc): a check is\n  performed on the quantity to ensure that qty-nc isn't greater than\n  qty-ck and in case perform an auto-set.\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/readme/HISTORY.md",
    "content": "## 12.0.1.0.0 (2020-07-01)\n\n- \\[INI\\] Initial development\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/readme/ROADMAP.md",
    "content": "- manage Template Action on statistic analysis\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/readme/USAGE.md",
    "content": "NC Type\n\n- Go to Management System → Management System → Nonconformities\n- Create new Nonconformity\n- Select a Nonconformity Type: default is Internal\n\nNC Partner Quality E-mail\n\n- Go to Contacts\n- Open a Partner\n- On tab Contacts & Adresses create/select a contact of type Quality\n  Address\n- Go to Management System → Management System → Nonconformity\n- Create a new Nonconformity\n- Click «Send by Email»\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/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=\"management-system-nonconformity-type\">\n<h1>Management System - Nonconformity Type</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:b85ace095f45d39abd6c8f3685b3a92a4f22cf6fb1758771ba4ede4016032ffc\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/management-system/tree/18.0/mgmtsystem_nonconformity_type\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_nonconformity_type\"><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/management-system&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 add classification for the Nonconformity of Management\nSystem module.</p>\n<p>Nonconformity (NC)</p>\n<ul class=\"simple\">\n<li>Type: add a field to classify a NC in Internal, Partner, Customer,\nExternal.<ul>\n<li>Internal: when the NC is due and revealed in an internal process</li>\n<li>Partner: when the NC is due to a Partner</li>\n<li>Customer: when the NC si due and connected to a claim of the\nCustomer</li>\n<li>External: when the NC si due and connected to a claim of an External\nentity (e.g. an Authority)</li>\n</ul>\n</li>\n<li>Add a button to send an email to the Partner associated with the\nNonconformity: to do this, mgmtsystem_nonconformity_partner has to be\ninstalled and a Partner’s Contact of type Quality has to be set</li>\n<li>Quantity checked (qty-ck) and not compliant (qty-nc): a check is\nperformed on the quantity to ensure that qty-nc isn’t greater than\nqty-ck and in case perform an auto-set.</li>\n</ul>\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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#known-issues-roadmap\" id=\"toc-entry-2\">Known issues / Roadmap</a></li>\n<li><a class=\"reference internal\" href=\"#changelog\" id=\"toc-entry-3\">Changelog</a><ul>\n<li><a class=\"reference internal\" href=\"#section-1\" id=\"toc-entry-4\">12.0.1.0.0 (2020-07-01)</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-5\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-6\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-7\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-8\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-9\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h2>\n<p>NC Type</p>\n<ul class=\"simple\">\n<li>Go to Management System → Management System → Nonconformities</li>\n<li>Create new Nonconformity</li>\n<li>Select a Nonconformity Type: default is Internal</li>\n</ul>\n<p>NC Partner Quality E-mail</p>\n<ul class=\"simple\">\n<li>Go to Contacts</li>\n<li>Open a Partner</li>\n<li>On tab Contacts &amp; Adresses create/select a contact of type Quality\nAddress</li>\n<li>Go to Management System → Management System → Nonconformity</li>\n<li>Create a new Nonconformity</li>\n<li>Click «Send by Email»</li>\n</ul>\n</div>\n<div class=\"section\" id=\"known-issues-roadmap\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Known issues / Roadmap</a></h2>\n<ul class=\"simple\">\n<li>manage Template Action on statistic analysis</li>\n</ul>\n</div>\n<div class=\"section\" id=\"changelog\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Changelog</a></h2>\n<div class=\"section\" id=\"section-1\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">12.0.1.0.0 (2020-07-01)</a></h3>\n<ul class=\"simple\">\n<li>[INI] Initial development</li>\n</ul>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-5\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_nonconformity_type%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-6\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Associazione PNLUG - Gruppo Odoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-8\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Stefano Consolaro &lt;<a class=\"reference external\" href=\"mailto:stefano.consolaro&#64;mymage.it\">stefano.consolaro&#64;mymage.it</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.heliconia.io\">Heliconia Solutions Pvt. Ltd.</a></li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-9\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_nonconformity_type\">OCA/management-system</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": "mgmtsystem_nonconformity_type/tests/__init__.py",
    "content": "from . import test_nonconformity_type\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/tests/test_nonconformity_type.py",
    "content": "from odoo import _\nfrom odoo.exceptions import ValidationError\nfrom odoo.tests.common import TransactionCase\n\n\nclass TestModelNonConformity(TransactionCase):\n    def setUp(self):\n        \"\"\"\n        Sets some enviroment\n        \"\"\"\n        super().setUp()\n\n        self.nc_model = self.env[\"mgmtsystem.nonconformity\"]\n        self.partner_model = self.env[\"res.partner\"]\n\n        self.nc = self.nc_model.search([])[0]\n        self.partner = self.partner_model.search([(\"child_ids\", \"!=\", False)])[0]\n\n        self.nc[\"partner_id\"] = self.partner\n        self.nc[\"qty_checked\"] = 100\n        self.nc[\"qty_noncompliant\"] = 50\n\n    def test_nc(self):\n        \"\"\"\n        Test NC changes\n        \"\"\"\n        self.nc[\"qty_noncompliant\"] = 150\n        self.nc._onchange_qty_noncompliant()\n        self.assertEqual(self.nc[\"qty_noncompliant\"] == self.nc[\"qty_checked\"], True)\n        self.nc[\"qty_noncompliant\"] = 50\n        self.nc._onchange_qty_noncompliant()\n        self.assertEqual(self.nc[\"qty_checked\"] == 150, True)\n\n        self.nc[\"qty_noncompliant\"] = 150\n        self.nc[\"qty_checked\"] = 50\n        self.nc._onchange_qty_checked()\n        self.assertEqual(self.nc[\"qty_noncompliant\"] == self.nc[\"qty_checked\"], True)\n        self.nc[\"qty_checked\"] = 200\n        self.nc._onchange_qty_checked()\n        self.assertEqual(self.nc[\"qty_noncompliant\"] == 50, True)\n\n    def test_nc_email(self):\n        \"\"\"\n        Test NC partner email\n        \"\"\"\n        partner = self.nc.partner_id\n        partner_child = partner[\"child_ids\"][0]\n        partner_child.type = \"quality\"\n        partner_child.email = \"quality@example.com\"\n        self.nc.partner_id = partner.id\n        self.assertEqual(True, self.nc.action_nc_sent())\n\n        test_module = True\n        with self.assertRaises(ValidationError) as e:\n            self.assertEqual(True, self.nc.action_nc_sent(test_module))\n        self.assertIn(\n            _(\n                \"The partner's contacts quality type isn't available.\\n \"\n                \"Check if module mgmtsystem_nonconformity_partner is installed.\"\n            ),\n            str(e.exception),\n        )\n\n        partner_child.type = \"quality\"\n        partner_child.email = \"\"\n        with self.assertRaises(ValidationError) as e:\n            self.assertEqual(True, self.nc.action_nc_sent())\n        self.assertIn(\n            _(\n                \"The partner's quality contact email \"\n                \"is required in order to send the message.\"\n            ),\n            str(e.exception),\n        )\n"
  },
  {
    "path": "mgmtsystem_nonconformity_type/views/mgmtsystem_nonconformity_views.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- Copyright 2019 Stefano Consolaro (Associazione PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n     License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) -->\n<odoo>\n    <!-- inherit NC form view\n            adding button to email nonconformity form\n            adding type and quantities -->\n    <record id=\"view_mgmtsystem_nonconformity_form\" model=\"ir.ui.view\">\n        <field name=\"name\">view.mgmtsystem.nonconformity.department</field>\n        <field name=\"model\">mgmtsystem.nonconformity</field>\n        <field\n            name=\"inherit_id\"\n            ref=\"mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form\"\n        />\n        <field name=\"arch\" type=\"xml\">\n            <header>\n                <button\n                    name=\"action_nc_sent\"\n                    type=\"object\"\n                    string=\"Send by Email\"\n                    class=\"oe_highlight\"\n                    groups=\"base.group_user\"\n                />\n            </header>\n\n            <field name=\"create_date\" position=\"after\">\n                <field name=\"nc_type\" />\n            </field>\n            <field name=\"partner_id\" position=\"after\">\n                <field name=\"qty_checked\" style=\"text-align: right; width: 6em\" />\n                <field name=\"qty_noncompliant\" style=\"text-align: right; width: 6em\" />\n            </field>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_objective/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====================\nMgmtsystem Objective\n====================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:6c7cad3495b0cc5139b67d7338c6bf11480c0d1c8ee5b6d10cec230c50fd39a7\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_objective\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_objective\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module allows to define objectives in the Management system for\nfuture tracking.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nKnown issues / Roadmap\n======================\n\nThe computation of the values is done manually by now.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_objective%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 Tobella\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_objective>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_objective/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_objective/__manifest__.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Mgmtsystem Objective\",\n    \"summary\": \"\"\"Define objectives on your management system\"\"\",\n    \"version\": \"18.0.1.0.1\",\n    \"license\": \"AGPL-3\",\n    \"author\": \"Dixmit,Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"depends\": [\"mgmtsystem\", \"mail\", \"uom\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"security/security.xml\",\n        \"views/mgmtsystem_indicator_value.xml\",\n        \"views/mgmtsystem_indicator.xml\",\n        \"views/mgmtsystem_objective.xml\",\n    ],\n    \"demo\": [\n        \"demo/mgmtsystem_objective.xml\",\n    ],\n    \"assets\": {\n        \"web.assets_backend\": [\n            \"mgmtsystem_objective/static/src/**/*.esm.js\",\n        ],\n        \"web.assets_unit_tests\": [\n            \"mgmtsystem_objective/static/tests/**/*.test.js\",\n        ],\n    },\n}\n"
  },
  {
    "path": "mgmtsystem_objective/demo/mgmtsystem_objective.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 noupdate=\"1\">\n    <!-- TODO\n    <record model=\"mgmtsystem.objective\" id=\"mgmtsystem_objective_demo_1\">\n       <field name=\"name\">...</field>\n    </record>\n    -->\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_objective/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_objective\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 18.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2026-03-17 11:45+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.15.2\\n\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__value_state__above_target\nmsgid \"Above Target\"\nmsgstr \"Oltre l'obiettivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_needaction\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Azione richiesta\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__state__active\nmsgid \"Active\"\nmsgstr \"Attivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_ids\nmsgid \"Activities\"\nmsgstr \"Attività\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_exception_decoration\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decorazione eccezione attività\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_state\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_state\nmsgid \"Activity State\"\nmsgstr \"Stato attività\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_type_icon\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icona tipo attività\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_attachment_count\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Conteggio allegati\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__value_state__below_target\nmsgid \"Below Target\"\nmsgstr \"Inferiore all'obiettivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__state__cancelled\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__cancelled\nmsgid \"Cancelled\"\nmsgstr \"Annullato\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__comment\nmsgid \"Comment\"\nmsgstr \"Commento\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__date_end\nmsgid \"Date End\"\nmsgstr \"Data fine\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__date_start\nmsgid \"Date Start\"\nmsgstr \"Data inizio\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__description\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__description\nmsgid \"Description\"\nmsgstr \"Descrizione\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__state__draft\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__state__draft\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__draft\nmsgid \"Draft\"\nmsgstr \"Bozza\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_follower_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguito da\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_partner_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguito da (partner)\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__activity_type_icon\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Icona Font Awesome es. fa-tasks\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__frequency\nmsgid \"Frequency\"\nmsgstr \"Frequenza\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__has_max_target\nmsgid \"Has Maximum Target\"\nmsgstr \"Ha obiettivo massimo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__has_message\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__has_message\nmsgid \"Has Message\"\nmsgstr \"Ha un messaggio\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__has_min_target\nmsgid \"Has Minimum Target\"\nmsgstr \"Ha obiettivo minimo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_exception_icon\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icona\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__activity_exception_icon\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Icona per indicare un'attività eccezione.\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_needaction\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se selezionata, nuovi messaggi richiedono attenzione.\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_sms_error\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se selezionata, alcuni messaggi hanno un errore di consegna.\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__in_progress\nmsgid \"In Progress\"\nmsgstr \"In corso\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__state__inactive\nmsgid \"Inactive\"\nmsgstr \"Inattivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model,name:mgmtsystem_objective.model_mgmtsystem_indicator\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__indicator_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__indicator_ids\nmsgid \"Indicator\"\nmsgstr \"Indicatore\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model,name:mgmtsystem_objective.model_mgmtsystem_indicator_value\nmsgid \"Indicator Value\"\nmsgstr \"Valore indicatore\"\n\n#. module: mgmtsystem_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_objective_form_view\nmsgid \"Indicators\"\nmsgstr \"Indicatori\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_is_follower\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Segue\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__max_target_value\nmsgid \"Max Target Value\"\nmsgstr \"Valore massimo obiettivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_error\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Errore di consegna messaggio\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_ids\nmsgid \"Messages\"\nmsgstr \"Messaggi\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__min_target_value\nmsgid \"Min Target Value\"\nmsgstr \"Valore minimo obiettivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__monthly\nmsgid \"Monthly\"\nmsgstr \"Mensile\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__my_activity_date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Scadenza mia attività\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__name\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_calendar_event_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Evento calendario attività successiva\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Scadenza prossima attività\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_summary\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Riepilogo prossima attività\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo prossima attività\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__value_state__no_target\nmsgid \"No Target\"\nmsgstr \"Nessun obiettivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__not_reached\nmsgid \"Not Reached\"\nmsgstr \"Non raggiunto\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_needaction_counter\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Numero di azioni\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_error_counter\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Numero di errori\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_needaction_counter\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Numero di messaggi che richiedono un'azione\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_error_counter\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Numero di messaggi con errore di consegna\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model,name:mgmtsystem_objective.model_mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__objective_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__objective_id\nmsgid \"Objective\"\nmsgstr \"Obiettivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.actions.act_window,name:mgmtsystem_objective.mgmtsystem_objective_act_window\n#: model:ir.ui.menu,name:mgmtsystem_objective.mgmtsystem_objective_menu\nmsgid \"Objectives\"\nmsgstr \"Obiettivi\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__value_state__on_target\nmsgid \"On Target\"\nmsgstr \"Sull'obiettivo\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__value_state\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__value_state\nmsgid \"On Target?\"\nmsgstr \"Sull'obiettivo?\"\n\n#. module: mgmtsystem_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_indicator_tree_view\nmsgid \"Open\"\nmsgstr \"Apri\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__user_id\nmsgid \"Owner\"\nmsgstr \"Proprietario\"\n\n#. module: mgmtsystem_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_indicator_value_tree_view\nmsgid \"Post\"\nmsgstr \"Registra\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__state__posted\nmsgid \"Posted\"\nmsgstr \"Registrato\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__quarterly\nmsgid \"Quarterly\"\nmsgstr \"Trimestrale\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__reached\nmsgid \"Reached\"\nmsgstr \"Raggiunto\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Utente responsabile\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_sms_error\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Errore consegna SMS\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__semester\nmsgid \"Semester\"\nmsgstr \"Semestre\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__state\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__state\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__state\nmsgid \"State\"\nmsgstr \"Stato\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__activity_state\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Stato in base alle attività\\n\"\n\"Scaduto: la data richiesta è trascorsa\\n\"\n\"Oggi: la data attività è oggi\\n\"\n\"Pianificato: attività future.\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__activity_exception_decoration\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo di attività eccezione sul record.\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__uom_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__uom_id\nmsgid \"Unit of Measure\"\nmsgstr \"Unità di misura\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__value_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__value\nmsgid \"Value\"\nmsgstr \"Valore\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__value\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_indicator_form_view\nmsgid \"Values\"\nmsgstr \"Valori\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__website_message_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Messaggi sito web\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__website_message_ids\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Cronologia comunicazioni sito web\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__weekly\nmsgid \"Weekly\"\nmsgstr \"Settimanale\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__yearly\nmsgid \"Yearly\"\nmsgstr \"Annuale\"\n\n#. module: mgmtsystem_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_indicator_tree_view\nmsgid \"open\"\nmsgstr \"apri\"\n"
  },
  {
    "path": "mgmtsystem_objective/i18n/mgmtsystem_objective.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_objective\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: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__value_state__above_target\nmsgid \"Above Target\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_needaction\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__state__active\nmsgid \"Active\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_exception_decoration\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_state\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_type_icon\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_attachment_count\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__value_state__below_target\nmsgid \"Below Target\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__state__cancelled\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__cancelled\nmsgid \"Cancelled\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__comment\nmsgid \"Comment\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__date_end\nmsgid \"Date End\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__date_start\nmsgid \"Date Start\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__description\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__description\nmsgid \"Description\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__state__draft\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__state__draft\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__draft\nmsgid \"Draft\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_follower_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_partner_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__activity_type_icon\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__frequency\nmsgid \"Frequency\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__has_max_target\nmsgid \"Has Maximum Target\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__has_message\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__has_min_target\nmsgid \"Has Minimum Target\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_exception_icon\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__activity_exception_icon\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_needaction\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_sms_error\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__in_progress\nmsgid \"In Progress\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__state__inactive\nmsgid \"Inactive\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model,name:mgmtsystem_objective.model_mgmtsystem_indicator\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__indicator_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__indicator_ids\nmsgid \"Indicator\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model,name:mgmtsystem_objective.model_mgmtsystem_indicator_value\nmsgid \"Indicator Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_objective_form_view\nmsgid \"Indicators\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_is_follower\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__max_target_value\nmsgid \"Max Target Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_error\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__min_target_value\nmsgid \"Min Target Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__monthly\nmsgid \"Monthly\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__my_activity_date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__name\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_calendar_event_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_date_deadline\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_summary\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_type_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__value_state__no_target\nmsgid \"No Target\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__not_reached\nmsgid \"Not Reached\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_needaction_counter\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_error_counter\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_needaction_counter\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_error_counter\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model,name:mgmtsystem_objective.model_mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__objective_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__objective_id\nmsgid \"Objective\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.actions.act_window,name:mgmtsystem_objective.mgmtsystem_objective_act_window\n#: model:ir.ui.menu,name:mgmtsystem_objective.mgmtsystem_objective_menu\nmsgid \"Objectives\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__value_state__on_target\nmsgid \"On Target\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__value_state\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__value_state\nmsgid \"On Target?\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_indicator_tree_view\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__user_id\nmsgid \"Owner\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_indicator_value_tree_view\nmsgid \"Post\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator_value__state__posted\nmsgid \"Posted\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__quarterly\nmsgid \"Quarterly\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_objective__state__reached\nmsgid \"Reached\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__activity_user_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__message_has_sms_error\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__semester\nmsgid \"Semester\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__state\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__state\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__activity_state\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__activity_exception_decoration\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__uom_id\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__uom_id\nmsgid \"Unit of Measure\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__value_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator_value__value\nmsgid \"Value\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__value\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_indicator_form_view\nmsgid \"Values\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_indicator__website_message_ids\n#: model:ir.model.fields,field_description:mgmtsystem_objective.field_mgmtsystem_objective__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_indicator__website_message_ids\n#: model:ir.model.fields,help:mgmtsystem_objective.field_mgmtsystem_objective__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__weekly\nmsgid \"Weekly\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model:ir.model.fields.selection,name:mgmtsystem_objective.selection__mgmtsystem_indicator__frequency__yearly\nmsgid \"Yearly\"\nmsgstr \"\"\n\n#. module: mgmtsystem_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_objective.mgmtsystem_indicator_tree_view\nmsgid \"open\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_objective/models/__init__.py",
    "content": "from . import mgmtsystem_objective\nfrom . import mgmtsystem_indicator\nfrom . import mgmtsystem_indicator_value\n"
  },
  {
    "path": "mgmtsystem_objective/models/mgmtsystem_indicator.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\n\n\nclass MgmtsystemIndicator(models.Model):\n    _name = \"mgmtsystem.indicator\"\n    _description = \"Indicator\"\n    _inherit = [\"mail.thread\", \"mail.activity.mixin\"]\n\n    name = fields.Char(required=True)\n    objective_id = fields.Many2one(\"mgmtsystem.objective\", required=True)\n    description = fields.Html()\n    frequency = fields.Selection(\n        [\n            (\"weekly\", \"Weekly\"),\n            (\"monthly\", \"Monthly\"),\n            (\"quarterly\", \"Quarterly\"),\n            (\"semester\", \"Semester\"),\n            (\"yearly\", \"Yearly\"),\n        ],\n        default=\"yearly\",\n        required=True,\n    )\n    state = fields.Selection(\n        [\n            (\"draft\", \"Draft\"),\n            (\"active\", \"Active\"),\n            (\"inactive\", \"Inactive\"),\n            (\"cancelled\", \"Cancelled\"),\n        ],\n        default=\"draft\",\n        required=True,\n    )\n    value_ids = fields.One2many(\"mgmtsystem.indicator.value\", \"indicator_id\")\n    has_min_target = fields.Boolean(string=\"Has Minimum Target\")\n    min_target_value = fields.Float()\n    has_max_target = fields.Boolean(string=\"Has Maximum Target\")\n    max_target_value = fields.Float()\n    value = fields.Float(compute=\"_compute_value\", store=True, string=\"Values\")\n    uom_id = fields.Many2one(\"uom.uom\", string=\"Unit of Measure\")\n    value_state = fields.Selection(\n        selection=lambda r: r.env[\"mgmtsystem.indicator.value\"]\n        ._fields[\"value_state\"]\n        .selection,\n        compute=\"_compute_value\",\n        string=\"On Target?\",\n        store=True,\n    )\n\n    @api.depends(\"value_ids.value\", \"value_ids.state\", \"value_ids\")\n    def _compute_value(self):\n        for record in self:\n            posted_values = record.value_ids.filtered(\n                lambda r: r.state == \"posted\"\n            ).sorted(key=lambda r: r.date, reverse=True)[:1]\n            record.value_state = (\n                posted_values.value_state if posted_values else \"no_target\"\n            )\n            record.value = posted_values and posted_values.value or 0.0\n"
  },
  {
    "path": "mgmtsystem_objective/models/mgmtsystem_indicator_value.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\n\n\nclass MgmtsystemIndicatorValue(models.Model):\n    _name = \"mgmtsystem.indicator.value\"\n    _description = \"Indicator Value\"\n    _order = \"date desc\"\n\n    indicator_id = fields.Many2one(\"mgmtsystem.indicator\", required=True)\n    objective_id = fields.Many2one(related=\"indicator_id.objective_id\")\n    date = fields.Date(required=True)\n    value = fields.Float(required=True)\n    uom_id = fields.Many2one(related=\"indicator_id.uom_id\")\n    comment = fields.Text()\n    state = fields.Selection(\n        [\n            (\"draft\", \"Draft\"),\n            (\"posted\", \"Posted\"),\n        ],\n        default=\"draft\",\n        readonly=True,\n    )\n    value_state = fields.Selection(\n        [\n            (\"on_target\", \"On Target\"),\n            (\"below_target\", \"Below Target\"),\n            (\"above_target\", \"Above Target\"),\n            (\"no_target\", \"No Target\"),\n        ],\n        compute=\"_compute_value_state\",\n        string=\"On Target?\",\n        store=True,\n    )\n\n    @api.depends(\"value\", \"indicator_id\")\n    def _compute_value_state(self):\n        for record in self:\n            if (\n                not record.indicator_id.has_max_target\n                and not record.indicator_id.has_min_target\n            ):\n                record.value_state = \"no_target\"\n            elif (\n                record.indicator_id.has_min_target\n                and record.value < record.indicator_id.min_target_value\n            ):\n                record.value_state = \"below_target\"\n            elif (\n                record.indicator_id.has_max_target\n                and record.value > record.indicator_id.max_target_value\n            ):\n                record.value_state = \"above_target\"\n            else:\n                record.value_state = \"on_target\"\n\n    def post(self):\n        self.update({\"state\": \"posted\"})\n"
  },
  {
    "path": "mgmtsystem_objective/models/mgmtsystem_objective.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 MgmtsystemObjective(models.Model):\n    _name = \"mgmtsystem.objective\"\n    _inherit = [\"mail.thread\", \"mail.activity.mixin\"]\n    _description = \"Objective\"\n\n    name = fields.Char(required=True)\n    system_id = fields.Many2one(\"mgmtsystem.system\")\n    description = fields.Html()\n    user_id = fields.Many2one(\"res.users\", string=\"Owner\")\n    date_start = fields.Date()\n    date_end = fields.Date()\n    state = fields.Selection(\n        [\n            (\"draft\", \"Draft\"),\n            (\"in_progress\", \"In Progress\"),\n            (\"reached\", \"Reached\"),\n            (\"not_reached\", \"Not Reached\"),\n            (\"cancelled\", \"Cancelled\"),\n        ],\n        default=\"draft\",\n        required=True,\n    )\n    indicator_ids = fields.One2many(\"mgmtsystem.indicator\", \"objective_id\")\n"
  },
  {
    "path": "mgmtsystem_objective/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_objective/readme/CONTRIBUTORS.md",
    "content": "- [Dixmit](https://www.dixmit.com)\n  - Enric Tobella\n"
  },
  {
    "path": "mgmtsystem_objective/readme/DESCRIPTION.md",
    "content": "This module allows to define objectives in the Management system for future tracking.\n"
  },
  {
    "path": "mgmtsystem_objective/readme/ROADMAP.md",
    "content": "The computation of the values is done manually by now.\n"
  },
  {
    "path": "mgmtsystem_objective/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_objective_user\",\"mgmtsystem.objective.user\",\"model_mgmtsystem_objective\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_indicator_user\",\"mgmtsystem.indicator.user\",\"model_mgmtsystem_indicator\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_indicator_value_user\",\"mgmtsystem.indicator.value.user\",\"model_mgmtsystem_indicator_value\",\"mgmtsystem.group_mgmtsystem_viewer\",1,0,0,0\n\"access_mgmtsystem_indicator_value_editor\",\"mgmtsystem.indicator.value.user\",\"model_mgmtsystem_indicator_value\",\"mgmtsystem.group_mgmtsystem_user\",1,1,1,0\n\"access_mgmtsystem_objective_manager\",\"mgmtsystem.objective.user\",\"model_mgmtsystem_objective\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_indicator_manager\",\"mgmtsystem.indicator.user\",\"model_mgmtsystem_indicator\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n\"access_mgmtsystem_indicator_value_manager\",\"mgmtsystem.indicator.value.user\",\"model_mgmtsystem_indicator_value\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,1\n"
  },
  {
    "path": "mgmtsystem_objective/security/security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <record model=\"ir.rule\" id=\"mgmtsystem_indicator_value_rule\">\n        <field name=\"name\">mgmtsystem_nonconformity multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_indicator_value\" />\n        <field name=\"global\" eval=\"True\" />\n        <field name=\"perm_read\" eval=\"False\" />\n        <field name=\"perm_write\" eval=\"True\" />\n        <field name=\"perm_create\" eval=\"True\" />\n        <field name=\"perm_unlink\" eval=\"False\" />\n        <field\n            name=\"groups\"\n            eval=\"[Command.link(ref('mgmtsystem.group_mgmtsystem_user'))]\"\n        />\n        <field\n            name=\"domain_force\"\n        >[('indicator_id.objective_id.user_id', '=', user.id)]</field>\n    </record>\n    <record model=\"ir.rule\" id=\"mgmtsystem_indicator_value_rule_manager\">\n        <field name=\"name\">mgmtsystem_indicator_value multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_indicator_value\" />\n        <field name=\"global\" eval=\"True\" />\n        <field name=\"perm_read\" eval=\"False\" />\n        <field name=\"perm_write\" eval=\"True\" />\n        <field name=\"perm_create\" eval=\"True\" />\n        <field name=\"perm_unlink\" eval=\"False\" />\n        <field\n            name=\"groups\"\n            eval=\"[Command.link(ref('mgmtsystem.group_mgmtsystem_manager'))]\"\n        />\n        <field name=\"domain_force\">[(1, '=', 1)]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_objective/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=\"mgmtsystem-objective\">\n<h1>Mgmtsystem Objective</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:6c7cad3495b0cc5139b67d7338c6bf11480c0d1c8ee5b6d10cec230c50fd39a7\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/management-system/tree/18.0/mgmtsystem_objective\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_objective\"><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/management-system&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 to define objectives in the Management system for\nfuture tracking.</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=\"#known-issues-roadmap\" id=\"toc-entry-1\">Known issues / Roadmap</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-6\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"known-issues-roadmap\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Known issues / Roadmap</a></h2>\n<p>The computation of the values is done manually by now.</p>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_objective%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-3\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">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-5\">Contributors</a></h3>\n<ul class=\"simple\">\n<li><a class=\"reference external\" href=\"https://www.dixmit.com\">Dixmit</a><ul>\n<li>Enric Tobella</li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_objective\">OCA/management-system</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": "mgmtsystem_objective/static/src/components/objective_state_selection/objective_state_selection.esm.js",
    "content": "import {\n    StateSelectionField,\n    stateSelectionField,\n} from \"@web/views/fields/state_selection/state_selection_field\";\nimport {registry} from \"@web/core/registry\";\n\nexport const STATUS_COLORS = {\n    on_target: \"green\",\n    below_target: \"red\",\n    above_target: \"red\",\n};\nexport class ObjectiveStateSelectionField extends StateSelectionField {\n    setup() {\n        super.setup();\n        this.colors = STATUS_COLORS;\n    }\n}\n\nexport const objectiveStateSelectionField = {\n    ...stateSelectionField,\n    component: ObjectiveStateSelectionField,\n};\n\nregistry\n    .category(\"fields\")\n    .add(\"objective_state_selection\", objectiveStateSelectionField);\n"
  },
  {
    "path": "mgmtsystem_objective/static/tests/components/objective_state_selection.test.js",
    "content": "import {defineModels, fields, models, mountView} from \"@web/../tests/web_test_helpers\";\nimport {expect, test} from \"@odoo/hoot\";\nimport {defineMailModels} from \"@mail/../tests/mail_test_helpers\";\n\nclass Objective extends models.Model {\n    _name = \"mgmtsystem.objective\";\n    value_state = fields.Selection({\n        string: \"Value State\",\n        selection: [\n            [\"on_target\", \"On Target\"],\n            [\"below_target\", \"Below Target\"],\n            [\"above_target\", \"Above Target\"],\n            [\"no_target\", \"No Target\"],\n        ],\n    });\n    _records = [\n        {id: 1, value_state: \"on_target\"},\n        {id: 2, value_state: \"below_target\"},\n        {id: 3, value_state: \"above_target\"},\n        {id: 4, value_state: \"no_target\"},\n    ];\n    _views = {\n        form: `\n            <form>\n                <sheet>\n                    <group>\n                        <field name=\"value_state\" widget=\"objective_state_selection\"/>\n                    </group>\n                </sheet>\n            </form>`,\n    };\n}\ndefineModels([Objective]);\ndefineMailModels();\n\ntest(\"Check Objective State Widget On Target\", async () => {\n    await mountView({\n        type: \"form\",\n        resIds: [1],\n        resId: 1,\n        resModel: \"mgmtsystem.objective\",\n    });\n    expect(\".o_status\").toHaveCount(1);\n    expect(\".o_status.o_status_green\").toHaveCount(1);\n    expect(\".o_status.o_status_red\").toHaveCount(0);\n});\n\ntest(\"Check Objective State Widget Below Target\", async () => {\n    await mountView({\n        type: \"form\",\n        resIds: [2],\n        resId: 2,\n        resModel: \"mgmtsystem.objective\",\n    });\n    expect(\".o_status\").toHaveCount(1);\n    expect(\".o_status.o_status_green\").toHaveCount(0);\n    expect(\".o_status.o_status_red\").toHaveCount(1);\n});\ntest(\"Check Objective State Widget Above Target\", async () => {\n    await mountView({\n        type: \"form\",\n        resIds: [3],\n        resId: 3,\n        resModel: \"mgmtsystem.objective\",\n    });\n    expect(\".o_status\").toHaveCount(1);\n    expect(\".o_status.o_status_green\").toHaveCount(0);\n    expect(\".o_status.o_status_red\").toHaveCount(1);\n});\ntest(\"Check Objective State Widget No Target\", async () => {\n    await mountView({\n        type: \"form\",\n        resIds: [4],\n        resId: 4,\n        resModel: \"mgmtsystem.objective\",\n    });\n    expect(\".o_status\").toHaveCount(1);\n    expect(\".o_status.o_status_green\").toHaveCount(0);\n    expect(\".o_status.o_status_red\").toHaveCount(0);\n});\n"
  },
  {
    "path": "mgmtsystem_objective/tests/__init__.py",
    "content": "from . import test_objective\nfrom . import test_js\n"
  },
  {
    "path": "mgmtsystem_objective/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 TestMgmtSystemObjectiveSuite(WebSuite):\n    \"\"\"Test Automation OCA\"\"\"\n\n    def get_hoot_filters(self):\n        self._test_params = [(\"+\", \"@mgmtsystem_objective\")]\n        return super().get_hoot_filters()\n\n    def test_mgmt_system_objective(self):\n        self.test_unit_desktop()\n"
  },
  {
    "path": "mgmtsystem_objective/tests/test_objective.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo.exceptions import AccessError\nfrom odoo.tests.common import TransactionCase, new_test_user\n\n\nclass TestObjective(TransactionCase):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        cls.system = cls.env[\"mgmtsystem.system\"].create({\"name\": \"Test System\"})\n        cls.user = new_test_user(\n            cls.env, login=\"user_1\", groups=\"mgmtsystem.group_mgmtsystem_user\"\n        )\n        cls.objective = cls.env[\"mgmtsystem.objective\"].create(\n            {\n                \"name\": \"Test Objective\",\n                \"system_id\": cls.system.id,\n                \"user_id\": cls.user.id,\n            }\n        )\n        cls.indicator = cls.env[\"mgmtsystem.indicator\"].create(\n            {\n                \"name\": \"Test Indicator\",\n                \"objective_id\": cls.objective.id,\n            }\n        )\n\n    def test_value(self):\n        self.assertEqual(self.indicator.value, 0.0)\n        value = self.env[\"mgmtsystem.indicator.value\"].create(\n            {\n                \"indicator_id\": self.indicator.id,\n                \"date\": \"2024-01-01\",\n                \"value\": 100.0,\n            }\n        )\n        self.assertEqual(self.indicator.value, 0.0)\n        value.post()\n        self.assertEqual(self.indicator.value, 100.0)\n        value2 = self.env[\"mgmtsystem.indicator.value\"].create(\n            {\n                \"indicator_id\": self.indicator.id,\n                \"date\": \"2024-02-01\",\n                \"value\": 200.0,\n            }\n        )\n        self.assertEqual(self.indicator.value, 100.0)\n        value2.post()\n        self.assertEqual(self.indicator.value, 200.0)\n\n    def test_value_security(self):\n        with self.with_user(self.user.login):\n            self.test_value()\n\n    def test_value_no_access(self):\n        self.objective.user_id = self.env.ref(\"base.user_root\")\n        with self.assertRaises(AccessError):\n            self.env[\"mgmtsystem.indicator.value\"].with_user(self.user.id).create(\n                {\n                    \"indicator_id\": self.indicator.id,\n                    \"date\": \"2024-01-01\",\n                    \"value\": 100.0,\n                }\n            )\n\n    def test_state_no_target(self):\n        self.assertEqual(self.indicator.value_state, \"no_target\")\n        value = self.env[\"mgmtsystem.indicator.value\"].create(\n            {\n                \"indicator_id\": self.indicator.id,\n                \"date\": \"2024-01-01\",\n                \"value\": 100.0,\n            }\n        )\n        value.post()\n        self.assertEqual(value.value_state, \"no_target\")\n        self.assertEqual(self.indicator.value_state, \"no_target\")\n\n    def test_state_below_target(self):\n        self.indicator.has_min_target = True\n        self.indicator.min_target_value = 150.0\n\n        self.assertEqual(self.indicator.value_state, \"no_target\")\n        value = self.env[\"mgmtsystem.indicator.value\"].create(\n            {\n                \"indicator_id\": self.indicator.id,\n                \"date\": \"2024-01-01\",\n                \"value\": 100.0,\n            }\n        )\n        value.post()\n        self.assertEqual(value.value_state, \"below_target\")\n        self.assertEqual(self.indicator.value_state, \"below_target\")\n\n    def test_state_on_target(self):\n        self.indicator.has_min_target = True\n        self.indicator.min_target_value = 150.0\n        self.assertEqual(self.indicator.value_state, \"no_target\")\n        value = self.env[\"mgmtsystem.indicator.value\"].create(\n            {\n                \"indicator_id\": self.indicator.id,\n                \"date\": \"2024-01-01\",\n                \"value\": 200.0,\n            }\n        )\n        value.post()\n        self.assertEqual(value.value_state, \"on_target\")\n        self.assertEqual(self.indicator.value_state, \"on_target\")\n\n    def test_state_above_target(self):\n        self.indicator.has_max_target = True\n        self.indicator.max_target_value = 250.0\n        self.assertEqual(self.indicator.value_state, \"no_target\")\n        value = self.env[\"mgmtsystem.indicator.value\"].create(\n            {\n                \"indicator_id\": self.indicator.id,\n                \"date\": \"2024-01-01\",\n                \"value\": 300.0,\n            }\n        )\n        value.post()\n        self.assertEqual(value.value_state, \"above_target\")\n        self.assertEqual(self.indicator.value_state, \"above_target\")\n"
  },
  {
    "path": "mgmtsystem_objective/views/mgmtsystem_indicator.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=\"mgmtsystem_indicator_form_view\">\n        <field name=\"model\">mgmtsystem.indicator</field>\n        <field name=\"arch\" type=\"xml\">\n            <form>\n                <header>\n                    <field name=\"state\" widget=\"statusbar\" options=\"{'clickable': 1}\" />\n                </header>\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"description\" />\n                        <field name=\"frequency\" />\n                        <field name=\"has_min_target\" />\n                        <field name=\"min_target_value\" invisible=\"not has_min_target\" />\n                        <field name=\"has_max_target\" />\n                        <field name=\"max_target_value\" invisible=\"not has_max_target\" />\n                        <field name=\"value\" />\n                        <field name=\"uom_id\" />\n                    </group>\n                    <notebook>\n                        <page string=\"Values\">\n                            <field name=\"value_ids\" />\n                        </page>\n                    </notebook>\n                </sheet>\n                <chatter />\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_indicator_search_view\">\n        <field name=\"model\">mgmtsystem.indicator</field>\n        <field name=\"arch\" type=\"xml\">\n            <search>\n                <field name=\"objective_id\" />\n            </search>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_indicator_tree_view\">\n        <field name=\"model\">mgmtsystem.indicator</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"value\" />\n                <field name=\"uom_id\" />\n                <field name=\"value_state\" widget=\"objective_state_selection\" />\n                <field name=\"state\" />\n                <button\n                    name=\"get_formview_action\"\n                    type=\"object\"\n                    icon=\"fa-pencil-square-o\"\n                    title=\"open\"\n                    help=\"Open\"\n                />\n            </list>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_objective/views/mgmtsystem_indicator_value.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=\"mgmtsystem_indicator_value_search_view\">\n        <field name=\"model\">mgmtsystem.indicator.value</field>\n        <field name=\"arch\" type=\"xml\">\n            <search>\n                <field name=\"indicator_id\" />\n                <field name=\"value\" />\n                <field name=\"date\" />\n                <field name=\"comment\" />\n            </search>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_indicator_value_tree_view\">\n        <field name=\"model\">mgmtsystem.indicator.value</field>\n        <field name=\"arch\" type=\"xml\">\n            <list editable=\"bottom\">\n                <field name=\"date\" readonly=\"state != 'draft'\" />\n                <field name=\"value\" readonly=\"state != 'draft'\" />\n                <field name=\"uom_id\" readonly=\"1\" />\n                <field name=\"comment\" readonly=\"state != 'draft'\" />\n                <field name=\"state\" />\n                <field name=\"value_state\" widget=\"objective_state_selection\" />\n                <button\n                    name=\"post\"\n                    type=\"object\"\n                    string=\"Post\"\n                    invisible=\"state != 'draft'\"\n                    class=\"oe_highlight\"\n                />\n            </list>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_objective/views/mgmtsystem_objective.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=\"mgmtsystem_objective_form_view\">\n        <field name=\"model\">mgmtsystem.objective</field>\n        <field name=\"arch\" type=\"xml\">\n            <form>\n                <header>\n                    <field name=\"state\" widget=\"statusbar\" options=\"{'clickable': 1}\" />\n                </header>\n                <sheet>\n                    <group>\n                        <field name=\"name\" />\n                        <field name=\"system_id\" />\n                        <field name=\"date_start\" />\n                        <field name=\"date_end\" />\n                    </group>\n                    <notebook>\n                        <page string=\"Indicators\">\n                            <field name=\"indicator_ids\" />\n                        </page>\n                    </notebook>\n                </sheet>\n                <chatter />\n            </form>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_objective_search_view\">\n        <field name=\"model\">mgmtsystem.objective</field>\n        <field name=\"arch\" type=\"xml\">\n            <search>\n                <field name=\"name\" />\n                <field name=\"system_id\" />\n            </search>\n        </field>\n    </record>\n\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_objective_tree_view\">\n        <field name=\"model\">mgmtsystem.objective</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"system_id\" />\n                <field name=\"date_start\" />\n                <field name=\"date_end\" />\n                <field name=\"state\" />\n            </list>\n        </field>\n    </record>\n\n    <record model=\"ir.actions.act_window\" id=\"mgmtsystem_objective_act_window\">\n        <field name=\"name\">Objectives</field>\n        <field name=\"res_model\">mgmtsystem.objective</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=\"mgmtsystem_objective_menu\">\n        <field name=\"name\">Objectives</field>\n        <field name=\"parent_id\" ref=\"mgmtsystem.menu_mgmtsystem_main\" />\n        <field name=\"action\" ref=\"mgmtsystem_objective_act_window\" />\n        <field name=\"sequence\" eval=\"80\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_partner/README.rst",
    "content": "===========================\nManagement System - Partner\n===========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:2c3a517d0c898b00b96223468e48f161fb9bfd6e10c04bc303683fa2c9fb0e2a\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_partner\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_partner\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis is a bridge module between Management System and Partner\n\nPartner\n\n- Adds a Quality Address option on Partner's Contacts form.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nPartner Quality E-mail\n\n- Go to Partner → Contacts & Addresses → create/select a contact → set\n  type as Quality Address\n\nChangelog\n=========\n\n12.0.1.0.0 (2020-07-11)\n-----------------------\n\n- [INI] Initial development\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_partner%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* Associazione PNLUG - Gruppo Odoo\n\nContributors\n------------\n\n- Stefano Consolaro <stefano.consolaro@mymage.it>\n- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_partner>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_partner/__init__.py",
    "content": "from . import (\n    models,\n)\n"
  },
  {
    "path": "mgmtsystem_partner/__manifest__.py",
    "content": "# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n\n{\n    \"name\": \"Management System - Partner\",\n    \"summary\": \"Add Management System reference on Partner's Contacts.\",\n    \"version\": \"18.0.1.0.0\",\n    \"development_status\": \"Beta\",\n    \"author\": \"Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\n        \"mail\",\n        \"contacts\",\n    ],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_partner/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_partner\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-07-07 14:10+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: none\\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: mgmtsystem_partner\n#: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_partner__type\n#: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_users__type\nmsgid \"Address Type\"\nmsgstr \"Tipo de dirección\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model,name:mgmtsystem_partner.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contacto\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model.fields.selection,name:mgmtsystem_partner.selection__res_partner__type__quality\nmsgid \"Quality Address\"\nmsgstr \"Dirección de calidad\"\n\n#~ msgid \"\"\n#~ \"- Contact: Use this to organize the contact details of employees of a \"\n#~ \"given company (e.g. CEO, CFO, ...).\\n\"\n#~ \"- Invoice Address : Preferred address for all invoices. Selected by \"\n#~ \"default when you invoice an order that belongs to this company.\\n\"\n#~ \"- Delivery Address : Preferred address for all deliveries. Selected by \"\n#~ \"default when you deliver an order that belongs to this company.\\n\"\n#~ \"- Private: Private addresses are only visible by authorized users and \"\n#~ \"contain sensitive data (employee home addresses, ...).\\n\"\n#~ \"- Other: Other address for the company (e.g. subsidiary, ...)\"\n#~ msgstr \"\"\n#~ \"- Contactos: Utilice esta opción para organizar los datos de contacto de \"\n#~ \"los empleados de una empresa determinada (por ejemplo, director general, \"\n#~ \"director financiero, ...).\\n\"\n#~ \"- Dirección de facturación : Dirección preferida para todas las facturas. \"\n#~ \"Se selecciona por defecto cuando se factura un pedido que pertenece a \"\n#~ \"esta empresa.\\n\"\n#~ \"- Dirección de entrega : Dirección preferida para todas las entregas. Se \"\n#~ \"selecciona por defecto cuando entrega un pedido que pertenece a esta \"\n#~ \"empresa.\\n\"\n#~ \"- Privada: Las direcciones privadas sólo son visibles por los usuarios \"\n#~ \"autorizados y contienen datos sensibles (direcciones particulares de los \"\n#~ \"empleados, ...).\\n\"\n#~ \"- Otra: distinta dirección de la empresa (por ejemplo, filial, ...)\"\n"
  },
  {
    "path": "mgmtsystem_partner/i18n/fa.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_partner\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 16.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2024-05-29 11:34+0000\\n\"\n\"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>\\n\"\n\"Language-Team: none\\n\"\n\"Language: fa\\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: mgmtsystem_partner\n#: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_partner__type\n#: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_users__type\nmsgid \"Address Type\"\nmsgstr \"نوع نشانی\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model,name:mgmtsystem_partner.model_res_partner\nmsgid \"Contact\"\nmsgstr \"مخاطب\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model.fields.selection,name:mgmtsystem_partner.selection__res_partner__type__quality\nmsgid \"Quality Address\"\nmsgstr \"بررسی کیفیت نشانی\"\n\n#~ msgid \"\"\n#~ \"- Contact: Use this to organize the contact details of employees of a \"\n#~ \"given company (e.g. CEO, CFO, ...).\\n\"\n#~ \"- Invoice Address : Preferred address for all invoices. Selected by \"\n#~ \"default when you invoice an order that belongs to this company.\\n\"\n#~ \"- Delivery Address : Preferred address for all deliveries. Selected by \"\n#~ \"default when you deliver an order that belongs to this company.\\n\"\n#~ \"- Private: Private addresses are only visible by authorized users and \"\n#~ \"contain sensitive data (employee home addresses, ...).\\n\"\n#~ \"- Other: Other address for the company (e.g. subsidiary, ...)\"\n#~ msgstr \"\"\n#~ \"- مخاطبین: از این بخش برای سازماندهی اطلاعات تماس کارمندان یک شرکت \"\n#~ \"استفاده می‌شود (مانند مدیرعامل، مدیر ارشد مالی و ...).\\n\"\n#~ \"- نشانی فاکتور: نشانی اصلی تمام فاکتورها. این نشانی هنگامی صدور فاکتور \"\n#~ \"برای یک سفارش متعلق به شرکت، به صورت پیش‌فرض انتخاب می‌شود. \\n\"\n#~ \"- نشانی تحویل: نشانی اصلی برای تمام تحویل‌ها. که هنگام تحیل سفارش متعلق به \"\n#~ \"این شرکت به صورت پیش‌فرض انتخاب می‌شود. \\n\"\n#~ \"- خصوصی: نشانی‌های خصوصی که تنها برای کاربران مجاز قابل رویت هستند و \"\n#~ \"داده‌های حساسی را در بر می‌گیرند (نشانی‌های محل سکونت کارکنان، ...)\\n\"\n#~ \"- سایر: نشانی دیگر شرکت (مانند نشانی شرکت‌های تابعه، ...)\"\n"
  },
  {
    "path": "mgmtsystem_partner/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_partner\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 14.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2023-12-27 11:43+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 4.17\\n\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_partner__type\n#: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_users__type\nmsgid \"Address Type\"\nmsgstr \"Tipo indirizzo\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model,name:mgmtsystem_partner.model_res_partner\nmsgid \"Contact\"\nmsgstr \"Contatto\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model.fields.selection,name:mgmtsystem_partner.selection__res_partner__type__quality\nmsgid \"Quality Address\"\nmsgstr \"Indirizzo qualità\"\n\n#~ msgid \"\"\n#~ \"- Contact: Use this to organize the contact details of employees of a \"\n#~ \"given company (e.g. CEO, CFO, ...).\\n\"\n#~ \"- Invoice Address : Preferred address for all invoices. Selected by \"\n#~ \"default when you invoice an order that belongs to this company.\\n\"\n#~ \"- Delivery Address : Preferred address for all deliveries. Selected by \"\n#~ \"default when you deliver an order that belongs to this company.\\n\"\n#~ \"- Private: Private addresses are only visible by authorized users and \"\n#~ \"contain sensitive data (employee home addresses, ...).\\n\"\n#~ \"- Other: Other address for the company (e.g. subsidiary, ...)\"\n#~ msgstr \"\"\n#~ \"- Contatto: utilizzarlo per organizzare i dettagli dei contatti dei \"\n#~ \"dipendenti di una data azienda (es. CEO, CFO, ...).\\n\"\n#~ \"- Indirizzo fattura: indirizzo preferito per tutte le fatture. \"\n#~ \"Selezionato in modo predefinito quando si fattura un ordine che \"\n#~ \"appartiene a questa azienda.\\n\"\n#~ \"- Indirizzo consegna : indirizzo preferito per tutte le consegne. \"\n#~ \"Selezionato in modo predefinito quando si consegna un ordine che \"\n#~ \"appartiene a questa azienda.\\n\"\n#~ \"- Privato: gli indirizzi privati sono visibili solo da utenti autorizzati \"\n#~ \"e contengono dati sensibili (indirizzo di casa del dipendente, ...).\\n\"\n#~ \"- Altro: altri indirizzi per l'azienda (es. filiali, ...)\"\n\n#~ msgid \"\"\n#~ \"Invoice & Delivery addresses are used in sales orders. Private addresses \"\n#~ \"are only visible by authorized users.\"\n#~ msgstr \"\"\n#~ \"Gli indirizzi di fatturazione e consegna sono usati negli ordini di \"\n#~ \"vendita. Gli indirizzi privati sono visibili solo agli utenti autorizzati.\"\n\n#~ msgid \"Display Name\"\n#~ msgstr \"Nome visualizzato\"\n\n#~ msgid \"ID\"\n#~ msgstr \"ID\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n"
  },
  {
    "path": "mgmtsystem_partner/i18n/mgmtsystem_partner.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_partner\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: mgmtsystem_partner\n#: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_partner__type\n#: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_users__type\nmsgid \"Address Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model,name:mgmtsystem_partner.model_res_partner\nmsgid \"Contact\"\nmsgstr \"\"\n\n#. module: mgmtsystem_partner\n#: model:ir.model.fields.selection,name:mgmtsystem_partner.selection__res_partner__type__quality\nmsgid \"Quality Address\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_partner/models/__init__.py",
    "content": "from . import res_partner\n"
  },
  {
    "path": "mgmtsystem_partner/models/res_partner.py",
    "content": "# Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass ResPartner(models.Model):\n    \"\"\"\n    Extend res.partner with contact info for communications on quality\n    \"\"\"\n\n    _inherit = [\"res.partner\"]\n\n    # type for manage quality contact\n    type = fields.Selection(selection_add=[(\"quality\", \"Quality Address\")])\n"
  },
  {
    "path": "mgmtsystem_partner/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_partner/readme/CONTRIBUTORS.md",
    "content": "- Stefano Consolaro \\<<stefano.consolaro@mymage.it>\\>\n- \\[Heliconia Solutions Pvt. Ltd.\\](<https://www.heliconia.io>)\n"
  },
  {
    "path": "mgmtsystem_partner/readme/DESCRIPTION.md",
    "content": "This is a bridge module between Management System and Partner\n\nPartner\n\n- Adds a Quality Address option on Partner's Contacts form.\n"
  },
  {
    "path": "mgmtsystem_partner/readme/HISTORY.md",
    "content": "## 12.0.1.0.0 (2020-07-11)\n\n- \\[INI\\] Initial development\n"
  },
  {
    "path": "mgmtsystem_partner/readme/USAGE.md",
    "content": "Partner Quality E-mail\n\n- Go to Partner → Contacts & Addresses → create/select a contact → set\n  type as Quality Address\n"
  },
  {
    "path": "mgmtsystem_partner/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>Management System - Partner</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=\"management-system-partner\">\n<h1 class=\"title\">Management System - Partner</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:2c3a517d0c898b00b96223468e48f161fb9bfd6e10c04bc303683fa2c9fb0e2a\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/management-system/tree/18.0/mgmtsystem_partner\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_partner\"><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/management-system&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 is a bridge module between Management System and Partner</p>\n<p>Partner</p>\n<ul class=\"simple\">\n<li>Adds a Quality Address option on Partner’s Contacts form.</li>\n</ul>\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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#changelog\" id=\"toc-entry-2\">Changelog</a><ul>\n<li><a class=\"reference internal\" href=\"#section-1\" id=\"toc-entry-3\">12.0.1.0.0 (2020-07-11)</a></li>\n</ul>\n</li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h1>\n<p>Partner Quality E-mail</p>\n<ul class=\"simple\">\n<li>Go to Partner → Contacts &amp; Addresses → create/select a contact → set\ntype as Quality Address</li>\n</ul>\n</div>\n<div class=\"section\" id=\"changelog\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Changelog</a></h1>\n<div class=\"section\" id=\"section-1\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">12.0.1.0.0 (2020-07-11)</a></h2>\n<ul class=\"simple\">\n<li>[INI] Initial development</li>\n</ul>\n</div>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_partner%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-5\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Associazione PNLUG - Gruppo Odoo</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Stefano Consolaro &lt;<a class=\"reference external\" href=\"mailto:stefano.consolaro&#64;mymage.it\">stefano.consolaro&#64;mymage.it</a>&gt;</li>\n<li>[Heliconia Solutions Pvt. Ltd.](<a class=\"reference external\" href=\"https://www.heliconia.io\">https://www.heliconia.io</a>)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-8\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_partner\">OCA/management-system</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": "mgmtsystem_quality/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=========================\nQuality Management System\n=========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:9c5f809c90f35df195c330f8a07c135ba9208165513e4248069793cd2bd5cbbb\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_quality\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_quality\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module was written to allow you to manage your Quality Management\nSystem (QMS) within Odoo. It provides applications to manage:\n\n- Quality Manual\n- Procedures and Work Instructions\n- Top Management Reviews\n- Audits\n- Nonconformities (NC)\n- Immediate/Corrective/Preventive Actions\n- Improvement Opportunities\n- Satisfaction Survey\n\nFor further information, please visit:\n\n- http://www.slideshare.net/max3903/iso-anmanagement-systemswithopenerpena\n- http://www.slideshare.net/max3903/openerp-management-system-modules\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo configure this module, you need to:\n\n- Add users to the Management System groups (Manager, Auditor, NC\n  Approver)\n- Import your documentation (manuals and procedures)\n- Review the data provided (i.e. NC origins and causes)\n- Customize the Customer Satisfaction survey\n- Customize email templates for reminders\n- Import your legacy data (NC, actions)\n\nUsage\n=====\n\nTo use this module, you need to:\n\n- Schedule iand manage your audit calendars and top management reviews\n- Follow up with your colleagues on their actions\n- Analyze your NC and determine your action plan\n- Evaluate the effectiveness of your action plan before closing NC\n- Maintain your documentation by approving or refusing changes\n- Create improvement opportunities\n\nKnown issues / Roadmap\n======================\n\n- Images support in the documentation\n- Key Performance Indicators\n- Employee Training\n- Equipment Management\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_quality%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Luk Vermeylen <luk@allmas-it.be>\n- Daniel Reis <dgreis@sapo.pt>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- Open Source Integrators <https://www.opensourceintegrators.com>\n\n  - Maxime Chambreuil <mchambreuil@opensourceintegrators.com>\n\n- Eugen Don <eugen.don@don-systems.de>\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n- Guadaltech <https://www.guadaltech.es>\n\n  - Fernando La Chica <fernando.lachica@guadaltech.es>\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\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-max3903| image:: https://github.com/max3903.png?size=40px\n    :target: https://github.com/max3903\n    :alt: max3903\n\nCurrent `maintainer <https://odoo-community.org/page/maintainer-role>`__:\n\n|maintainer-max3903| \n\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_quality>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_quality/__init__.py",
    "content": ""
  },
  {
    "path": "mgmtsystem_quality/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n{\n    \"name\": \"Quality Management System\",\n    \"summary\": \"Manage your quality management system\",\n    \"version\": \"18.0.1.0.1\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\n        \"mgmtsystem_manual\",\n        \"mgmtsystem_audit\",\n        \"document_page_quality_manual\",\n        \"mgmtsystem_review\",\n    ],\n    \"data\": [\"data/mgmtsystem_system.xml\"],\n    \"installable\": True,\n    \"maintainers\": [\"max3903\"],\n}\n"
  },
  {
    "path": "mgmtsystem_quality/data/mgmtsystem_system.xml",
    "content": "<odoo noupdate=\"1\">\n    <record id=\"system_quality\" model=\"mgmtsystem.system\">\n        <field name=\"name\">Quality</field>\n        <field\n            name=\"manual_id\"\n            ref=\"document_page_quality_manual.document_page_quality_manual\"\n        />\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_quality/i18n/de.po",
    "content": "# German translation for openerp-mgmtsystem\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2012-09-17 11:23+0000\\n\"\n\"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\\n\"\n\"Language-Team: German <de@li.org>\\n\"\n\"Language: de\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \" Quality Management System\"\n#~ msgstr \" Qualitäts-Management-System\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"\\tThis module enables you to manage your quality management system, \"\n#~ \"including :\\n\"\n#~ \"            * Quality Manual\\n\"\n#~ \"            * Audits\\n\"\n#~ \"            * Procedures\\n\"\n#~ \"            * Nonconformities\\n\"\n#~ \"            * Actions\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"\\tDieses Modul ermöglicht Ihnen die Veraltung Ihres Qualitäts-Management-\"\n#~ \"Systems (QMS), einschließlich:\\n\"\n#~ \"    * Qualitätshandbuch,\\n\"\n#~ \"    * Prüfungen,\\n\"\n#~ \"    * Abläufe,\\n\"\n#~ \"    * Mängel (Nichteinhaltungen),\\n\"\n#~ \"    * Maßnahmen.\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "mgmtsystem_quality/i18n/fr.po",
    "content": "# French translation for openerp-mgmtsystem\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2012-09-09 04:50+0000\\n\"\n\"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime.\"\n\"chambreuil@savoirfairelinux.com>\\n\"\n\"Language-Team: French <fr@li.org>\\n\"\n\"Language: fr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \" Quality Management System\"\n#~ msgstr \" Système de gestion de la qualité\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"\\tThis module enables you to manage your quality management system, \"\n#~ \"including :\\n\"\n#~ \"            * Quality Manual\\n\"\n#~ \"            * Audits\\n\"\n#~ \"            * Procedures\\n\"\n#~ \"            * Nonconformities\\n\"\n#~ \"            * Actions\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"\\tCe module vous permet de gérer votre système de gestion de la qualité, \"\n#~ \"incluant :\\n\"\n#~ \"            * Manuel qualité\\n\"\n#~ \"            * Audits\\n\"\n#~ \"            * Procédures\\n\"\n#~ \"            * Nonconformités\\n\"\n#~ \"            * Actions\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "mgmtsystem_quality/i18n/it.po",
    "content": ""
  },
  {
    "path": "mgmtsystem_quality/i18n/mgmtsystem_quality.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\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"
  },
  {
    "path": "mgmtsystem_quality/i18n/nb.po",
    "content": "# Norwegian Bokmal translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2014-01-22 17:52+0000\\n\"\n\"Last-Translator: Torvald Baade Bringsvor <torvald@bringsvor.com>\\n\"\n\"Language-Team: Norwegian Bokmal <nb@li.org>\\n\"\n\"Language: nb\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \" Quality Management System\"\n#~ msgstr \" Kvalitetsstyringssystem\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"\\tThis module enables you to manage your quality management system, \"\n#~ \"including :\\n\"\n#~ \"            * Quality Manual\\n\"\n#~ \"            * Audits\\n\"\n#~ \"            * Procedures\\n\"\n#~ \"            * Nonconformities\\n\"\n#~ \"            * Actions\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"\\tDenne modulen gir deg mulighet til å ha et kvalitetskontrollsystem (ISO \"\n#~ \"9001), inkludert:\\n\"\n#~ \"            * Kvalitetshåndbok\\n\"\n#~ \"            * Revisjoner\\n\"\n#~ \"            * Manualer\\n\"\n#~ \"            * Avvik\\n\"\n#~ \"            * Tiltak\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "mgmtsystem_quality/i18n/pt_BR.po",
    "content": "# Brazilian Portuguese translation for openerp-mgmtsystem\n# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2013-07-18 13:56+0000\\n\"\n\"Last-Translator: Leonardo Pessoa <Unknown>\\n\"\n\"Language-Team: Brazilian Portuguese <pt_BR@li.org>\\n\"\n\"Language: pt_BR\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \" Quality Management System\"\n#~ msgstr \" Sistema de Gestão da Qualidade\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"\\tThis module enables you to manage your quality management system, \"\n#~ \"including :\\n\"\n#~ \"            * Quality Manual\\n\"\n#~ \"            * Audits\\n\"\n#~ \"            * Procedures\\n\"\n#~ \"            * Nonconformities\\n\"\n#~ \"            * Actions\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"\\tEste móodulo lhe permite gerenciar o seu Sistema de Gestao de \"\n#~ \"Qualidade, incluindo:\\n\"\n#~ \"            * Manual da Qualidade\\n\"\n#~ \"            * Auditorias\\n\"\n#~ \"            * Procedimentos\\n\"\n#~ \"            * Não Conformidades\\n\"\n#~ \"            * Ações\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "mgmtsystem_quality/i18n/sv.po",
    "content": "# Swedish translation for openerp-mgmtsystem\n# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-02-22 20:40+0000\\n\"\n\"PO-Revision-Date: 2012-12-03 10:50+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Swedish <sv@li.org>\\n\"\n\"Language: sv\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#~ msgid \" Quality Management System\"\n#~ msgstr \" KvalitetsLedningsSystem\"\n\n#~ msgid \"\"\n#~ \"\\n\"\n#~ \"\\tThis module enables you to manage your quality management system, \"\n#~ \"including :\\n\"\n#~ \"            * Quality Manual\\n\"\n#~ \"            * Audits\\n\"\n#~ \"            * Procedures\\n\"\n#~ \"            * Nonconformities\\n\"\n#~ \"            * Actions\\n\"\n#~ \"    \"\n#~ msgstr \"\"\n#~ \"\\n\"\n#~ \"\\tDenna modul ger dig möjlighet ha ett kvalitetsledningssystem (ISO \"\n#~ \"9001), inklusive:\\n\"\n#~ \"            * Kvalitetshandbok\\n\"\n#~ \"            * Revisioner\\n\"\n#~ \"            * Manualer\\n\"\n#~ \"            * Avvikelser\\n\"\n#~ \"            * Åtgärder\\n\"\n#~ \"    \"\n"
  },
  {
    "path": "mgmtsystem_quality/i18n/vi.po",
    "content": ""
  },
  {
    "path": "mgmtsystem_quality/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_quality/readme/CONFIGURE.md",
    "content": "To configure this module, you need to:\n\n- Add users to the Management System groups (Manager, Auditor, NC\n  Approver)\n- Import your documentation (manuals and procedures)\n- Review the data provided (i.e. NC origins and causes)\n- Customize the Customer Satisfaction survey\n- Customize email templates for reminders\n- Import your legacy data (NC, actions)\n"
  },
  {
    "path": "mgmtsystem_quality/readme/CONTRIBUTORS.md",
    "content": "- Luk Vermeylen \\<<luk@allmas-it.be>\\>\n- Daniel Reis \\<<dgreis@sapo.pt>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Open Source Integrators \\<<https://www.opensourceintegrators.com>\\>\n  - Maxime Chambreuil \\<<mchambreuil@opensourceintegrators.com>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- Guadaltech \\<<https://www.guadaltech.es>\\>\n  - Fernando La Chica \\<<fernando.lachica@guadaltech.es>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n"
  },
  {
    "path": "mgmtsystem_quality/readme/DESCRIPTION.md",
    "content": "This module was written to allow you to manage your Quality Management\nSystem (QMS) within Odoo. It provides applications to manage:\n\n- Quality Manual\n- Procedures and Work Instructions\n- Top Management Reviews\n- Audits\n- Nonconformities (NC)\n- Immediate/Corrective/Preventive Actions\n- Improvement Opportunities\n- Satisfaction Survey\n\nFor further information, please visit:\n\n- <http://www.slideshare.net/max3903/iso-anmanagement-systemswithopenerpena>\n- <http://www.slideshare.net/max3903/openerp-management-system-modules>\n"
  },
  {
    "path": "mgmtsystem_quality/readme/ROADMAP.md",
    "content": "- Images support in the documentation\n- Key Performance Indicators\n- Employee Training\n- Equipment Management\n"
  },
  {
    "path": "mgmtsystem_quality/readme/USAGE.md",
    "content": "To use this module, you need to:\n\n- Schedule iand manage your audit calendars and top management reviews\n- Follow up with your colleagues on their actions\n- Analyze your NC and determine your action plan\n- Evaluate the effectiveness of your action plan before closing NC\n- Maintain your documentation by approving or refusing changes\n- Create improvement opportunities\n"
  },
  {
    "path": "mgmtsystem_quality/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=\"quality-management-system\">\n<h1>Quality Management System</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:9c5f809c90f35df195c330f8a07c135ba9208165513e4248069793cd2bd5cbbb\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/management-system/tree/18.0/mgmtsystem_quality\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_quality\"><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/management-system&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 was written to allow you to manage your Quality Management\nSystem (QMS) within Odoo. It provides applications to manage:</p>\n<ul class=\"simple\">\n<li>Quality Manual</li>\n<li>Procedures and Work Instructions</li>\n<li>Top Management Reviews</li>\n<li>Audits</li>\n<li>Nonconformities (NC)</li>\n<li>Immediate/Corrective/Preventive Actions</li>\n<li>Improvement Opportunities</li>\n<li>Satisfaction Survey</li>\n</ul>\n<p>For further information, please visit:</p>\n<ul class=\"simple\">\n<li><a class=\"reference external\" href=\"http://www.slideshare.net/max3903/iso-anmanagement-systemswithopenerpena\">http://www.slideshare.net/max3903/iso-anmanagement-systemswithopenerpena</a></li>\n<li><a class=\"reference external\" href=\"http://www.slideshare.net/max3903/openerp-management-system-modules\">http://www.slideshare.net/max3903/openerp-management-system-modules</a></li>\n</ul>\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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-2\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#known-issues-roadmap\" id=\"toc-entry-3\">Known issues / Roadmap</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-4\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-5\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-6\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-7\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h2>\n<p>To configure this module, you need to:</p>\n<ul class=\"simple\">\n<li>Add users to the Management System groups (Manager, Auditor, NC\nApprover)</li>\n<li>Import your documentation (manuals and procedures)</li>\n<li>Review the data provided (i.e. NC origins and causes)</li>\n<li>Customize the Customer Satisfaction survey</li>\n<li>Customize email templates for reminders</li>\n<li>Import your legacy data (NC, actions)</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Usage</a></h2>\n<p>To use this module, you need to:</p>\n<ul class=\"simple\">\n<li>Schedule iand manage your audit calendars and top management reviews</li>\n<li>Follow up with your colleagues on their actions</li>\n<li>Analyze your NC and determine your action plan</li>\n<li>Evaluate the effectiveness of your action plan before closing NC</li>\n<li>Maintain your documentation by approving or refusing changes</li>\n<li>Create improvement opportunities</li>\n</ul>\n</div>\n<div class=\"section\" id=\"known-issues-roadmap\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-3\">Known issues / Roadmap</a></h2>\n<ul class=\"simple\">\n<li>Images support in the documentation</li>\n<li>Key Performance Indicators</li>\n<li>Employee Training</li>\n<li>Equipment Management</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-4\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_quality%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-5\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-6\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Luk Vermeylen &lt;<a class=\"reference external\" href=\"mailto:luk&#64;allmas-it.be\">luk&#64;allmas-it.be</a>&gt;</li>\n<li>Daniel Reis &lt;<a class=\"reference external\" href=\"mailto:dgreis&#64;sapo.pt\">dgreis&#64;sapo.pt</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Open Source Integrators &lt;<a class=\"reference external\" href=\"https://www.opensourceintegrators.com\">https://www.opensourceintegrators.com</a>&gt;<ul>\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:mchambreuil&#64;opensourceintegrators.com\">mchambreuil&#64;opensourceintegrators.com</a>&gt;</li>\n</ul>\n</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li>Guadaltech &lt;<a class=\"reference external\" href=\"https://www.guadaltech.es\">https://www.guadaltech.es</a>&gt;<ul>\n<li>Fernando La Chica &lt;<a class=\"reference external\" href=\"mailto:fernando.lachica&#64;guadaltech.es\">fernando.lachica&#64;guadaltech.es</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-8\">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/max3903\"><img alt=\"max3903\" src=\"https://github.com/max3903.png?size=40px\" /></a></p>\n<p>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_quality\">OCA/management-system</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": "mgmtsystem_review/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==========================\nManagement System - Review\n==========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:590346a5f617d6e6b808994b900645dd5690d65d85f5932bdfa7bd9e61e0b724\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_review\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module was written to help you manage the top management reviews of\nyour systems.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nTo use this module, you need to:\n\n- go to Management Systems / Reviews\n- create a new review with the date, the persons, the policies of your\n  systems, the KPI and survey results\n- Discuss each problems and log your decision in the review lines with\n  an action or nonconformity\n- Conclude your review with the date of the next one and save it\n- Print the report\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_review%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>\n\n- Loïc Faure-Lacroix <loic.lacroix@savoirfairelinux.com>\n\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n\n- Luk Vermeylen <luk@allmas-it.be>\n\n- Eugen Don <eugen.don@don-systems.de>\n\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n\n- Julien Coux <julien.coux@camptocamp.com>\n\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\n\n- [Trobz] (https://trobz.com/):\n\n  - Dung Tran <dungtd@trobz.com>\n  - Tuan Nguyen <tuanna@trobz.com>\n\nOther credits\n-------------\n\nThe migration of this module from 17.0 to 18.0 was financially supported\nby Camptocamp.\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_review/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_review/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Review\",\n    \"version\": \"18.0.2.0.1\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem_nonconformity\"],\n    \"data\": [\n        \"security/ir.model.access.csv\",\n        \"security/mgmtsystem_review_security.xml\",\n        \"data/ir_sequence.xml\",\n        \"views/mgmtsystem_review.xml\",\n        \"views/res_users.xml\",\n        \"report/review.xml\",\n        \"report/report.xml\",\n    ],\n    \"installable\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_review/data/ir_sequence.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <record id=\"seq_mgmtsystem_review\" model=\"ir.sequence\">\n        <field name=\"name\">Management System Review</field>\n        <field name=\"code\">mgmtsystem.review</field>\n        <field name=\"prefix\">MSR</field>\n        <field name=\"padding\">3</field>\n        <field name=\"company_id\" eval=\"False\" />\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review/i18n/am.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\\n\"\n\"Language: am\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/ca.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\\n\"\n\"Language: ca\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creat per\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creat el\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Darrera Actualització per\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Darrera Actualització el\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2025-07-07 07:22+0000\\n\"\n\"Last-Translator: Matthias Alles <matthias.alles@posteo.de>\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"<strong>Änderungen die Managementsysteme betreffend:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"<strong>Fazit:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"<strong>Richtlinien:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"<strong>Überprüfungsbericht</strong>\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Maßnahme\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"Maßnahme:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"Änderungen\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"Herausforderungen, die das Management-System betreffen\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Abschließen\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Abgeschlossen\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"Abgeschlossene Bewertngen\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Unternehmen\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"Fazit\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"Vertraulichkeit:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Erstellt von\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Erstellt am\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Jahr:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"Entscheidung\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"Entscheidung:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"Richtungsüberprüfung\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Anzeigename\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"Eingaben\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zuletzt aktualisiert von\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zuletzt aktualisiert am\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"Positionen\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Name\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"Mangel/Nichteinhaltung\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"In Bearbeitung\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"Anstehende Bewertungen\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"Beteiligte\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"Teilnehmer:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"Richtlinie\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Bezug\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"Referenz:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Verweis:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"Bewertung\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"Bewertungspositionen\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"Bewertungspositionen\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"Überprüfungsbericht\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"Bewertungen\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"Status:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Titel\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Aktion\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"<strong>Satisfaction Survey Answers:</strong>\"\n#~ msgstr \"<strong>Zufriedenheitsumfrage Antworten:</strong>\"\n\n#~ msgid \"Comments:\"\n#~ msgstr \"Bemerkungen:\"\n\n#~ msgid \"Expectations:\"\n#~ msgstr \"Erwartungen:\"\n\n#~ msgid \"Improvements:\"\n#~ msgstr \"Verbesserungen:\"\n\n#~ msgid \"Refrence:\"\n#~ msgstr \"Referenz:\"\n\n#~ msgid \"Survey Answers\"\n#~ msgstr \"Umfrage Antworten\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zuletzt aktualisiert am\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/el_GR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/\"\n\"el_GR/)\\n\"\n\"Language: el_GR\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Δημιουργήθηκε από \"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Δημιουργήθηκε στις\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"Κωδικός\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Τελευταία ενημέρωση από\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Τελευταία ενημέρωση στις\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# enjolras <yo@miguelrevilla.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-02-10 07:39+0000\\n\"\n\"PO-Revision-Date: 2024-02-08 20:34+0000\\n\"\n\"Last-Translator: Ivorra78 <informatica@totmaterial.es>\\n\"\n\"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"<strong>Cambios que afectan a los sistemas de gestión:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"<strong>Conclusión:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"<strong>Políticas:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"<strong>Informe de revisión</strong>\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Acción\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"acción necesaria\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"Acción:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"actividades\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decoración de excepción de la actividad\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"estado de la actividad\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icono de tipo de actividad\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"recuento de archivos adjuntos\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"Cambios\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"Cambios que afectan los sistemas de gestión\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Cerrar\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Cerrado\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"Revisiones cerradas\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"Conclusión\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"Confidencialidad:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creado el\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Fecha\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Fecha:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"Decisión\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"Decisión:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"Revisión de la administración\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Nombre mostrado\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"seguidores(socios)\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"fuente iconos sorprendentes , por ejemplo fa-tasks\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"tienes un mensaje\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icono\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"icono para indicar una actividad por excepción.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Si está marcada, nuevos mensajes requieren tu atención.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"si está marcada, algunos mensajes tienen un error de entrega.\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"Entradas\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"es seguidor\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultima actualización por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultima actualización en\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"Líneas\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"error de entrega de mensaje\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"mensajes\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Mi fecha límite de la actividad\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Nombre\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Próximo evento del calendario de actividades\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Fecha Límite para la Próxima Actividad\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Resumen de la Siguiente Actividad\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo proxima actividad\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"No conformidad\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"número de acciones\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"número de errores\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensajes que requieren una acción\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"número de mensajes con error de entrega\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Abierta\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"Revisiones abiertas\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"Participantes\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"Participantes:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"Política\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Referencia\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"Referencia:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Referencia:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Usuario Responsable\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"Revisión\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"Línea de revisión\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"Líneas de revisión\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"Informe de revisión\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"Revisiones\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Error en la entrega de SMS\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"Estado:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Estado en función de las actividades\\n\"\n\"Atrasada: La fecha de vencimiento ya ha pasado\\n\"\n\"Hoy: La fecha de la actividad es hoy\\n\"\n\"Planificada: Actividades futuras.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Título\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo (o clase) de actividad excepcional registrada.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"mensajes de la página web\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"historial de la comunicación en la web\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"No Conformidad\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Recuento De Disconformidades\"\n\n#~ msgid \"<strong>Satisfaction Survey Answers:</strong>\"\n#~ msgstr \"<strong>Respuestas a la encuesta de satisfacción:</strong>\"\n\n#~ msgid \"Comments:\"\n#~ msgstr \"Comentarios:\"\n\n#~ msgid \"Expectations:\"\n#~ msgstr \"Expectativas:\"\n\n#~ msgid \"Improvements:\"\n#~ msgstr \"Mejoras:\"\n\n#~ msgid \"Refrence:\"\n#~ msgstr \"Referencia:\"\n\n#~ msgid \"Survey Answers\"\n#~ msgstr \"Respuestas encuesta\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Última modificación el\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Archivo adjunto principal\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"número de mensajes que requieren una acción\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:18+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:18+0000\\n\"\n\"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA \"\n\"<josealejandroeche@gmail.com>, 2018\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Compañía\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/es_ES.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última actualización por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/fi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\n# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016\\n\"\n\"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\\n\"\n\"Language: fi\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Suljettu\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Luonut\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Luotu\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Nimi\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Viimeksi päivittänyt\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Viimeksi päivitetty\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Tila\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Viimeksi muokattu\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Action\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"Action :\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"Changements\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"Changements affectant les systèmes de gestion\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Archiver\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Fermée\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"Revues archivées\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Société\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"Conclusion\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Créée par\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Créée le \"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Date\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Date :\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"Décision\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"Décision :\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"Revue de direction\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Nom à afficher\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"Éléments d'entrée\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Mise à jour par\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Mise à jour le\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"Lignes\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Nom\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"Non-conformité\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Ouverte\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"Revues ouvertes\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"Participants\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"Participants :\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"Politique\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Référence\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Référence :\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"Revue\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"Ligne de revue\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"Lignes de revue\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"Revues\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"État\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"État :\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Intitulé\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Comments:\"\n#~ msgstr \"Commentaires :\"\n\n#~ msgid \"Expectations:\"\n#~ msgstr \"Attentes :\"\n\n#~ msgid \"Improvements:\"\n#~ msgstr \"Améliorations :\"\n\n#~ msgid \"Survey Answers\"\n#~ msgstr \"Réponses au questionnaire\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Dernière modification le\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/gl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\\n\"\n\"Language: gl\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creado por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creado en\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"ültima actualización por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última actualización en\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Tvrtka\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Kreirao\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Kreirano\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnje ažurirao\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnje ažuriranje\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnje modificirano\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/hu.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\\n\"\n\"Language: hu\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Művelet\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Lezárt\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Típus\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2025-11-03 09:38+0000\\n\"\n\"Last-Translator: mymage <stefano.consolaro@mymage.it>\\n\"\n\"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"<strong>Modifiche che riguardano il sistema di gestione:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"<strong>Conclusione:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"<strong>Politiche:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"<strong>Relazione di revisione</strong>\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Azione\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Azione richiesta\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"Azione:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"Attività\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decorazione eccezione attività\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"Stato attività\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Icona tipo attività\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Numero allegati\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"Modifiche\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"Modifiche che riguardano il sistema di gestione\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Chiudi\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Chiusa\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"Revisione chiusa\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Azienda\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"Conclusione\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"Riservatezza:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Creato da\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Creato il\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Data:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"Decisione\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"Decisione:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"Revisione della direzione\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Nome visualizzato\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguito da\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguito da (partner)\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Icona Font Awesome es. fa-tasks\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"Ha un messaggio\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Icona\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Icona per indicare un'attività eccezione.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se selezionata, nuovi messaggi richiedono attenzione.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se selezionata, alcuni messaggi hanno un errore di consegna.\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"Suggerimenti\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Segue\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Ultimo aggiornamento di\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Ultimo aggiornamento il\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"Righe\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Errore di consegna messaggio\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"Messaggi\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Scadenza mia attività\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Evento calendario attività successiva\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Scadenza prossima attività\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Riepilogo prossima attività\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Tipo prossima attività\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"Non conformità\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Numero di azioni\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Numero di errori\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Numero di messaggi che richiedono un'azione\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Numero di messaggi con errore di consegna\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Aperta\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"Revisioni aperte\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"Partecipanti\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"Partecipanti:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"Politica\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Riferimento\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"Riferimento:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Riferimento:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Utente responsabile\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"Revisione\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"Revisione riga\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"Revisione righe\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"Relazione di revisione\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"Revisioni\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"Errore consegna SMS\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Stato\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"Stato:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Stato in base alle attività\\n\"\n\"Scaduto: la data richiesta è trascorsa\\n\"\n\"Oggi: la data attività è oggi\\n\"\n\"Pianificato: attività future.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"Sistema\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Titolo\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo di attività eccezione sul record.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Messaggi sito web\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Storico comunicazioni sito web\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Non conformità\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Conteggio non conformità\"\n\n#~ msgid \"<strong>Satisfaction Survey Answers:</strong>\"\n#~ msgstr \"<strong>Risposte sondaggio di soddisfazione:</strong>\"\n\n#~ msgid \"Comments:\"\n#~ msgstr \"Commenti:\"\n\n#~ msgid \"Expectations:\"\n#~ msgstr \"Aspettative:\"\n\n#~ msgid \"Improvements:\"\n#~ msgstr \"Miglioramenti:\"\n\n#~ msgid \"Refrence:\"\n#~ msgstr \"Riferimento:\"\n\n#~ msgid \"Survey Answers\"\n#~ msgstr \"Risposte sondaggio\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Ultima modifica il\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Allegato principale\"\n\n#~ msgid \"Number of messages which requires an action\"\n#~ msgstr \"Numero di messaggi che richiedono un'azione\"\n\n#~ msgid \"Followers (Channels)\"\n#~ msgstr \"Iscritti (canali)\"\n\n#~ msgid \"Number of unread messages\"\n#~ msgstr \"Numero di messaggi non letti\"\n\n#~ msgid \"Unread Messages\"\n#~ msgstr \"Messaggi non letti\"\n\n#~ msgid \"Unread Messages Counter\"\n#~ msgstr \"Conteggio messaggi non letti\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/lv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\\n\"\n\"Language: lv\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : \"\n\"2);\\n\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Darbība\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Slēgts\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Atsauce\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Veids\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/mgmtsystem_review.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_review\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 02:42+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/\"\n\"nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"Tiltak:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"Endringer\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"Forandringer som påvirker styringssystemet\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Lukk\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Stengt\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"Stengte granskninger\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"Konklusjon\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Dato\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Dato :\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"Avgjørelse\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"Beslutning:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"Gjennomgang av retning\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"Inndata\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"Linjer\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Navn\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"Avvik\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Åpne\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"Åpne Granskninger\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"Deltakere\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"Deltakere:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"Regel\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Referanse:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"Granskning\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"Granskningslinje\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"Granskningslinjer\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"Granskninger\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"Status:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Tittel\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Comments:\"\n#~ msgstr \"Kommentarer:\"\n\n#~ msgid \"Expectations:\"\n#~ msgstr \"Forventninger:\"\n\n#~ msgid \"Improvements:\"\n#~ msgstr \"Forbedringer:\"\n\n#~ msgid \"Survey Answers\"\n#~ msgstr \"Svar på undersøkelsen\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/nl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\\n\"\n\"Language: nl\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Te tonen naam\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Naam\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst bijgewerkt op\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/nl_NL.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# Peter Hageman <hageman.p@gmail.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 04:24+0000\\n\"\n\"PO-Revision-Date: 2017-06-17 04:24+0000\\n\"\n\"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\\n\"\n\"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/\"\n\"23907/nl_NL/)\\n\"\n\"Language: nl_NL\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Actie\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Sluiten\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Gesloten\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Bedrijf\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Aangemaakt door\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Aangemaakt op\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Datum:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Weergavenaam\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Laatst bijgewerkt door\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Laatst bijgewerkt op\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Naam\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Open\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Referentie\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Referentie:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Fase\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Laatst aangepast op\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/nn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Norwegian Nynorsk (https://www.transifex.com/oca/teams/23907/\"\n\"nn/)\\n\"\n\"Language: nn\\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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Tiltak\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Steng\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Stengd\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Dato\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Dato :\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Namn\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Opne\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Referanse\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Referanse:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Type\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\\n\"\n\"Language: 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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Estado\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2024-09-02 23:06+0000\\n\"\n\"Last-Translator: Antônio Neto <netosjb@yahoo.com.br>\\n\"\n\"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/\"\n\"23907/pt_BR/)\\n\"\n\"Language: pt_BR\\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.6.2\\n\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"<strong>Mudanças que afetam os sistemas de gestão:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"<strong>Conclusão:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"<strong>Políticas:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"<strong>Relatório de revisão</strong>\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Ação\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Ação necessária\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"Ação:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"Atividades\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Decoração de Exceção de Atividade\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"Estado de Atividade\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Ícone de tipo de atividade\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Contador de anexo\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"Alterações\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"Mudanças que afetam o Sistemas de Gestão\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Fechar\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Fechado\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"Reuniões Fechadas\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Empresa\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"Conclusão\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"Confidencialidade:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Data\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Data:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"Decisão\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"Decisão:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"Revisão da direção\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Mostrar nome\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Seguidores\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Seguidores (Parceiros)\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Ícone incrível da fonte, por ex. fa-tasks\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"Tem Mensagem\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"Identificação\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Ícone\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Ícone para indicar uma atividade de exceção.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Se marcada, novas mensagens requerem sua atenção.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Se marcada, algumas mensagens tem um erro de entrega.\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"Entradas\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"É Seguidor\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Última atualização por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Última atualização em\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"Linhas\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Mensagem de erro de entrega\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"Mensagens\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Prazo da minha atividade\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Nome\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Próximo evento do calendário de atividades\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Prazo para a próxima atividade\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Resumo para a próxima atividade\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Próximo tipo de atividade\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"Não Conformidade\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Número de Ações\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Número de erros\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Número de mensagens que exigem ação\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Número de mensagens com erro de entrega\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Abrir\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"Reuniões Abertas\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"Participantes\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"Participantes:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"Política\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Referência\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"Referência:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Referência:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Usuário Responsável\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"Reunião\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"Linha da reunião\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"linhas da reunião\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"Relatório de revisão\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"Reuniões\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Situação\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"Situação:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status baseado em atividades\\n\"\n\"Vencido: a data de vencimento já passou\\n\"\n\"Hoje: a data da atividade é hoje\\n\"\n\"Planejado: Atividades futuras.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Título\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Tipo\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Tipo de atividade de exceção registrada.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Mensagens do website\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Histórico de mensagens do site\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Não conformidade\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Contar Não conformidade\"\n\n#~ msgid \"<strong>Satisfaction Survey Answers:</strong>\"\n#~ msgstr \"<strong>Respostas de Pesquisa de Satisfação:</strong>\"\n\n#~ msgid \"Comments:\"\n#~ msgstr \"Comentários:\"\n\n#~ msgid \"Expectations:\"\n#~ msgstr \"Expectativas:\"\n\n#~ msgid \"Improvements:\"\n#~ msgstr \"Melhorias:\"\n\n#~ msgid \"Refrence:\"\n#~ msgstr \"Referência:\"\n\n#~ msgid \"Survey Answers\"\n#~ msgstr \"Respostas da Pesquisa\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Modificada pela última vez\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Anexo Principal\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/pt_PT.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/\"\n\"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: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Criado por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Criado em\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Atualizado pela última vez por\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Atualizado pela última vez em\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2023-03-31 21:29+0000\\n\"\n\"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\\n\"\n\"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\\n\"\n\"Language: sl\\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3;\\n\"\n\"X-Generator: Weblate 4.14.1\\n\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Ukrep\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"Ukrep:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"Spremembe\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"Spremembe glede sistemov upravljanja\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Zaključi\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Zaključeno\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"Zaključene revizije\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Družba\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"Zaključek\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Ustvaril\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Ustvarjeno\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Datum:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"Odločitev\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"Odločitev:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"Revizija vodstva\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Prikazani naziv\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"Vhodni podatki\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Zadnjič posodobil\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Zadnjič posodobljeno\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"Postavke\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Naziv\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"Neustreznost\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Odprto\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"Odprte revizije\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"Sodelujoči\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"Sodelujoči:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"Pravilo\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Sklic\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Sklic:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"Revizija\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"Revizijska postavka\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"Revizijske postavke\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"Revizije\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Stanje\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"Stanje:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Naslov\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Tip\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n\n#~ msgid \"Comments:\"\n#~ msgstr \"Komentarji:\"\n\n#~ msgid \"Expectations:\"\n#~ msgstr \"Pričakovanja:\"\n\n#~ msgid \"Improvements:\"\n#~ msgstr \"Izboljšave:\"\n\n#~ msgid \"Survey Answers\"\n#~ msgstr \"Odgovori na raziskavo\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Zadnjič spremenjeno\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-06-17 02:42+0000\\n\"\n\"PO-Revision-Date: 2024-09-11 10:06+0000\\n\"\n\"Last-Translator: jakobkrabbe <jakob@syscare.se>\\n\"\n\"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\\n\"\n\"Language: sv\\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.6.2\\n\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"<strong>Ändringar som påverkar ledningssystemen:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"<strong>Slutsats:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"<strong>Policyer:</strong>\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"<strong>Granska rapport</strong>\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"Åtgärd\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"Åtgärd behövs\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"Åtgärd:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"Aktiviteter\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"Aktivitet Undantag Dekoration\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"Aktivitetsstatus\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"Ikon för aktivitetstyp\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"Antal bilagor\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"Ändringar\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"Förändringar som påverkar ledningssystem\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"Stäng\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"Stängd\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"Stängda granskningar\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"Företag\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"Slutsats\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"Sekretess:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Skapad av\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Skapat den\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"Datum\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"Datum:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"Beslut\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"Beslut:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"Riktningsgranskning\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"Visningsnamn\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"Följare\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"Följare (partners)\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"Font awesomw ikon t.ex. fa-tasks\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"Har meddelande\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"Ikon\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"Ikon för att indikera en undantagsaktivitet.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"Om markerad, nya meddelanden kräver din uppmärksamhet.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"Om markerad, några meddelanden har leveransfel.\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"Ingångsvärde\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"Är Följare\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Senast uppdaterad av\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Senast uppdaterad den\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"Rader\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"Meddelandeleveransfel\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"Meddelande\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"Min Aktivitetsdeadline\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"Namn\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"Nästa aktivitetskalenderhändelse\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"Deadline för nästa aktivitet\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"Sammanfattning av nästa aktivitet\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"Nästa aktivitetstyp\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"Avvikelse\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"Antal åtgärder\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"Antal fel\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"Antal meddelanden som kräver åtgärd\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"Antal meddelanden med leveransfel\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"Öppna\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"Öppna Granskningar\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"Deltagare\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"Deltagare:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"Policy\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"Referens\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"Referens:\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"Referens:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"Ansvarig användare\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"Granskning\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"Bedömning Rader\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"Granskningsrader\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"Granska rapporten\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"Granskningar\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"Status\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"Status:\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\"Status baserad på aktiviteter\\n\"\n\"Försenad: Förfallodatumet är redan passerat\\n\"\n\"Idag: Aktivitetsdatum är idag\\n\"\n\"Planerad: Framtida aktiviteter.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Titel\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"Typ\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"Typ av undantagsaktivitet som registrerats.\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"Webbplatsmeddelanden\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"Webbplatskommunikationshistorik\"\n\n#~ msgid \"Non Conformity\"\n#~ msgstr \"Icke överensstämmelse\"\n\n#~ msgid \"Non Conformity Count\"\n#~ msgstr \"Antal avvikelser\"\n\n#~ msgid \"<strong>Satisfaction Survey Answers:</strong>\"\n#~ msgstr \"<strong>Svar på nöjdhetsundersökningen:</strong>\"\n\n#~ msgid \"Comments:\"\n#~ msgstr \"Kommentarer:\"\n\n#~ msgid \"Expectations:\"\n#~ msgstr \"Förväntningar:\"\n\n#~ msgid \"Improvements:\"\n#~ msgstr \"Förbättringar:\"\n\n#~ msgid \"Refrence:\"\n#~ msgstr \"Hänvisning:\"\n\n#~ msgid \"Survey Answers\"\n#~ msgstr \"Enkätsvar\"\n\n#~ msgid \"Last Modified on\"\n#~ msgstr \"Senast ändrad den\"\n\n#~ msgid \"Main Attachment\"\n#~ msgstr \"Huvudbilaga\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/th.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\\n\"\n\"Language: th\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"ปฏิบัติ\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/tr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_review\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-07 06:43+0000\\n\"\n\"PO-Revision-Date: 2016-08-07 06:43+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\\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\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"Oluşturan\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"Oluşturuldu\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"ID\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"Son güncelleyen\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"Son güncelleme\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"Başlık\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-07-25 18:15+0000\\n\"\n\"PO-Revision-Date: 2014-03-05 05:30+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Changes affecting the management systems:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Conclusion:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Policies:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"<strong>Review Report</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__action_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__action\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"Action Needed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Action:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_ids\nmsgid \"Activities\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Activity Exception Decoration\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"Activity State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Activity Type Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_attachment_count\nmsgid \"Attachment Count\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__changes\nmsgid \"Changes\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Changes affecting the management systems\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Close\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__done\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Closed Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__company_id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__company_id\nmsgid \"Company\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__conclusion\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Conclusion\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Confidentiality:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_uid\nmsgid \"Created by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__create_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__create_date\nmsgid \"Created on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__date\nmsgid \"Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Date:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__decision\nmsgid \"Decision\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Decision:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Direction Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__display_name\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__display_name\nmsgid \"Display Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_follower_ids\nmsgid \"Followers\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_partner_ids\nmsgid \"Followers (Partners)\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_type_icon\nmsgid \"Font awesome icon e.g. fa-tasks\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__has_message\nmsgid \"Has Message\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__id\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__id\nmsgid \"ID\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_icon\nmsgid \"Icon to indicate an exception activity.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction\nmsgid \"If checked, new messages require your attention.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"If checked, some messages have a delivery error.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Inputs\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_is_follower\nmsgid \"Is Follower\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_uid\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_uid\nmsgid \"Last Updated by\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__write_date\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__write_date\nmsgid \"Last Updated on\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__line_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error\nmsgid \"Message Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_ids\nmsgid \"Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__my_activity_date_deadline\nmsgid \"My Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__name\nmsgid \"Name\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_calendar_event_id\nmsgid \"Next Activity Calendar Event\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_date_deadline\nmsgid \"Next Activity Deadline\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_summary\nmsgid \"Next Activity Summary\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_type_id\nmsgid \"Next Activity Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__nonconformity_id\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review_line__type__nonconformity\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Nonconformity\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of Actions\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of errors\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_needaction_counter\nmsgid \"Number of messages requiring action\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__message_has_error_counter\nmsgid \"Number of messages with delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields.selection,name:mgmtsystem_review.selection__mgmtsystem_review__state__open\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\nmsgid \"Open Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__user_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Participants\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Participants:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__policy\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Policy\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__reference\nmsgid \"Reference\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference :\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"Reference:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__activity_user_id\nmsgid \"Responsible User\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__review_id\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_form\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model,name:mgmtsystem_review.model_mgmtsystem_review_line\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_form\nmsgid \"Review Line\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_line_list\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_line_filter\nmsgid \"Review Lines\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.report,name:mgmtsystem_review.review_report_mgmtsystem_review\nmsgid \"Review report\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.actions.act_window,name:mgmtsystem_review.open_mgmtsystem_review_list\n#: model:ir.ui.menu,name:mgmtsystem_review.menu_open_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_mgmtsystem_review_filter\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.view_review_calendar\nmsgid \"Reviews\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__message_has_sms_error\nmsgid \"SMS Delivery error\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__state\nmsgid \"State\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review.review_report\nmsgid \"State:\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_state\nmsgid \"\"\n\"Status based on activities\\n\"\n\"Overdue: Due date is already passed\\n\"\n\"Today: Activity date is today\\n\"\n\"Planned: Future activities.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__system_id\nmsgid \"System\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__name\nmsgid \"Title\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review_line__type\nmsgid \"Type\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__activity_exception_decoration\nmsgid \"Type of the exception activity on record.\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,field_description:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website Messages\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review\n#: model:ir.model.fields,help:mgmtsystem_review.field_mgmtsystem_review__website_message_ids\nmsgid \"Website communication history\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review/models/__init__.py",
    "content": "from . import mgmtsystem_review_line\nfrom . import mgmtsystem_review\n"
  },
  {
    "path": "mgmtsystem_review/models/mgmtsystem_review.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import api, fields, models\n\n\nclass MgmtsystemReview(models.Model):\n    _name = \"mgmtsystem.review\"\n    _inherit = [\"mail.thread\", \"mail.activity.mixin\"]\n    _description = \"Review\"\n\n    name = fields.Char(size=50, required=True)\n    reference = fields.Char(size=64, required=True, default=\"NEW\")\n    date = fields.Datetime(required=True)\n    system_id = fields.Many2one(\"mgmtsystem.system\")\n    user_ids = fields.Many2many(\n        \"res.users\",\n        \"mgmtsystem_review_user_rel\",\n        \"user_id\",\n        \"mgmtsystem_review_id\",\n        \"Participants\",\n    )\n    policy = fields.Html()\n    changes = fields.Html()\n    line_ids = fields.One2many(\"mgmtsystem.review.line\", \"review_id\", \"Lines\")\n    conclusion = fields.Html()\n    state = fields.Selection(\n        [(\"open\", \"Open\"), (\"done\", \"Closed\")],\n        default=\"open\",\n        tracking=True,\n    )\n\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n\n    @api.model_create_multi\n    def create(self, vals_list):\n        for vals in vals_list:\n            vals[\"reference\"] = self.env[\"ir.sequence\"].next_by_code(\n                \"mgmtsystem.review\"\n            )\n        return super().create(vals_list)\n\n    def button_close(self):\n        return self.write({\"state\": \"done\"})\n"
  },
  {
    "path": "mgmtsystem_review/models/mgmtsystem_review_line.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemReviewLine(models.Model):\n    _name = \"mgmtsystem.review.line\"\n    _description = \"Review Line\"\n\n    name = fields.Char(\"Title\", size=300, required=True)\n    type = fields.Selection([(\"action\", \"Action\"), (\"nonconformity\", \"Nonconformity\")])\n    action_id = fields.Many2one(\"mgmtsystem.action\", \"Action\", index=True)\n    nonconformity_id = fields.Many2one(\n        \"mgmtsystem.nonconformity\", \"Nonconformity\", index=True\n    )\n    decision = fields.Text()\n    review_id = fields.Many2one(\n        \"mgmtsystem.review\", \"Review\", ondelete=\"cascade\", index=True\n    )\n    company_id = fields.Many2one(\n        \"res.company\", \"Company\", default=lambda self: self.env.company\n    )\n"
  },
  {
    "path": "mgmtsystem_review/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_review/readme/CONTRIBUTORS.md",
    "content": "- Maxime Chambreuil \\<<maxime.chambreuil@savoirfairelinux.com>\\>\n- Loïc Faure-Lacroix \\<<loic.lacroix@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Luk Vermeylen \\<<luk@allmas-it.be>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- Julien Coux \\<<julien.coux@camptocamp.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n\n- [Trobz] (https://trobz.com/):\n  - Dung Tran \\<<dungtd@trobz.com>\\>\n  - Tuan Nguyen \\<<tuanna@trobz.com>\\>\n"
  },
  {
    "path": "mgmtsystem_review/readme/CREDITS.md",
    "content": "The migration of this module from 17.0 to 18.0 was financially supported by Camptocamp."
  },
  {
    "path": "mgmtsystem_review/readme/DESCRIPTION.md",
    "content": "This module was written to help you manage the top management reviews of\nyour systems.\n"
  },
  {
    "path": "mgmtsystem_review/readme/USAGE.md",
    "content": "To use this module, you need to:\n\n- go to Management Systems / Reviews\n- create a new review with the date, the persons, the policies of your\n  systems, the KPI and survey results\n- Discuss each problems and log your decision in the review lines with\n  an action or nonconformity\n- Conclude your review with the date of the next one and save it\n- Print the report\n"
  },
  {
    "path": "mgmtsystem_review/report/report.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"review_report_mgmtsystem_review\" model=\"ir.actions.report\">\n        <field name=\"name\">Review report</field>\n        <field name=\"model\">mgmtsystem.review</field>\n        <field name=\"report_type\">qweb-pdf</field>\n        <field name=\"report_name\">mgmtsystem_review.review_report_template</field>\n        <field\n            name=\"binding_model_id\"\n            ref=\"mgmtsystem_review.model_mgmtsystem_review\"\n        />\n        <field name=\"binding_type\">report</field>\n    </record>\n\n    <template id=\"review_report_template\">\n        <t t-call=\"web.html_container\">\n            <t t-foreach=\"docs\" t-as=\"doc\">\n                <t t-call=\"mgmtsystem_review.review_report\" />\n            </t>\n        </t>\n    </template>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review/report/review.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <template id=\"review_report\">\n        <t t-call=\"web.external_layout\">\n            <div class=\"page\">\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <div class=\"text-center\">\n                            <h1>\n                                <strong>Review Report</strong>\n                            </h1>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <div class=\"text-center\">\n                            <h1>\n                                <strong t-field=\"doc.name\" />\n                            </h1>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-3\">\n                        Confidentiality:\n                    </div>\n                    <div class=\"col-9 pull-right\">\n                        Direction Review\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-3\">\n                        Reference:\n                    </div>\n                    <div class=\"col-9 pull-right\">\n                        <span t-field=\"doc.reference\" />\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-3\">\n                        Date:\n                    </div>\n                    <div class=\"col-9 pull-right\">\n                        <span t-field=\"doc.date\" />\n                    </div>\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-3\">\n                        Participants:\n                    </div>\n                    <div class=\"col-9 pull-right\">\n                        <ul class=\"list-unstyled\">\n                            <t t-foreach=\"doc.user_ids\" t-as=\"participant\">\n                                <li>\n                                    <span t-field=\"participant.name\" />\n                                </li>\n                            </t>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <h2>\n                            <strong>Policies:</strong>\n                        </h2>\n                        <span t-field=\"doc.policy\" />\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <h2>\n                            <strong>Changes affecting the management systems:</strong>\n                        </h2>\n                        <span t-field=\"doc.changes\" />\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <t t-foreach=\"doc.line_ids\" t-as=\"line\">\n                            <h3>\n                                <strong>\n                                    <span t-field=\"line.name\" />\n                                </strong>\n                            </h3>\n\n                            <ul class=\"list-unstyled\" style=\"padding-left:15px\">\n                                <li>Action:\n                                    <t t-if=\"line.type=='action'\">\n                                    <span t-field=\"line.action_id.name\" />\n                                </t>\n                                    <t t-if=\"line.type=='nonconformity'\">\n                                    <span t-field=\"line.nonconformity_id.description\" />\n                                </t>\n                                </li>\n                                <li>State:\n                                    <t t-if=\"line.type=='action'\">\n                                    <span t-field=\"line.action_id.stage_id.name\" />\n                                </t>\n                                    <t t-if=\"line.type=='nonconformity'\">\n                                    <span t-field=\"line.nonconformity_id.state\" />\n                                </t>\n                                </li>\n                                <li>Decision:\n                                    <span t-field=\"line.decision\" /></li>\n                                <li>Reference :\n                                    <t t-if=\"line.type=='action'\">\n                                        Action\n                                        <span t-field=\"line.action_id.reference\" />\n                                    </t>\n                                    <t t-if=\"line.type=='nonconformity'\">\n                                        Nonconformity\n                                        <span t-field=\"line.nonconformity_id.ref\" />\n                                    </t>\n                                </li>\n                            </ul>\n                        </t>\n                    </div>\n                </div>\n                <div class=\"row\" style=\"padding-top:10px\">\n                    <div class=\"col-12\">\n                        <h2>\n                            <strong>Conclusion:</strong>\n                        </h2>\n                        <span t-field=\"doc.conclusion\" />\n                    </div>\n                </div>\n            </div>\n        </t>\n    </template>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review/security/ir.model.access.csv",
    "content": "\"id\",\"name\",\"model_id:id\",\"group_id:id\",\"perm_read\",\"perm_write\",\"perm_create\",\"perm_unlink\"\n\"access_mgmtsystem_review_manager\",\"mgmtsystem.review.manager\",\"model_mgmtsystem_review\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,0\n\"access_mgmtsystem_review_line_manager\",\"mgmtsystem.review.line.manager\",\"model_mgmtsystem_review_line\",\"mgmtsystem.group_mgmtsystem_manager\",1,1,1,0\n"
  },
  {
    "path": "mgmtsystem_review/security/mgmtsystem_review_security.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo noupdate=\"1\">\n    <!-- Rule -->\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_review_rule\">\n        <field name=\"name\">mgmtsystem_review multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_review\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>\n    </record>\n\n    <record model=\"ir.rule\" id=\"mgmtsystem_review_line_rule\">\n        <field name=\"name\">mgmtsystem_review_line multi-company</field>\n        <field name=\"model_id\" ref=\"model_mgmtsystem_review_line\" />\n        <field name=\"global\" eval=\"True\" />\n        <field\n            name=\"domain_force\"\n        >['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review/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=\"management-system-review\">\n<h1>Management System - Review</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:590346a5f617d6e6b808994b900645dd5690d65d85f5932bdfa7bd9e61e0b724\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/management-system/tree/18.0/mgmtsystem_review\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_review\"><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/management-system&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 was written to help you manage the top management reviews of\nyour systems.</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=\"#usage\" id=\"toc-entry-1\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-2\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-3\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-4\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-5\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-6\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-7\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"usage\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Usage</a></h2>\n<p>To use this module, you need to:</p>\n<ul class=\"simple\">\n<li>go to Management Systems / Reviews</li>\n<li>create a new review with the date, the persons, the policies of your\nsystems, the KPI and survey results</li>\n<li>Discuss each problems and log your decision in the review lines with\nan action or nonconformity</li>\n<li>Conclude your review with the date of the next one and save it</li>\n<li>Print the report</li>\n</ul>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-2\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_review%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-3\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:maxime.chambreuil&#64;savoirfairelinux.com\">maxime.chambreuil&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Loïc Faure-Lacroix &lt;<a class=\"reference external\" href=\"mailto:loic.lacroix&#64;savoirfairelinux.com\">loic.lacroix&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Luk Vermeylen &lt;<a class=\"reference external\" href=\"mailto:luk&#64;allmas-it.be\">luk&#64;allmas-it.be</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li>Julien Coux &lt;<a class=\"reference external\" href=\"mailto:julien.coux&#64;camptocamp.com\">julien.coux&#64;camptocamp.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n<li>[Trobz] (<a class=\"reference external\" href=\"https://trobz.com/\">https://trobz.com/</a>):<ul>\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Tuan Nguyen &lt;<a class=\"reference external\" href=\"mailto:tuanna&#64;trobz.com\">tuanna&#64;trobz.com</a>&gt;</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-6\">Other credits</a></h3>\n<p>The migration of this module from 17.0 to 18.0 was financially supported\nby Camptocamp.</p>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-7\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review\">OCA/management-system</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": "mgmtsystem_review/tests/__init__.py",
    "content": "from . import test_create_review\n"
  },
  {
    "path": "mgmtsystem_review/tests/test_create_review.py",
    "content": "from odoo import fields\n\nfrom odoo.addons.base.tests.common import BaseCommon\n\n\nclass TestModelReviewBase(BaseCommon):\n    @classmethod\n    def setUpClass(cls):\n        super().setUpClass()\n        cls.review = cls.env[\"mgmtsystem.review\"].create(\n            {\"name\": \"SampleReview\", \"date\": fields.Datetime.now()}\n        )\n\n\nclass TestModelReview(TestModelReviewBase):\n    \"\"\"Test class for mgmtsystem_review.\"\"\"\n\n    def test_review_misc(self):\n        self.assertNotEqual(self.review.reference, \"NEW\")\n        self.review.button_close()\n        self.assertEqual(self.review.state, \"done\")\n        res = self.env[\"ir.actions.report\"]._render(\n            \"mgmtsystem_review.review_report_template\", self.review.ids\n        )\n        self.assertRegex(str(res[0]), \"SampleReview\")\n"
  },
  {
    "path": "mgmtsystem_review/views/mgmtsystem_review.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <!-- Review Lines -->\n\n    <record id=\"view_mgmtsystem_review_line_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.review.line.list</field>\n        <field name=\"model\">mgmtsystem.review.line</field>\n        <field name=\"type\">list</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" />\n                <field name=\"type\" />\n                <field name=\"decision\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_review_line_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.review.line.filter</field>\n        <field name=\"model\">mgmtsystem.review.line</field>\n        <field name=\"type\">search</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Review Lines\">\n                <field name=\"name\" />\n                <field name=\"type\" />\n                <field name=\"action_id\" />\n                <field name=\"nonconformity_id\" />\n                <field name=\"decision\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n            </search>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_review_line_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.review.line.form</field>\n        <field name=\"type\">form</field>\n        <field name=\"model\">mgmtsystem.review.line</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Review Line\">\n                <group colspan=\"4\" col=\"4\">\n                    <field name=\"name\" />\n                    <field name=\"type\" />\n                    <newline />\n                    <field name=\"action_id\" invisible=\"type != 'action'\" />\n                    <field\n                        name=\"nonconformity_id\"\n                        invisible=\"type != 'nonconformity'\"\n                    />\n                    <newline />\n                    <field name=\"decision\" />\n                    <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                </group>\n            </form>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_review_line_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Review Lines</field>\n        <field name=\"res_model\">mgmtsystem.review.line</field>\n        <field name=\"view_mode\">list,form</field>\n    </record>\n\n    <!-- Reviews -->\n\n    <record id=\"view_mgmtsystem_review_tree\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.review.list</field>\n        <field name=\"model\">mgmtsystem.review</field>\n        <field name=\"type\">list</field>\n        <field name=\"arch\" type=\"xml\">\n            <list>\n                <field name=\"name\" readonly=\"state == 'done'\" />\n                <field name=\"date\" readonly=\"state == 'done'\" />\n                <field name=\"reference\" readonly=\"1\" />\n                <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                <!-- Invisible fields below are to allow their use in domains of this view -->\n                <field name=\"state\" readonly=\"1\" column_invisible=\"1\" />\n            </list>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_review_filter\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.review.filter</field>\n        <field name=\"model\">mgmtsystem.review</field>\n        <field name=\"type\">search</field>\n        <field name=\"arch\" type=\"xml\">\n            <search string=\"Reviews\">\n                <group>\n                    <filter\n                        name=\"current\"\n                        domain=\"[('state','=','open')]\"\n                        string=\"Open\"\n                        help=\"Open Reviews\"\n                    />\n                    <filter\n                        name=\"closed\"\n                        domain=\"[('state','=','done')]\"\n                        string=\"Closed\"\n                        help=\"Closed Reviews\"\n                    />\n                    <separator orientation=\"vertical\" />\n                    <field name=\"name\" />\n                    <field name=\"date\" />\n                    <field name=\"reference\" readonly=\"1\" />\n                    <field name=\"company_id\" groups=\"base.group_multi_company\" />\n                </group>\n            </search>\n        </field>\n    </record>\n\n    <record id=\"view_mgmtsystem_review_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.review.form</field>\n        <field name=\"model\">mgmtsystem.review</field>\n        <field name=\"arch\" type=\"xml\">\n            <form string=\"Review\">\n                <header>\n                    <button\n                        name=\"button_close\"\n                        string=\"Close\"\n                        invisible=\"state != 'open'\"\n                        type=\"object\"\n                    />\n                    <field name=\"state\" widget=\"statusbar\" select=\"1\" readonly=\"1\" />\n                </header>\n                <sheet>\n                    <div name=\"button_box\" class=\"oe_button_box\" />\n                    <label for=\"name\" class=\"oe_edit_only\" />\n                    <h1>\n                        <field name=\"name\" readonly=\"state == 'done'\" />\n                    </h1>\n                    <group>\n                        <group>\n                            <field name=\"date\" readonly=\"state == 'done'\" />\n                        </group>\n                        <group>\n                            <field name=\"reference\" readonly=\"1\" />\n                            <field name=\"system_id\" readonly=\"state == 'done'\" />\n                            <field\n                                name=\"company_id\"\n                                groups=\"base.group_multi_company\"\n                            />\n                        </group>\n                    </group>\n                    <notebook colspan=\"4\">\n                        <page string=\"Participants\">\n                            <field\n                                name=\"user_ids\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                                options=\"{'no_create': True}\"\n                                context=\"{'tree_view_ref': 'mgmtsystem_review.mgmtsystem_review_res_users_x2m_tree'}\"\n                            />\n                        </page>\n                        <page name=\"inputs\" string=\"Inputs\">\n                            <group colspan=\"4\">\n                                <separator string=\"Policy\" colspan=\"2\" />\n                                <field\n                                    name=\"policy\"\n                                    readonly=\"state == 'done'\"\n                                    colspan=\"2\"\n                                    nolabel=\"1\"\n                                />\n                                <separator\n                                    string=\"Changes affecting the management systems\"\n                                    colspan=\"2\"\n                                />\n                                <field\n                                    name=\"changes\"\n                                    readonly=\"state == 'done'\"\n                                    colspan=\"2\"\n                                    nolabel=\"1\"\n                                />\n                            </group>\n                        </page>\n                        <page string=\"Lines\">\n                            <field\n                                name=\"line_ids\"\n                                nolabel=\"1\"\n                                readonly=\"state == 'done'\"\n                            />\n                        </page>\n                        <page string=\"Conclusion\">\n                            <field\n                                name=\"conclusion\"\n                                nolabel=\"1\"\n                                readonly=\" state == 'done'\"\n                            />\n                        </page>\n                    </notebook>\n                </sheet>\n                <chatter />\n            </form>\n        </field>\n    </record>\n\n    <record id=\"view_review_calendar\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.review.calendar</field>\n        <field name=\"model\">mgmtsystem.review</field>\n        <field name=\"type\">calendar</field>\n        <field eval=\"2\" name=\"priority\" />\n        <field name=\"arch\" type=\"xml\">\n            <calendar color=\"name\" date_start=\"date\" string=\"Reviews\">\n                <field name=\"name\" />\n                <field name=\"user_ids\" />\n            </calendar>\n        </field>\n    </record>\n\n    <record id=\"open_mgmtsystem_review_list\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Reviews</field>\n        <field name=\"res_model\">mgmtsystem.review</field>\n        <field name=\"view_mode\">list,form,calendar</field>\n        <field name=\"view_id\" ref=\"view_mgmtsystem_review_tree\" />\n        <field name=\"search_view_id\" ref=\"view_mgmtsystem_review_filter\" />\n        <field name=\"context\">{\"search_default_current\":1}</field>\n    </record>\n\n    <menuitem\n        id=\"menu_open_review\"\n        action=\"open_mgmtsystem_review_list\"\n        parent=\"mgmtsystem.menu_mgmtsystem_main\"\n        sequence=\"50\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review/views/res_users.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record model=\"ir.ui.view\" id=\"mgmtsystem_review_res_users_x2m_tree\">\n        <field\n            name=\"name\"\n        >mgmtsystem.review.res.users.x2m.form (in mgmtsystem_review)</field>\n        <field name=\"model\">res.users</field>\n        <field name=\"arch\" type=\"xml\">\n            <list create=\"1\" delete=\"1\">\n                <field name=\"name\" />\n                <field name=\"login\" />\n                <field name=\"lang\" />\n                <field name=\"login_date\" />\n            </list>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review_objective/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===========================\nMgmtsystem Review Objective\n===========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:56d7b9794465a6455ea967cc6dd559c2f65ef12a0bbae0ecc965f87867b5b44c\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review_objective\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_review_objective\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module allows to specify objectives on reviews.\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/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_review_objective%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 Tobella\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review_objective>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_review_objective/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_review_objective/__manifest__.py",
    "content": "# Copyright 2025 Dixmit\n# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Mgmtsystem Review Objective\",\n    \"summary\": \"\"\"Integrate reviews and objectives\"\"\",\n    \"version\": \"18.0.1.0.1\",\n    \"license\": \"AGPL-3\",\n    \"author\": \"Dixmit,Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"depends\": [\n        \"mgmtsystem_review\",\n        \"mgmtsystem_objective\",\n    ],\n    \"data\": [\n        \"views/mgmtsystem_indicator_value.xml\",\n        \"views/mgmtsystem_review.xml\",\n    ],\n    \"demo\": [],\n}\n"
  },
  {
    "path": "mgmtsystem_review_objective/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_review_objective\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 18.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2026-01-19 13:50+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.15.2\\n\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model.fields,field_description:mgmtsystem_review_objective.field_mgmtsystem_review__end_date\nmsgid \"End Date\"\nmsgstr \"Data fine\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model.fields,field_description:mgmtsystem_review_objective.field_mgmtsystem_review__objective_domain\nmsgid \"Objective Domain\"\nmsgstr \"Dominio obiettivo\"\n\n#. module: mgmtsystem_review_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review_objective.mgmtsystem_review_form_view\nmsgid \"Objectives\"\nmsgstr \"Obiettivi\"\n\n#. module: mgmtsystem_review_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review_objective.mgmtsystem_review_form_view\nmsgid \"Period\"\nmsgstr \"Periodo\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model,name:mgmtsystem_review_objective.model_mgmtsystem_review\nmsgid \"Review\"\nmsgstr \"Revisione\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.actions.act_window,name:mgmtsystem_review_objective.mgmtsystem_indicator_value_action\nmsgid \"Review Objectives\"\nmsgstr \"Revisione obiettivi\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model.fields,field_description:mgmtsystem_review_objective.field_mgmtsystem_review__objective_ids\nmsgid \"Reviewed objectives\"\nmsgstr \"Obiettivi revisionati\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model.fields,field_description:mgmtsystem_review_objective.field_mgmtsystem_review__start_date\nmsgid \"Start Date\"\nmsgstr \"Data inizio\"\n"
  },
  {
    "path": "mgmtsystem_review_objective/i18n/mgmtsystem_review_objective.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_review_objective\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: mgmtsystem_review_objective\n#: model:ir.model.fields,field_description:mgmtsystem_review_objective.field_mgmtsystem_review__end_date\nmsgid \"End Date\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model.fields,field_description:mgmtsystem_review_objective.field_mgmtsystem_review__objective_domain\nmsgid \"Objective Domain\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review_objective.mgmtsystem_review_form_view\nmsgid \"Objectives\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_objective\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review_objective.mgmtsystem_review_form_view\nmsgid \"Period\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model,name:mgmtsystem_review_objective.model_mgmtsystem_review\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.actions.act_window,name:mgmtsystem_review_objective.mgmtsystem_indicator_value_action\nmsgid \"Review Objectives\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model.fields,field_description:mgmtsystem_review_objective.field_mgmtsystem_review__objective_ids\nmsgid \"Reviewed objectives\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_objective\n#: model:ir.model.fields,field_description:mgmtsystem_review_objective.field_mgmtsystem_review__start_date\nmsgid \"Start Date\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review_objective/models/__init__.py",
    "content": "from . import mgmtsystem_review\n"
  },
  {
    "path": "mgmtsystem_review_objective/models/mgmtsystem_review.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\n\n\nclass MgmtsystemReview(models.Model):\n    _inherit = \"mgmtsystem.review\"\n\n    start_date = fields.Date()\n    end_date = fields.Date()\n    objective_ids = fields.Many2many(\n        \"mgmtsystem.objective\", string=\"Reviewed objectives\"\n    )\n    objective_domain = fields.Binary(compute=\"_compute_objective_domain\")\n\n    @api.depends(\"start_date\", \"end_date\", \"system_id\")\n    def _compute_objective_domain(self):\n        for record in self:\n            record.objective_domain = record._get_objective_domain()\n\n    def _get_objective_domain(self):\n        self.ensure_one()\n        domain = [(\"state\", \"not in\", [\"draft\", \"cancelled\"])]\n        if self.start_date:\n            domain += [\n                \"|\",\n                (\"date_end\", \"=\", False),\n                (\"date_end\", \">=\", self.start_date),\n            ]\n        if self.end_date:\n            domain += [\n                \"|\",\n                (\"date_start\", \"=\", False),\n                (\"date_start\", \"<=\", self.end_date),\n            ]\n        if self.system_id:\n            domain += [\n                \"|\",\n                (\"system_id\", \"=\", False),\n                (\"system_id\", \"=\", self.system_id.id),\n            ]\n        return domain\n\n    def action_open_objectives(self):\n        self.ensure_one()\n        action = self.env.ref(\n            \"mgmtsystem_review_objective.mgmtsystem_indicator_value_action\"\n        ).read()[0]\n        domain = [(\"objective_id\", \"in\", self.objective_ids.ids)]\n        if self.start_date:\n            domain += [(\"date\", \">=\", self.start_date)]\n        if self.end_date:\n            domain += [(\"date\", \"<=\", self.end_date)]\n        action[\"domain\"] = domain\n        return action\n"
  },
  {
    "path": "mgmtsystem_review_objective/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_review_objective/readme/CONTRIBUTORS.md",
    "content": "- [Dixmit](https://www.dixmit.com)\n  - Enric Tobella\n"
  },
  {
    "path": "mgmtsystem_review_objective/readme/DESCRIPTION.md",
    "content": "This module allows to specify objectives on reviews.\n"
  },
  {
    "path": "mgmtsystem_review_objective/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=\"mgmtsystem-review-objective\">\n<h1>Mgmtsystem Review Objective</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:56d7b9794465a6455ea967cc6dd559c2f65ef12a0bbae0ecc965f87867b5b44c\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/management-system/tree/18.0/mgmtsystem_review_objective\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_review_objective\"><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/management-system&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 to specify objectives on reviews.</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<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_review_objective%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-2\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-3\">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-4\">Contributors</a></h3>\n<ul class=\"simple\">\n<li><a class=\"reference external\" href=\"https://www.dixmit.com\">Dixmit</a><ul>\n<li>Enric Tobella</li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review_objective\">OCA/management-system</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": "mgmtsystem_review_objective/views/mgmtsystem_indicator_value.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=\"mgmtsystem_indicator_value_pivot_view\">\n        <field name=\"model\">mgmtsystem.indicator.value</field>\n        <field name=\"arch\" type=\"xml\">\n            <pivot>\n                <field name=\"date\" type=\"row\" interval=\"day\" />\n                <field name=\"indicator_id\" type=\"col\" />\n                <field name=\"value\" type=\"measure\" />\n            </pivot>\n        </field>\n    </record>\n    <record model=\"ir.actions.act_window\" id=\"mgmtsystem_indicator_value_action\">\n        <field name=\"name\">Review Objectives</field>\n        <field name=\"res_model\">mgmtsystem.indicator.value</field>\n        <field name=\"view_mode\">pivot</field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review_objective/views/mgmtsystem_review.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=\"mgmtsystem_review_form_view\">\n        <field name=\"model\">mgmtsystem.review</field>\n        <field name=\"inherit_id\" ref=\"mgmtsystem_review.view_mgmtsystem_review_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <div name=\"button_box\" position=\"inside\">\n                <button\n                    name=\"action_open_objectives\"\n                    string=\"Objectives\"\n                    type=\"object\"\n                    class=\"oe_stat_button\"\n                    icon=\"fa-table\"\n                    invisible=\"not objective_ids\"\n                />\n            </div>\n            <notebook position=\"inside\">\n                <page string=\"Objectives\">\n                    <group>\n                        <label for=\"start_date\" class=\"o_form_label\" string=\"Period\" />\n                        <div class=\"o_row\">\n                            <field\n                                name=\"start_date\"\n                                widget=\"daterange\"\n                                readonly=\"state == 'done'\"\n                                options=\"{'end_date_field': 'end_date', 'always_range': True}\"\n                            />\n                            <field name=\"end_date\" invisible=\"1\" />\n                        </div>\n                        <field name=\"objective_domain\" invisible=\"1\" />\n                        <field\n                            name=\"objective_ids\"\n                            domain=\"objective_domain\"\n                            widget=\"many2many_tags\"\n                            readonly=\"state == 'done'\"\n                            options=\"{'no_create': True, 'edit_tags': True}\"\n                        />\n                    </group>\n                </page>\n            </notebook>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review_survey/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=================================\nManagement System - Review Survey\n=================================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:c6d347c1c8cc75975ad065d9c48a9feddb7aa2e84f43fc543c4df27a0ee19309\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review_survey\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_review_survey\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module adds the possibility of Survey Answers to reviews.\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/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_review_survey%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* Savoir-faire Linux\n\nContributors\n------------\n\n- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>\n- Loïc Faure-Lacroix <loic.lacroix@savoirfairelinux.com>\n- Gervais Naoussi <gervaisnaoussi@gmail.com>\n- Luk Vermeylen <luk@allmas-it.be>\n- Eugen Don <eugen.don@don-systems.de>\n- Jose Maria Alzaga <jose.alzaga@aselcis.com>\n- Julien Coux <julien.coux@camptocamp.com>\n- `Tecnativa <https://www.tecnativa.com>`__:\n\n  - Ernesto Tejeda\n  - Víctor Martínez\n\nTrobz\n\n- Dung Tran <dungtd@trobz.com>\n- Yvan Dotet <yvan.dotet@logicasoft.eu>\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\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review_survey>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_review_survey/__init__.py",
    "content": "from . import models\n"
  },
  {
    "path": "mgmtsystem_review_survey/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Review Survey\",\n    \"version\": \"18.0.2.0.0\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem_review\", \"survey\"],\n    \"data\": [\n        \"views/mgmtsystem_review_views.xml\",\n        \"report/review.xml\",\n    ],\n    \"installable\": True,\n    \"auto_install\": True,\n}\n"
  },
  {
    "path": "mgmtsystem_review_survey/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_review_survey\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 18.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2025-10-02 21:43+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: mgmtsystem_review_survey\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review_survey.review_report\nmsgid \"<strong>Satisfaction Survey Answers:</strong>\"\nmsgstr \"<strong>Risposte sondaggio di soddisfazione:</strong>\"\n\n#. module: mgmtsystem_review_survey\n#: model:ir.model,name:mgmtsystem_review_survey.model_mgmtsystem_review\nmsgid \"Review\"\nmsgstr \"Revisione\"\n\n#. module: mgmtsystem_review_survey\n#: model:ir.model.fields,field_description:mgmtsystem_review_survey.field_mgmtsystem_review__response_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review_survey.view_mgmtsystem_review_form\nmsgid \"Survey Answers\"\nmsgstr \"Risposte sondaggio\"\n"
  },
  {
    "path": "mgmtsystem_review_survey/i18n/mgmtsystem_review_survey.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_review_survey\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: mgmtsystem_review_survey\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review_survey.review_report\nmsgid \"<strong>Satisfaction Survey Answers:</strong>\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_survey\n#: model:ir.model,name:mgmtsystem_review_survey.model_mgmtsystem_review\nmsgid \"Review\"\nmsgstr \"\"\n\n#. module: mgmtsystem_review_survey\n#: model:ir.model.fields,field_description:mgmtsystem_review_survey.field_mgmtsystem_review__response_ids\n#: model_terms:ir.ui.view,arch_db:mgmtsystem_review_survey.view_mgmtsystem_review_form\nmsgid \"Survey Answers\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_review_survey/models/__init__.py",
    "content": "from . import mgmtsystem_review\n"
  },
  {
    "path": "mgmtsystem_review_survey/models/mgmtsystem_review.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\nfrom odoo import fields, models\n\n\nclass MgmtsystemReview(models.Model):\n    _inherit = \"mgmtsystem.review\"\n\n    response_ids = fields.Many2many(\n        \"survey.user_input\",\n        \"mgmtsystem_review_response_rel\",\n        \"response_id\",\n        \"mgmtsystem_review_id\",\n        \"Survey Answers\",\n    )\n"
  },
  {
    "path": "mgmtsystem_review_survey/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_review_survey/readme/CONTRIBUTORS.md",
    "content": "- Maxime Chambreuil \\<<maxime.chambreuil@savoirfairelinux.com>\\>\n- Loïc Faure-Lacroix \\<<loic.lacroix@savoirfairelinux.com>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Luk Vermeylen \\<<luk@allmas-it.be>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- Julien Coux \\<<julien.coux@camptocamp.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n  - Víctor Martínez\n\nTrobz\n\n- Dung Tran \\<<dungtd@trobz.com>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n"
  },
  {
    "path": "mgmtsystem_review_survey/readme/DESCRIPTION.md",
    "content": "This module adds the possibility of Survey Answers to reviews.\n"
  },
  {
    "path": "mgmtsystem_review_survey/report/review.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <template id=\"review_report\" inherit_id=\"mgmtsystem_review.review_report\">\n        <t t-foreach=\"doc.line_ids\" position=\"before\">\n            <h2>\n                <strong>Satisfaction Survey Answers:</strong>\n            </h2>\n            <t t-foreach=\"doc.response_ids\" t-as=\"response\">\n                <h3>\n                    <strong>\n                        <span t-field=\"response.survey_id.title\" />\n                    </strong>\n                </h3>\n                <ul style=\"padding-left:15px\">\n                    <t t-foreach=\"response.user_input_line_ids\" t-as=\"user_input\">\n                        <t\n                            t-if=\"user_input.answer_type and user_input.answer_type!='suggestion'\"\n                        >\n                            <t\n                                t-set=\"user_input_key\"\n                                t-value=\"'value_'+str(user_input.answer_type)\"\n                            />\n                            <li><span t-field=\"user_input.question_id.title\" />:\n                                <span t-esc=\"user_input[user_input_key]\" />\n                            </li>\n                        </t>\n                    </t>\n                </ul>\n            </t>\n        </t>\n    </template>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_review_survey/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=\"management-system-review-survey\">\n<h1>Management System - Review Survey</h1>\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:c6d347c1c8cc75975ad065d9c48a9feddb7aa2e84f43fc543c4df27a0ee19309\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/management-system/tree/18.0/mgmtsystem_review_survey\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_review_survey\"><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/management-system&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 adds the possibility of Survey Answers to reviews.</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<h2><a class=\"toc-backref\" href=\"#toc-entry-1\">Bug Tracker</a></h2>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_review_survey%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-2\">Credits</a></h2>\n<div class=\"section\" id=\"authors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-3\">Authors</a></h3>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-4\">Contributors</a></h3>\n<ul class=\"simple\">\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:maxime.chambreuil&#64;savoirfairelinux.com\">maxime.chambreuil&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Loïc Faure-Lacroix &lt;<a class=\"reference external\" href=\"mailto:loic.lacroix&#64;savoirfairelinux.com\">loic.lacroix&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Luk Vermeylen &lt;<a class=\"reference external\" href=\"mailto:luk&#64;allmas-it.be\">luk&#64;allmas-it.be</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li>Julien Coux &lt;<a class=\"reference external\" href=\"mailto:julien.coux&#64;camptocamp.com\">julien.coux&#64;camptocamp.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n<li>Víctor Martínez</li>\n</ul>\n</li>\n</ul>\n<p>Trobz</p>\n<ul class=\"simple\">\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h3><a class=\"toc-backref\" href=\"#toc-entry-5\">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>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_review_survey\">OCA/management-system</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": "mgmtsystem_review_survey/views/mgmtsystem_review_views.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<odoo>\n    <record id=\"view_mgmtsystem_review_form\" model=\"ir.ui.view\">\n        <field name=\"name\">mgmtsystem.review.form</field>\n        <field name=\"model\">mgmtsystem.review</field>\n        <field name=\"inherit_id\" ref=\"mgmtsystem_review.view_mgmtsystem_review_form\" />\n        <field name=\"arch\" type=\"xml\">\n            <page name=\"inputs\" position=\"inside\">\n                <separator string=\"Survey Answers\" colspan=\"4\" />\n                <field\n                    name=\"response_ids\"\n                    colspan=\"4\"\n                    nolabel=\"1\"\n                    readonly=\"state == 'done'\"\n                >\n                    <list>\n                        <field name=\"survey_id\" />\n                        <field name=\"create_date\" />\n                        <field name=\"deadline\" />\n                        <field name=\"partner_id\" />\n                        <field name=\"email\" />\n                        <field name=\"state\" />\n                        <field name=\"test_entry\" column_invisible=\"True\" />\n                        <field name=\"scoring_percentage\" groups=\"base.group_no_one\" />\n                    </list>\n                </field>\n            </page>\n        </field>\n    </record>\n</odoo>\n"
  },
  {
    "path": "mgmtsystem_survey/README.rst",
    "content": "==========================\nManagement System - Survey\n==========================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:bc02ffebcb1a81c48d8cabb5e9024924374bc765d21bd935c5ca211cf23babf8\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%2Fmanagement--system-lightgray.png?logo=github\n    :target: https://github.com/OCA/management-system/tree/18.0/mgmtsystem_survey\n    :alt: OCA/management-system\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_survey\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/management-system&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module enables you to manage your customer satisfaction surveys and\ntheir answers.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo configure this module, you need to:\n\n1. Go to Management System > Configuration > Surveys\n2. Click on Create to create your customer satisfaction survey\n3. Add pages and questions\n\nUsage\n=====\n\nTo use this module, you need to:\n\n1. Publish the survey on the web (using the website module) or\n2. Print the survey and send it by email or\n3. Call your customer and go through the list of questions over the\n   phone\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_survey%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* Savoir-faire Linux\n\nContributors\n------------\n\n-  Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>\n\n-  Daniel Reis <dgreis@sapo.pt>\n\n-  Loïc Lacroix <loic.lacroix@savoirfairelinux.com>\n\n-  Stéphane Bidoul <stephane.bidoul@acsone.eu>\n\n-  Gervais Naoussi <gervaisnaoussi@gmail.com>\n\n-  Luk Vermeylen <luk@allmas-it.be>\n\n-  Eugen Don <eugen.don@don-systems.de>\n\n-  Jose Maria Alzaga <jose.alzaga@aselcis.com>\n\n-  Julien Coux <julien.coux@camptocamp.com>\n\n-  `Tecnativa <https://www.tecnativa.com>`__:\n\n   -  Ernesto Tejeda\n   -  Pedro M. Baeza\n\n-  `Binhex <https://binhex.cloud//com>`__:\n\n   -  David Luis Mora <d.luis@binhex.cloud>\n\n-  Yvan Dotet <yvan.dotet@logicasoft.eu>\n\n-  `Trobz <https://www.trobz.com>`__:\n\n   -  Dung Tran <dungtd@trobz.com>\n   -  Khoi (Kien Kim) <khoikk@trobz.com>\n\nOther credits\n-------------\n\nThe migration of this module from 17.0 to 18.0 was financially supported\nby:\n\n-  Camptocamp\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-max3903| image:: https://github.com/max3903.png?size=40px\n    :target: https://github.com/max3903\n    :alt: max3903\n\nCurrent `maintainer <https://odoo-community.org/page/maintainer-role>`__:\n\n|maintainer-max3903| \n\nThis module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/18.0/mgmtsystem_survey>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n"
  },
  {
    "path": "mgmtsystem_survey/__init__.py",
    "content": "# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n"
  },
  {
    "path": "mgmtsystem_survey/__manifest__.py",
    "content": "# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).\n# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).\n\n{\n    \"name\": \"Management System - Survey\",\n    \"version\": \"18.0.1.0.0\",\n    \"author\": \"Savoir-faire Linux, Odoo Community Association (OCA)\",\n    \"website\": \"https://github.com/OCA/management-system\",\n    \"license\": \"AGPL-3\",\n    \"category\": \"Management System\",\n    \"depends\": [\"mgmtsystem\", \"survey\"],\n    \"data\": [\"views/survey_survey.xml\"],\n    \"installable\": True,\n    \"development_status\": \"Beta\",\n    \"maintainers\": [\"max3903\"],\n}\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/de.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\\n\"\n\"Language: de\\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Umfragen\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Management-System\"\n\n#, fuzzy\n#~ msgid \"Survey\"\n#~ msgstr \"Umfragen\"\n\n#, fuzzy\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Umfragen\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/es.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2018\n# enjolras <yo@miguelrevilla.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-02-10 07:39+0000\\n\"\n\"PO-Revision-Date: 2022-02-12 21:16+0000\\n\"\n\"Last-Translator: Miquel Romera <mromera@pmsastro.es>\\n\"\n\"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\\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.3.2\\n\"\n\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Encuestas\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistema de gestión\"\n\n#~ msgid \"Survey\"\n#~ msgstr \"Encuestas\"\n\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Etapa de la encuesta\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/es_CO.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2018-01-16 07:18+0000\\n\"\n\"PO-Revision-Date: 2018-01-16 07:18+0000\\n\"\n\"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.\"\n\"com>, 2018\\n\"\n\"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/\"\n\"es_CO/)\\n\"\n\"Language: es_CO\\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Encuestas\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistema de Gestión\"\n\n#, fuzzy\n#~ msgid \"Survey\"\n#~ msgstr \"Encuestas\"\n\n#, fuzzy\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Encuestas\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/fi.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\\n\"\n\"Language: fi\\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Johtamisjärjestelmä\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/fr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2012\n# Maxime Chambreuil <maxime.chambreuil@gmail.com>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-05-26 18:45+0000\\n\"\n\"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\\n\"\n\"Language-Team: French (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/fr/)\\n\"\n\"Language: fr\\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Questionnaires\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Système de gestion\"\n\n#, fuzzy\n#~ msgid \"Survey\"\n#~ msgstr \"Questionnaires\"\n\n#, fuzzy\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Questionnaires\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/hr_HR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# Bole <bole@dajmi5.com>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-05-01 20:06+0000\\n\"\n\"PO-Revision-Date: 2017-05-01 20:06+0000\\n\"\n\"Last-Translator: Bole <bole@dajmi5.com>, 2017\\n\"\n\"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/\"\n\"hr_HR/)\\n\"\n\"Language: hr_HR\\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n\"\n\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Susatv upravljanja\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/hu.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\\n\"\n\"Language: hu\\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Menedzsment rendszer\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/it.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_survey\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 11.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"PO-Revision-Date: 2022-11-03 13:44+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 4.14.1\\n\"\n\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Sondaggi\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistema di gestione\"\n\n#~ msgid \"Survey\"\n#~ msgstr \"Sondaggio\"\n\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Fase sondaggio\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/lv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\\n\"\n\"Language: lv\\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : \"\n\"2);\\n\"\n\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Vadības sistēma\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/mgmtsystem_survey.pot",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# \t* mgmtsystem_survey\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/nb.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/\"\n\"nb/)\\n\"\n\"Language: nb\\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Undersøkelser\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Styringssystem\"\n\n#, fuzzy\n#~ msgid \"Survey\"\n#~ msgstr \"Undersøkelser\"\n\n#, fuzzy\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Undersøkelser\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/nn.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Norwegian Nynorsk (https://www.transifex.com/oca/teams/23907/\"\n\"nn/)\\n\"\n\"Language: nn\\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Styringssystem\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/pt.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\\n\"\n\"Language: 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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistema de gestão\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/pt_BR.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# danimaribeiro <danimaribeiro@gmail.com>, 2015\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2013\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2020-08-12 19:00+0000\\n\"\n\"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-\"\n\"management-system-8-0/language/pt_BR/)\\n\"\n\"Language: pt_BR\\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 3.10\\n\"\n\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Pesquisas\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistema de Gestão\"\n\n#~ msgid \"Survey\"\n#~ msgstr \"Pesquisa\"\n\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Estágio da Pesquisa\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/sl.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: management-system (8.0)\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2015-08-07 14:27+0000\\n\"\n\"PO-Revision-Date: 2015-05-24 05:15+0000\\n\"\n\"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\\n\"\n\"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-management-\"\n\"system-8-0/language/sl/)\\n\"\n\"Language: sl\\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=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || \"\n\"n%100==4 ? 2 : 3);\\n\"\n\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Raziskave\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Sistem upravljanja\"\n\n#, fuzzy\n#~ msgid \"Survey\"\n#~ msgstr \"Raziskave\"\n\n#, fuzzy\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Raziskave\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/sv.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2017\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 10.0\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2017-04-21 18:16+0000\\n\"\n\"PO-Revision-Date: 2017-04-21 18:16+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\\n\"\n\"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\\n\"\n\"Language: sv\\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: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"Enkäter\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Ledningssystem\"\n\n#, fuzzy\n#~ msgid \"Survey\"\n#~ msgstr \"Enkäter\"\n\n#, fuzzy\n#~ msgid \"Survey Stage\"\n#~ msgstr \"Enkäter\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/th.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\\n\"\n\"Language: th\\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=1; plural=0;\\n\"\n\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"ระบบบริหารจัดการ\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/tr.po",
    "content": "# Translation of Odoo Server.\n# This file contains the translation of the following modules:\n# * mgmtsystem_survey\n#\n# Translators:\n# OCA Transbot <transbot@odoo-community.org>, 2016\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Odoo Server 9.0c\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2016-08-04 02:45+0000\\n\"\n\"PO-Revision-Date: 2016-08-04 02:45+0000\\n\"\n\"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\\n\"\n\"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\\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\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n\n#~ msgid \"Management System\"\n#~ msgstr \"Yönetim Sistemi\"\n"
  },
  {
    "path": "mgmtsystem_survey/i18n/vi.po",
    "content": "# Vietnamese translation for openerp-mgmtsystem\n# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014\n# This file is distributed under the same license as the openerp-mgmtsystem package.\n# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.\n#\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: openerp-mgmtsystem\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2011-07-25 18:17+0000\\n\"\n\"PO-Revision-Date: 2014-03-05 05:48+0000\\n\"\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\n\"Language-Team: Vietnamese <vi@li.org>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\\n\"\n\"X-Generator: Launchpad (build 16985)\\n\"\n\n#. module: mgmtsystem_survey\n#: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form\n#: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey\nmsgid \"Surveys\"\nmsgstr \"\"\n"
  },
  {
    "path": "mgmtsystem_survey/pyproject.toml",
    "content": "[build-system]\nrequires = [\"whool\"]\nbuild-backend = \"whool.buildapi\"\n"
  },
  {
    "path": "mgmtsystem_survey/readme/CONFIGURE.md",
    "content": "To configure this module, you need to:\n\n1.  Go to Management System \\> Configuration \\> Surveys\n2.  Click on Create to create your customer satisfaction survey\n3.  Add pages and questions\n"
  },
  {
    "path": "mgmtsystem_survey/readme/CONTRIBUTORS.md",
    "content": "- Maxime Chambreuil \\<<maxime.chambreuil@savoirfairelinux.com>\\>\n- Daniel Reis \\<<dgreis@sapo.pt>\\>\n- Loïc Lacroix \\<<loic.lacroix@savoirfairelinux.com>\\>\n- Stéphane Bidoul \\<<stephane.bidoul@acsone.eu>\\>\n- Gervais Naoussi \\<<gervaisnaoussi@gmail.com>\\>\n- Luk Vermeylen \\<<luk@allmas-it.be>\\>\n- Eugen Don \\<<eugen.don@don-systems.de>\\>\n- Jose Maria Alzaga \\<<jose.alzaga@aselcis.com>\\>\n- Julien Coux \\<<julien.coux@camptocamp.com>\\>\n- [Tecnativa](https://www.tecnativa.com):\n  - Ernesto Tejeda\n  - Pedro M. Baeza\n- [Binhex](https://binhex.cloud//com):\n  - David Luis Mora \\<<d.luis@binhex.cloud>\\>\n- Yvan Dotet \\<<yvan.dotet@logicasoft.eu>\\>\n\n- [Trobz](https://www.trobz.com):\n  - Dung Tran \\<<dungtd@trobz.com>\\>\n  - Khoi (Kien Kim) \\<<khoikk@trobz.com>\\>\n"
  },
  {
    "path": "mgmtsystem_survey/readme/CREDITS.md",
    "content": "The migration of this module from 17.0 to 18.0 was financially supported by:\n\n- Camptocamp\n"
  },
  {
    "path": "mgmtsystem_survey/readme/DESCRIPTION.md",
    "content": "This module enables you to manage your customer satisfaction surveys and\ntheir answers.\n"
  },
  {
    "path": "mgmtsystem_survey/readme/USAGE.md",
    "content": "To use this module, you need to:\n\n1.  Publish the survey on the web (using the website module) or\n2.  Print the survey and send it by email or\n3.  Call your customer and go through the list of questions over the\n    phone\n"
  },
  {
    "path": "mgmtsystem_survey/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>Management System - Survey</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=\"management-system-survey\">\n<h1 class=\"title\">Management System - Survey</h1>\n\n<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! This file is generated by oca-gen-addon-readme !!\n!! changes will be overwritten.                   !!\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n!! source digest: sha256:bc02ffebcb1a81c48d8cabb5e9024924374bc765d21bd935c5ca211cf23babf8\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/management-system/tree/18.0/mgmtsystem_survey\"><img alt=\"OCA/management-system\" src=\"https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github\" /></a> <a class=\"reference external image-reference\" href=\"https://translation.odoo-community.org/projects/management-system-18-0/management-system-18-0-mgmtsystem_survey\"><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/management-system&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 enables you to manage your customer satisfaction surveys and\ntheir answers.</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=\"#configuration\" id=\"toc-entry-1\">Configuration</a></li>\n<li><a class=\"reference internal\" href=\"#usage\" id=\"toc-entry-2\">Usage</a></li>\n<li><a class=\"reference internal\" href=\"#bug-tracker\" id=\"toc-entry-3\">Bug Tracker</a></li>\n<li><a class=\"reference internal\" href=\"#credits\" id=\"toc-entry-4\">Credits</a><ul>\n<li><a class=\"reference internal\" href=\"#authors\" id=\"toc-entry-5\">Authors</a></li>\n<li><a class=\"reference internal\" href=\"#contributors\" id=\"toc-entry-6\">Contributors</a></li>\n<li><a class=\"reference internal\" href=\"#other-credits\" id=\"toc-entry-7\">Other credits</a></li>\n<li><a class=\"reference internal\" href=\"#maintainers\" id=\"toc-entry-8\">Maintainers</a></li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"configuration\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-1\">Configuration</a></h1>\n<p>To configure this module, you need to:</p>\n<ol class=\"arabic simple\">\n<li>Go to Management System &gt; Configuration &gt; Surveys</li>\n<li>Click on Create to create your customer satisfaction survey</li>\n<li>Add pages and questions</li>\n</ol>\n</div>\n<div class=\"section\" id=\"usage\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-2\">Usage</a></h1>\n<p>To use this module, you need to:</p>\n<ol class=\"arabic simple\">\n<li>Publish the survey on the web (using the website module) or</li>\n<li>Print the survey and send it by email or</li>\n<li>Call your customer and go through the list of questions over the\nphone</li>\n</ol>\n</div>\n<div class=\"section\" id=\"bug-tracker\">\n<h1><a class=\"toc-backref\" href=\"#toc-entry-3\">Bug Tracker</a></h1>\n<p>Bugs are tracked on <a class=\"reference external\" href=\"https://github.com/OCA/management-system/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/management-system/issues/new?body=module:%20mgmtsystem_survey%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-4\">Credits</a></h1>\n<div class=\"section\" id=\"authors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-5\">Authors</a></h2>\n<ul class=\"simple\">\n<li>Savoir-faire Linux</li>\n</ul>\n</div>\n<div class=\"section\" id=\"contributors\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-6\">Contributors</a></h2>\n<ul class=\"simple\">\n<li>Maxime Chambreuil &lt;<a class=\"reference external\" href=\"mailto:maxime.chambreuil&#64;savoirfairelinux.com\">maxime.chambreuil&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Daniel Reis &lt;<a class=\"reference external\" href=\"mailto:dgreis&#64;sapo.pt\">dgreis&#64;sapo.pt</a>&gt;</li>\n<li>Loïc Lacroix &lt;<a class=\"reference external\" href=\"mailto:loic.lacroix&#64;savoirfairelinux.com\">loic.lacroix&#64;savoirfairelinux.com</a>&gt;</li>\n<li>Stéphane Bidoul &lt;<a class=\"reference external\" href=\"mailto:stephane.bidoul&#64;acsone.eu\">stephane.bidoul&#64;acsone.eu</a>&gt;</li>\n<li>Gervais Naoussi &lt;<a class=\"reference external\" href=\"mailto:gervaisnaoussi&#64;gmail.com\">gervaisnaoussi&#64;gmail.com</a>&gt;</li>\n<li>Luk Vermeylen &lt;<a class=\"reference external\" href=\"mailto:luk&#64;allmas-it.be\">luk&#64;allmas-it.be</a>&gt;</li>\n<li>Eugen Don &lt;<a class=\"reference external\" href=\"mailto:eugen.don&#64;don-systems.de\">eugen.don&#64;don-systems.de</a>&gt;</li>\n<li>Jose Maria Alzaga &lt;<a class=\"reference external\" href=\"mailto:jose.alzaga&#64;aselcis.com\">jose.alzaga&#64;aselcis.com</a>&gt;</li>\n<li>Julien Coux &lt;<a class=\"reference external\" href=\"mailto:julien.coux&#64;camptocamp.com\">julien.coux&#64;camptocamp.com</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.tecnativa.com\">Tecnativa</a>:<ul>\n<li>Ernesto Tejeda</li>\n<li>Pedro M. Baeza</li>\n</ul>\n</li>\n<li><a class=\"reference external\" href=\"https://binhex.cloud//com\">Binhex</a>:<ul>\n<li>David Luis Mora &lt;<a class=\"reference external\" href=\"mailto:d.luis&#64;binhex.cloud\">d.luis&#64;binhex.cloud</a>&gt;</li>\n</ul>\n</li>\n<li>Yvan Dotet &lt;<a class=\"reference external\" href=\"mailto:yvan.dotet&#64;logicasoft.eu\">yvan.dotet&#64;logicasoft.eu</a>&gt;</li>\n<li><a class=\"reference external\" href=\"https://www.trobz.com\">Trobz</a>:<ul>\n<li>Dung Tran &lt;<a class=\"reference external\" href=\"mailto:dungtd&#64;trobz.com\">dungtd&#64;trobz.com</a>&gt;</li>\n<li>Khoi (Kien Kim) &lt;<a class=\"reference external\" href=\"mailto:khoikk&#64;trobz.com\">khoikk&#64;trobz.com</a>&gt;</li>\n</ul>\n</li>\n</ul>\n</div>\n<div class=\"section\" id=\"other-credits\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-7\">Other credits</a></h2>\n<p>The migration of this module from 17.0 to 18.0 was financially supported\nby:</p>\n<ul class=\"simple\">\n<li>Camptocamp</li>\n</ul>\n</div>\n<div class=\"section\" id=\"maintainers\">\n<h2><a class=\"toc-backref\" href=\"#toc-entry-8\">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/max3903\"><img alt=\"max3903\" src=\"https://github.com/max3903.png?size=40px\" /></a></p>\n<p>This module is part of the <a class=\"reference external\" href=\"https://github.com/OCA/management-system/tree/18.0/mgmtsystem_survey\">OCA/management-system</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": "mgmtsystem_survey/views/survey_survey.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<odoo>\n    <!-- window actions and menus -->\n    <record id=\"action_survey_form\" model=\"ir.actions.act_window\">\n        <field name=\"name\">Surveys</field>\n        <field name=\"res_model\">survey.survey</field>\n        <field name=\"view_mode\">list,form</field>\n    </record>\n    <menuitem\n        id=\"menu_open_survey\"\n        action=\"action_survey_form\"\n        parent=\"mgmtsystem.menu_mgmtsystem_configuration\"\n        sequence=\"50\"\n        groups=\"mgmtsystem.group_mgmtsystem_manager\"\n    />\n</odoo>\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": "setup/_metapackage/pyproject.toml",
    "content": "[project]\nname = \"odoo-addons-oca-management-system\"\nversion = \"18.0.20251027.0\"\ndependencies = [\n    \"odoo-addon-document_page_environment_manual==18.0.*\",\n    \"odoo-addon-document_page_environmental_aspect==18.0.*\",\n    \"odoo-addon-document_page_health_safety_manual==18.0.*\",\n    \"odoo-addon-document_page_procedure==18.0.*\",\n    \"odoo-addon-document_page_quality_manual==18.0.*\",\n    \"odoo-addon-document_page_work_instruction==18.0.*\",\n    \"odoo-addon-mgmtsystem==18.0.*\",\n    \"odoo-addon-mgmtsystem_action==18.0.*\",\n    \"odoo-addon-mgmtsystem_action_efficacy==18.0.*\",\n    \"odoo-addon-mgmtsystem_action_template==18.0.*\",\n    \"odoo-addon-mgmtsystem_audit==18.0.*\",\n    \"odoo-addon-mgmtsystem_claim==18.0.*\",\n    \"odoo-addon-mgmtsystem_hazard==18.0.*\",\n    \"odoo-addon-mgmtsystem_hazard_risk==18.0.*\",\n    \"odoo-addon-mgmtsystem_info_security_manual==18.0.*\",\n    \"odoo-addon-mgmtsystem_manual==18.0.*\",\n    \"odoo-addon-mgmtsystem_nonconformity==18.0.*\",\n    \"odoo-addon-mgmtsystem_nonconformity_hazard==18.0.*\",\n    \"odoo-addon-mgmtsystem_nonconformity_hr==18.0.*\",\n    \"odoo-addon-mgmtsystem_nonconformity_maintenance_equipment==18.0.*\",\n    \"odoo-addon-mgmtsystem_nonconformity_mrp==18.0.*\",\n    \"odoo-addon-mgmtsystem_nonconformity_product==18.0.*\",\n    \"odoo-addon-mgmtsystem_nonconformity_repair==18.0.*\",\n    \"odoo-addon-mgmtsystem_nonconformity_type==18.0.*\",\n    \"odoo-addon-mgmtsystem_objective==18.0.*\",\n    \"odoo-addon-mgmtsystem_partner==18.0.*\",\n    \"odoo-addon-mgmtsystem_quality==18.0.*\",\n    \"odoo-addon-mgmtsystem_review==18.0.*\",\n    \"odoo-addon-mgmtsystem_review_objective==18.0.*\",\n    \"odoo-addon-mgmtsystem_review_survey==18.0.*\",\n    \"odoo-addon-mgmtsystem_survey==18.0.*\",\n]\nclassifiers=[\n    \"Programming Language :: Python\",\n    \"Framework :: Odoo\",\n    \"Framework :: Odoo :: 18.0\",\n]\n"
  }
]